-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Rework headers in docs etc. * fix gitignore * Changes to qftrace, xpstrace, xrdtrace Usage. * v110 of schemas * Fix typos * remove debug prints * Version update
- Loading branch information
Peter Kraus
authored
Aug 16, 2022
1 parent
52d59ab
commit 05432d7
Showing
39 changed files
with
320 additions
and
644 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,5 @@ dist/ | |
*.egg-info | ||
*.egg | ||
build/ | ||
public/ | ||
public/ | ||
docs/source/yadg*.rst |
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,9 @@ | ||
{%- if show_headings %} | ||
{{- [basename, "module"] | join(' ') | e | heading }} | ||
|
||
{% endif -%} | ||
.. automodule:: {{ qualname }} | ||
{%- for option in automodule_options %} | ||
:{{ option }}: | ||
{%- endfor %} | ||
|
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,79 @@ | ||
{%- macro automodule(modname, options) -%} | ||
.. automodule:: {{ modname }} | ||
{%- for option in options %} | ||
:{{ option }}: | ||
{%- endfor %} | ||
{%- endmacro %} | ||
|
||
{%- macro toctree(docnames) -%} | ||
.. toctree:: | ||
:maxdepth: {{ maxdepth }} | ||
{% for docname in docnames %} | ||
{{ docname }} | ||
{%- endfor %} | ||
{%- endmacro %} | ||
|
||
{%- if is_namespace %} | ||
{{- [pkgname, "namespace"] | join(" ") | e | heading }} | ||
{% elif 'yadg.parsers.basiccsv' == pkgname %} | ||
{{- "**basiccsv**: Common tabular file parser" | heading }} | ||
{% elif 'yadg.parsers.chromdata' == pkgname %} | ||
{{- "**chromdata**: Post-processed chromatography data parser" | heading }} | ||
{% elif 'yadg.parsers.chromtrace' == pkgname %} | ||
{{- "**chromtrace**: Raw chromatogram trace file parser" | heading }} | ||
{% elif 'yadg.parsers.dummy' == pkgname %} | ||
{{- "**dummy**: A dummy parser" | heading }} | ||
{% elif 'yadg.parsers.electrochem' == pkgname %} | ||
{{- "**electrochem**: Electrochemistry data parser" | heading }} | ||
{% elif 'yadg.parsers.flowdata' == pkgname %} | ||
{{- "**flowdata**: Flow data parser" | heading }} | ||
{% elif 'yadg.parsers.masstrace' == pkgname %} | ||
{{- "**masstrace**: Mass spectroscopy trace file parser" | heading }} | ||
{% elif 'yadg.parsers.meascsv' == pkgname %} | ||
{{- "**meascsv**: Legacy MCPT log file parser" | heading }} | ||
{% elif 'yadg.parsers.qftrace' == pkgname %} | ||
{{- "**qftrace**: Network analyser trace file parser" | heading }} | ||
{% elif 'yadg.parsers.xpstrace' == pkgname %} | ||
{{- "**xpstrace**: XPS trace file parser" | heading }} | ||
{% elif 'yadg.parsers.xrdtrace' == pkgname %} | ||
{{- "**xrdtrace**: X-ray diffractogram trace file parser" | heading }} | ||
{% else %} | ||
{{- [pkgname, "package"] | join(" ") | e | heading }} | ||
{% endif %} | ||
|
||
{%- if is_namespace %} | ||
.. py:module:: {{ pkgname }} | ||
{% endif %} | ||
|
||
{%- if modulefirst and not is_namespace %} | ||
{{ automodule(pkgname, automodule_options) }} | ||
{% endif %} | ||
|
||
{%- if subpackages %} | ||
Subpackages | ||
----------- | ||
|
||
{{ toctree(subpackages) }} | ||
{% endif %} | ||
|
||
{%- if submodules %} | ||
Submodules | ||
---------- | ||
{% if separatemodules %} | ||
{{ toctree(submodules) }} | ||
{% else %} | ||
{%- for submodule in submodules %} | ||
{% if show_headings %} | ||
{{- [submodule, "module"] | join(" ") | e | heading(2) }} | ||
{% endif %} | ||
{{ automodule(submodule, automodule_options) }} | ||
{% endfor %} | ||
{%- endif %} | ||
{%- endif %} | ||
|
||
{%- if not modulefirst and not is_namespace %} | ||
Module contents | ||
--------------- | ||
|
||
{{ automodule(pkgname, automodule_options) }} | ||
{% endif %} |
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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
.wy-nav-content { | ||
.wy-body-for-nav { | ||
max-width: none; | ||
} | ||
.wy-nav-content { | ||
max-width: 1280px; | ||
} |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.