-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from eth-cscs/deploy/reframe-2.7
Reframe 2.7 public release
- Loading branch information
Showing
202 changed files
with
25,015 additions
and
1,455 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
# Minimal makefile for Sphinx documentation | ||
# | ||
|
||
# You can set these variables from the command line. | ||
PYTHON = python | ||
SPHINXOPTS = | ||
SPHINXBUILD = -msphinx | ||
SPHINXPROJ = ReFrame | ||
SOURCEDIR = . | ||
BUILDDIR = $(VERSION) | ||
PANDOC = pandoc | ||
PANDOCOPTS = --columns 1000 | ||
RM = /bin/rm -rf | ||
|
||
ifeq ($(finstring "darwin", $(OSTYPE)), "darwin") | ||
SYMLINK_DIR=ln -sfh | ||
else | ||
# Assume a GNU/Linux system here | ||
SYMLINK_DIR=ln -sfn | ||
endif | ||
|
||
MDS = about.md \ | ||
advanced.md \ | ||
configure.md \ | ||
deferrables.md \ | ||
pipeline.md \ | ||
running.md \ | ||
started.md \ | ||
tutorial.md \ | ||
usecases.md | ||
|
||
RSTS = $(MDS:.md=.rst) | ||
|
||
TARGET_DOCS := \ | ||
help \ | ||
html \ | ||
dirhtml \ | ||
singlehtml \ | ||
pickle \ | ||
json \ | ||
htmlhelp \ | ||
qthelp \ | ||
devhelp \ | ||
epub \ | ||
latex \ | ||
latexpdf \ | ||
latexpdfja \ | ||
text \ | ||
man \ | ||
textinfo \ | ||
info \ | ||
gettext \ | ||
changes \ | ||
xml \ | ||
pseudoxml \ | ||
linkcheck \ | ||
doctest \ | ||
coverage | ||
|
||
all: $(RSTS) | ||
@make html | ||
@touch html/.nojekyll | ||
@echo 'Linking to old documentation pages' | ||
@cd html && $(SYMLINK_DIR) ../old _old && cd - > /dev/null | ||
|
||
%.rst: %.md | ||
$(PANDOC) $(PANDOCOPTS) --from=markdown --to=rst --output=$(@) $(@:.rst=.md) | ||
|
||
clean: | ||
@echo 'Removing md files' | ||
-$(RM) $(RSTS) doctrees | ||
|
||
distclean: clean | ||
@echo 'Removing directories' | ||
-$(RM) $(TARGET_DOCS) | ||
|
||
$(TARGET_DOCS): Makefile | ||
@$(PYTHON) $(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) | ||
|
||
|
||
.PHONY: clean Makefile |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<div role="navigation" aria-label="breadcrumbs navigation"> | ||
<div style="text-align: center; margin-bottom: -1.5em; display: block">ReFrame {{ version }}</div> | ||
<ul class="wy-breadcrumbs"> | ||
<li><a href="{{ pathto(master_doc) }}">Docs</a> »</li> | ||
{% for doc in parents %} | ||
<li><a href="{{ doc.link|e }}">{{ doc.title }}</a> »</li> | ||
{% endfor %} | ||
<li>{{ title }}</li> | ||
<li class="wy-breadcrumbs-aside"> | ||
{% if pagename != "search" %} | ||
{% if display_github %} | ||
<a href="https://{{ github_host|default("github.com") }}/{{ github_user }}/{{ github_repo }}" class="fa fa-github"> View on GitHub</a> | ||
{% endif %} | ||
<!-- <a href="https://eth-cscs.github.io/reframe">ReFrame</a> --> | ||
<!-- <a href="Section_commands.html#comm">Commands</a> --> | ||
{% endif %} | ||
</li> | ||
</ul> | ||
<hr/> | ||
{% if next or prev %} | ||
<div class="rst-footer-buttons" style="margin-bottom: 1em" role="navigation" aria-label="footer navigation"> | ||
{% if next %} | ||
<a href="{{ next.link|e }}" class="btn btn-neutral float-right" title="{{ next.title|striptags|e }}" accesskey="n">Next <span class="fa fa-arrow-circle-right"></span></a> | ||
{% endif %} | ||
{% if prev %} | ||
<a href="{{ prev.link|e }}" class="btn btn-neutral" title="{{ prev.title|striptags|e }}" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous</a> | ||
{% endif %} | ||
</div> | ||
{% endif %} | ||
</div> |
Oops, something went wrong.