mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2025-04-21 12:31:19 +02:00
Compare commits
No commits in common. "d5fa852369852aac0e77f1658b2b9f21619cefba" and "338b918d57435e3565239563100c9570f209bf2d" have entirely different histories.
d5fa852369
...
338b918d57
12
.github/workflows/docs.yml
vendored
12
.github/workflows/docs.yml
vendored
@ -11,17 +11,15 @@ jobs:
|
|||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@v4.1.1
|
uses: actions/checkout@v4.1.1
|
||||||
- name: Requirements
|
- name: Requirements
|
||||||
# Allow sphinx-rtd-theme to choose the versions of sphinx & docutils
|
|
||||||
run: |
|
run: |
|
||||||
pip3 install -r requirements.txt
|
sudo apt-get install doxygen
|
||||||
- name: Build docs
|
- name: Build docs
|
||||||
run: |
|
run: |
|
||||||
make html
|
cd docs
|
||||||
echo 'dcc-ex.com' > docs/_build/html/CNAME
|
# touch _build/html/.nojekyll
|
||||||
touch docs/_build/html/.nojekyll
|
doxygen DoxyfileEXRAIL
|
||||||
- name: Deploy
|
- name: Deploy
|
||||||
if: github.ref == 'refs/heads/sphinx'
|
uses: JamesIves/github-pages-deploy-action@ba1486788b0490a235422264426c45848eac35c6
|
||||||
uses: JamesIves/github-pages-deploy-action@ba1486788b0490a235422264426c45848eac35c6 # v4.4.1
|
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
branch: gh-pages # The branch the action should deploy to.
|
branch: gh-pages # The branch the action should deploy to.
|
||||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -16,5 +16,3 @@ compile_commands.json
|
|||||||
newcode.txt.old
|
newcode.txt.old
|
||||||
UserAddin.txt
|
UserAddin.txt
|
||||||
_build
|
_build
|
||||||
venv
|
|
||||||
.DS_Store
|
|
||||||
|
@ -26,6 +26,19 @@
|
|||||||
|
|
||||||
// Doxygen comments in this file are intended for the EXRAIL end user.
|
// Doxygen comments in this file are intended for the EXRAIL end user.
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file EXRAIL2MacroReset.h
|
||||||
|
* @mainpage EXRAIL Language Reference
|
||||||
|
*
|
||||||
|
* @section introduction Introduction
|
||||||
|
* EXRAIL - Extended Railroad Automation Instruction Language
|
||||||
|
*
|
||||||
|
* This page is a reference to all EXRAIL commands available with EX-CommandStation.
|
||||||
|
*
|
||||||
|
* - @ref ACTIVATE
|
||||||
|
* - @ref ACTIVATEL
|
||||||
|
*/
|
||||||
|
|
||||||
// Undefine all RMFT macros
|
// Undefine all RMFT macros
|
||||||
#undef ACTIVATE
|
#undef ACTIVATE
|
||||||
#undef ACTIVATEL
|
#undef ACTIVATEL
|
||||||
|
@ -42,7 +42,7 @@ DOXYFILE_ENCODING = UTF-8
|
|||||||
# title of most generated pages and in a few other places.
|
# title of most generated pages and in a few other places.
|
||||||
# The default value is: My Project.
|
# The default value is: My Project.
|
||||||
|
|
||||||
PROJECT_NAME = "EXRAIL Language"
|
PROJECT_NAME = "EX-CommandStation EXRAIL Documentation"
|
||||||
|
|
||||||
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
|
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
|
||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
@ -1273,7 +1273,7 @@ IGNORE_PREFIX =
|
|||||||
# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output
|
# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output
|
||||||
# The default value is: YES.
|
# The default value is: YES.
|
||||||
|
|
||||||
GENERATE_HTML = NO
|
GENERATE_HTML = YES
|
||||||
|
|
||||||
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
|
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
|
||||||
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
|
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
|
||||||
@ -2203,7 +2203,7 @@ MAN_LINKS = NO
|
|||||||
# captures the structure of the code including all documentation.
|
# captures the structure of the code including all documentation.
|
||||||
# The default value is: NO.
|
# The default value is: NO.
|
||||||
|
|
||||||
GENERATE_XML = YES
|
GENERATE_XML = NO
|
||||||
|
|
||||||
# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a
|
# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a
|
||||||
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
|
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
# Minimal makefile for Sphinx documentation
|
|
||||||
#
|
|
||||||
|
|
||||||
# You can set these variables from the command line, and also
|
|
||||||
# from the environment for the first two.
|
|
||||||
SPHINXOPTS ?=
|
|
||||||
SPHINXBUILD ?= sphinx-build
|
|
||||||
SOURCEDIR = .
|
|
||||||
BUILDDIR = _build
|
|
||||||
|
|
||||||
# Put it first so that "make" without argument is like "make help".
|
|
||||||
help:
|
|
||||||
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
|
||||||
|
|
||||||
.PHONY: help Makefile
|
|
||||||
|
|
||||||
# Catch-all target: route all unknown targets to Sphinx using the new
|
|
||||||
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
|
|
||||||
%: Makefile
|
|
||||||
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
|
884
docs/_static/css/dccex_theme.css
vendored
884
docs/_static/css/dccex_theme.css
vendored
@ -1,884 +0,0 @@
|
|||||||
@import url(https://fonts.googleapis.com/css?family=Audiowide);
|
|
||||||
@import url(https://fonts.googleapis.com/css?family=Roboto);
|
|
||||||
|
|
||||||
h1, .h1 {
|
|
||||||
font-family: Audiowide,Helvetica,Arial,sans-serif !important;
|
|
||||||
font-weight: 500 !important;
|
|
||||||
color: #00353d !important;
|
|
||||||
/* font-size: 200% !important; */
|
|
||||||
font-size: 180% !important;
|
|
||||||
text-shadow: 1px 1px #ffffff78;
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] h1, .h1 {
|
|
||||||
color: #ffffff !important;
|
|
||||||
text-shadow: 1px 1px #00353d;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2, .h2 {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
color: #00353d !important;
|
|
||||||
/* font-size: 190% !important; */
|
|
||||||
font-size: 160% !important;
|
|
||||||
text-shadow: 1px 1px #ffffff78;
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] h2, .h2 {
|
|
||||||
color: #ffffff !important;
|
|
||||||
text-shadow: 1px 1px #00353d;
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] h2 a,
|
|
||||||
html[data-theme='dark'] h2 a:visited {
|
|
||||||
color: #00a3b9ff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
h3, .h3 {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
color: #00353d !important;
|
|
||||||
/* font-size: 160% !important; */
|
|
||||||
font-size: 140% !important;
|
|
||||||
font-style: italic !important;
|
|
||||||
text-shadow: 1px 1px #ffffff78;
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] h3, .h3 {
|
|
||||||
color: #ffffff !important;
|
|
||||||
text-shadow: 1px 1px #00353d;
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] h3 a,
|
|
||||||
html[data-theme='dark'] h3 a:visited {
|
|
||||||
color: #00a3b9ff !important;
|
|
||||||
}
|
|
||||||
h4, .h4 {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
color: #00353d !important;
|
|
||||||
/* font-size: 130% !important; */
|
|
||||||
font-size: 120% !important;
|
|
||||||
text-shadow: 1px 1px #ffffff78;
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] h4, .h4 {
|
|
||||||
color: #00a3b9ff !important;
|
|
||||||
text-shadow: 1px 1px #00353d;
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] h4 a,
|
|
||||||
html[data-theme='dark'] h4 a:visited {
|
|
||||||
color: #00a3b9ff !important;
|
|
||||||
text-shadow: 1px 1px #00353d;
|
|
||||||
}
|
|
||||||
h5, .h5 {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
color: #00a3b9ff !important;
|
|
||||||
/* font-size: 110% !important; */
|
|
||||||
font-size: 100% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
h6, .h6 {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
color: #00a3b9ff !important;
|
|
||||||
font-size: 90% !important;
|
|
||||||
font-style: italic !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.clearer {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wy-nav-side {
|
|
||||||
background: #031c20 !important;
|
|
||||||
/* background: #031214 !important; */
|
|
||||||
}
|
|
||||||
|
|
||||||
.caption-text {
|
|
||||||
color: #00a3b9ff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wy-nav-top {
|
|
||||||
background:#00a3b9ff !important;
|
|
||||||
font-size: 80% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wy-nav-top a {
|
|
||||||
font-family: Audiowide,Helvetica,Arial,sans-serif !important;
|
|
||||||
font-weight: 100 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wy-nav-content {
|
|
||||||
max-width: 1024px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wy-breadcrumbs {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
font-size: 80% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wy-side-nav-search>a img.logo {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rst-content table.docutils th {
|
|
||||||
background-color: #F3F6F6;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rst-content table.docutils td {
|
|
||||||
background-color: #F3F6F6;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td {
|
|
||||||
background-color: #E0E0E0;
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] .rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td {
|
|
||||||
background-color: #ffffff08 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.caption-number {
|
|
||||||
font-size: small !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.caption-text {
|
|
||||||
font-size: small !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
table.intro-table {
|
|
||||||
max-width: 600px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.intro-table img {
|
|
||||||
width: 70%;
|
|
||||||
height: auto;
|
|
||||||
margin: 5% 15%;
|
|
||||||
}
|
|
||||||
|
|
||||||
html[data-theme='dark'] .btn-neutral {
|
|
||||||
color: #c1c1c1 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#ex-rail-command-summary .wy-table-responsive {
|
|
||||||
overflow: visible;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* product titles */
|
|
||||||
.ex-prefix {
|
|
||||||
font-weight: bold;
|
|
||||||
color: #00a3b9;
|
|
||||||
font-size: 110%;
|
|
||||||
}
|
|
||||||
.ex-suffix {
|
|
||||||
font-weight: bold;
|
|
||||||
color: #00353d;
|
|
||||||
font-size: 110%;
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] .ex-suffix {
|
|
||||||
font-weight: bold;
|
|
||||||
color: #006979;
|
|
||||||
font-size: 110%;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* main dcc-ex text only */
|
|
||||||
.dccex-prefix {
|
|
||||||
font-family: Audiowide,Helvetica,Arial,sans-serif;
|
|
||||||
font-weight: 600;
|
|
||||||
color: #00353d;
|
|
||||||
font-size: 110%;
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] .dccex-prefix {
|
|
||||||
font-family: Audiowide,Helvetica,Arial,sans-serif;
|
|
||||||
font-weight: 600;
|
|
||||||
color: #006979;
|
|
||||||
font-size: 110%;
|
|
||||||
}
|
|
||||||
.dccex-suffix {
|
|
||||||
font-family: Audiowide,Helvetica,Arial,sans-serif;
|
|
||||||
font-weight: 600;
|
|
||||||
color: #00a3b9;
|
|
||||||
font-size: 110%;
|
|
||||||
}
|
|
||||||
|
|
||||||
/***************************/
|
|
||||||
|
|
||||||
.command-table thead th {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.command-table tbody td {
|
|
||||||
white-space: normal;
|
|
||||||
margin: 10px;
|
|
||||||
padding: 8px 8px 8px 8px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.command-table tbody tr:first-child td p code {
|
|
||||||
white-space: nowrap !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.command-table tbody tr td p code {
|
|
||||||
font-size: 110% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.command-table tbody tr td p {
|
|
||||||
font-size: 90% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.command-table tbody tr td ol li p {
|
|
||||||
font-size: 90% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.command-table tbody tr td ol {
|
|
||||||
margin-bottom: 0px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.command-table .category {
|
|
||||||
display: block;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.command-table tr:nth-child(odd) {
|
|
||||||
background-color: #f1f1f1 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.command-table tr:nth-child(even) {
|
|
||||||
background-color: #f8f8f8 !important;
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] .command-table tr:nth-child(even) {
|
|
||||||
background-color: #ffffff08 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.command-table td {
|
|
||||||
background-color: #ffffff00 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* html[data-theme='dark'] .rst-content table.docutils tr:nth-child(odd) {
|
|
||||||
background-color: #ffffff08 !important;
|
|
||||||
} */
|
|
||||||
html[data-theme='dark'] .rst-content table.docutils td, .wy-table-bordered-all td {
|
|
||||||
background-color: #fff40000 !important;
|
|
||||||
}
|
|
||||||
/* html[data-theme='dark'] .rst-content table.docutils .row-odd {
|
|
||||||
background-color: #36ff0000 !important;
|
|
||||||
} */
|
|
||||||
|
|
||||||
html[data-theme='dark'] .rst-content table.docutils th {
|
|
||||||
background-color: #36ff0000 !important;
|
|
||||||
color: white !important;
|
|
||||||
font-style: italic !important;;
|
|
||||||
font-weight: 700 !important;;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* *************************************** */
|
|
||||||
|
|
||||||
html[data-theme='dark'] .sd-card {
|
|
||||||
background-color: #0000008a;
|
|
||||||
box-shadow: 0 0.5rem 1rem rgb(32 88 91 / 25%) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* *************************************** */
|
|
||||||
|
|
||||||
.dcclink a {
|
|
||||||
background-color: #00a3b9ff;
|
|
||||||
box-shadow: 0 2px 0 #00353dff;
|
|
||||||
color: white !important;
|
|
||||||
padding: 0.5em 0.5em;
|
|
||||||
position: relative;
|
|
||||||
text-decoration: none;
|
|
||||||
text-transform: none;
|
|
||||||
border-radius: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dcclink-right a {
|
|
||||||
background-color: #00a3b9ff;
|
|
||||||
box-shadow: 0 2px 0 #00353dff;
|
|
||||||
color: white !important;
|
|
||||||
padding: 0.5em 0.5em;
|
|
||||||
position: relative;
|
|
||||||
text-decoration: none;
|
|
||||||
text-transform: none;
|
|
||||||
border-radius: 10px;
|
|
||||||
float:right;
|
|
||||||
margin: 0px 0px 0px 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dcclink a:visited {
|
|
||||||
color: whitesmoke !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dcclink a:hover {
|
|
||||||
background-color: darkslategrey;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dcclink a:active {
|
|
||||||
box-shadow: none;
|
|
||||||
top: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
html[data-theme='dark'] .rst-content .guilabel {
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hr-dashed {
|
|
||||||
margin: -10px 0px -10px 0px;
|
|
||||||
border-top: 1px dashed #d2dfe3;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hr-heavy {
|
|
||||||
margin: -10px 0px -10px 0px;
|
|
||||||
border-top: 5px solid #d2dfe3;
|
|
||||||
}
|
|
||||||
|
|
||||||
html[data-theme='dark'] .hr-dashed {
|
|
||||||
border-top: 1px dashed #114759;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* *************************************** */
|
|
||||||
|
|
||||||
a.githublink, .githublink a {
|
|
||||||
background-color: #f7b656;
|
|
||||||
box-shadow: 0 2px 0 #00353dff;
|
|
||||||
color: white;
|
|
||||||
padding: 3px 5px 3px 5px;
|
|
||||||
position: relative;
|
|
||||||
font-size: 90% !important;
|
|
||||||
text-decoration: none;
|
|
||||||
text-transform: none;
|
|
||||||
border-radius: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.githublink-right a {
|
|
||||||
background-color: #f7b656;
|
|
||||||
box-shadow: 0 2px 0 #00353dff;
|
|
||||||
color: white;
|
|
||||||
padding: 3px 5px 3px 5px;
|
|
||||||
position: relative;
|
|
||||||
font-size: 90% !important;
|
|
||||||
text-decoration: none;
|
|
||||||
text-transform: none;
|
|
||||||
border-radius: 10px;
|
|
||||||
float:right;
|
|
||||||
margin: 0px 0px 0px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.githublink a:visited {
|
|
||||||
color: whitesmoke
|
|
||||||
}
|
|
||||||
|
|
||||||
.githublink a:hover {
|
|
||||||
background-color: rgb(172, 95, 7);
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.githublink a:active {
|
|
||||||
box-shadow: none;
|
|
||||||
top: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* *************************************** */
|
|
||||||
|
|
||||||
svg {
|
|
||||||
max-width: 100%;
|
|
||||||
height: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.responsive-image {
|
|
||||||
max-width: 100%;
|
|
||||||
height: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* *************************************** */
|
|
||||||
|
|
||||||
.warning-float-right {
|
|
||||||
float: right;
|
|
||||||
width: 40%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.warning-float-right-narrow {
|
|
||||||
float: right;
|
|
||||||
width: 20%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.warning-float-right-wide {
|
|
||||||
float: right;
|
|
||||||
width: 60%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.note-float-right {
|
|
||||||
float: right;
|
|
||||||
width: 40%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.note-float-right-narrow {
|
|
||||||
float: right;
|
|
||||||
width: 20%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.code-block-float-right {
|
|
||||||
float: right;
|
|
||||||
width: 40%;
|
|
||||||
margin: 0px 0px 0px 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.note {
|
|
||||||
background: #f7fcff !important;
|
|
||||||
clear: none !important;
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] .note {
|
|
||||||
background: #ffffff24 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.note p.admonition-title {
|
|
||||||
background: #cbe1ef !important;
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] .note p.admonition-title {
|
|
||||||
background: #256a97 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tip {
|
|
||||||
background: #eef5f4 !important;
|
|
||||||
clear: none !important;
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] .tip {
|
|
||||||
background: #ffffff24 !important;
|
|
||||||
clear: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tip p.admonition-title {
|
|
||||||
background: #9cd7cb !important;
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] .tip p.admonition-title {
|
|
||||||
background: #256a97 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.admonition-todo {
|
|
||||||
background: #f9f0e0 !important;
|
|
||||||
clear: none !important;
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] .admonition-todo {
|
|
||||||
background: #ffffff24 !important;
|
|
||||||
clear: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.admonition-todo p.admonition-title {
|
|
||||||
background: #f7d1b0 !important;
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] .admonition-todo p.admonition-title {
|
|
||||||
background: #6d3403 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* *************************************** */
|
|
||||||
|
|
||||||
.menuselection {
|
|
||||||
font-style: italic;
|
|
||||||
font-weight: 700;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* *************************************** */
|
|
||||||
|
|
||||||
.wy-table-responsive {
|
|
||||||
margin-bottom: 12px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* override table width restrictions */
|
|
||||||
.table-wrap-text p, .table-grid-homepage p, .table-list-homepage p {
|
|
||||||
white-space: normal !important;
|
|
||||||
font-size: 110% !important;
|
|
||||||
line-height: 140% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-wrap-text tr:nth-child(odd), .table-grid-homepage tr:nth-child(odd), .table-list-homepage tr:nth-child(odd) {
|
|
||||||
background-color: white !important;
|
|
||||||
border-style: none !important;
|
|
||||||
border-width:0px !important;
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] tr:nth-child(odd), .table-grid-homepage tr:nth-child(odd), .table-list-homepage tr:nth-child(odd) {
|
|
||||||
background-color: #ffffff08 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-wrap-text tr:nth-child(even), .table-grid-homepage tr:nth-child(even), .table-list-homepage tr:nth-child(even) {
|
|
||||||
background-color: #ffffff00 !important;
|
|
||||||
border-style: none !important;
|
|
||||||
border-width:0px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-wrap-text td {
|
|
||||||
background-color: white !important;
|
|
||||||
border-style: none !important;
|
|
||||||
border-width:0px !important;
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] .table-wrap-text td {
|
|
||||||
background-color: ffffff08 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-grid-homepage td, .table-list-homepage td {
|
|
||||||
font-size: 80% !important;
|
|
||||||
color: #666666 !important;
|
|
||||||
vertical-align:top !important;
|
|
||||||
background-color: #ffffff00 !important;
|
|
||||||
border-style: none !important;
|
|
||||||
border-width: 0px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-wrap-text, .table-grid-homepage, .table-list-homepage {
|
|
||||||
margin-bottom: 24px;
|
|
||||||
max-width: 100% !important;
|
|
||||||
overflow: visible !important;
|
|
||||||
border-style: none !important;
|
|
||||||
border-width: 0px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: 900px) {
|
|
||||||
.table-grid-homepage {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.table-list-homepage {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media not screen and (max-width: 900px) {
|
|
||||||
.table-grid-homepage {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
.table-list-homepage {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.table-wrap-text th p, table-wrap-text-align-top th p {
|
|
||||||
margin-bottom: unset;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* *************************************** */
|
|
||||||
|
|
||||||
.image-min-width-144 {
|
|
||||||
min-width: 144px;
|
|
||||||
height: auto !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.image-min-width-72 {
|
|
||||||
min-width: 72px;
|
|
||||||
height: auto !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.image-float-right img {
|
|
||||||
float:right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.image-product-logo-float-right img {
|
|
||||||
float:right;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: 1000px) {
|
|
||||||
.image-product-logo-float-right img {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* *************************************** */
|
|
||||||
/* Google search */
|
|
||||||
|
|
||||||
.gsc-input-box {
|
|
||||||
border: 0px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gsib_a input {
|
|
||||||
padding: 5px !important;
|
|
||||||
background-color: #141414 !important;
|
|
||||||
color:white !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gsc-search-button .gsc-search-button-v2 {
|
|
||||||
width: 40px !important;
|
|
||||||
height: 21px !important;
|
|
||||||
padding: 4px 4px !important;
|
|
||||||
background-color: #00a3b9ff !important;
|
|
||||||
border-color: #00a3b9ff !important;
|
|
||||||
border-radius: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* .gsc-search-button .gsc-search-button-v2 {
|
|
||||||
width: 0px !important;
|
|
||||||
padding: 7px 7px !important;
|
|
||||||
border-color: #009300 !important;
|
|
||||||
background-color: #009300 !important;
|
|
||||||
} */
|
|
||||||
|
|
||||||
/* *************************************** */
|
|
||||||
|
|
||||||
/* sidebar level 3 bullet points */
|
|
||||||
nav#on-this-page ul.simple li ul li p {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
font-size: 80% !important;
|
|
||||||
line-height: 120% !important;
|
|
||||||
margin-bottom: 0px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* sidebar level 3 bullet points */
|
|
||||||
nav#on-this-page ul.simple li ul li {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
line-height: 120% !important;
|
|
||||||
margin-bottom: 0px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* sidebar level 2 bullet points */
|
|
||||||
nav#on-this-page ul.simple li p {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
font-size: 80% !important;
|
|
||||||
line-height: 120% !important;
|
|
||||||
margin-bottom: 0px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* sidebar level 2 bullet points */
|
|
||||||
nav#on-this-page ul.simple li {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
line-height: 120% !important;
|
|
||||||
margin-bottom: 0px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav#on-this-page ul.simple {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
margin-bottom: 0px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav#on-this-page p {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
margin-top: 0px !important;
|
|
||||||
margin-bottom: 6px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav#on-this-page {
|
|
||||||
margin-bottom: 10px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* in-this-section level 3 bullet points */
|
|
||||||
nav.in-this-section ul.simple li ul li p {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
font-size: 80% !important;
|
|
||||||
line-height: 120% !important;
|
|
||||||
margin-bottom: 0px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* in-this-section level 3 bullet points */
|
|
||||||
nav.in-this-section ul.simple li ul li {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
line-height: 120% !important;
|
|
||||||
margin-bottom: 0px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* in-this-section level 2 bullet points */
|
|
||||||
nav.in-this-section ul.simple li p {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
font-size: 80% !important;
|
|
||||||
line-height: 120% !important;
|
|
||||||
margin-bottom: 0px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* in-this-section level 2 bullet points */
|
|
||||||
nav.in-this-section ul.simple li {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
line-height: 120% !important;
|
|
||||||
margin-bottom: 0px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav.in-this-section ul.simple {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
margin-bottom: 0px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav.in-this-section p {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
font-style: italic;
|
|
||||||
font-size: 90%;
|
|
||||||
margin-top: 0px !important;
|
|
||||||
margin-bottom: 6px !important;
|
|
||||||
margin-left: -30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav.in-this-section {
|
|
||||||
margin-bottom: 20px !important;
|
|
||||||
margin-left: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* sidebars */
|
|
||||||
.rst-content .sidebar {
|
|
||||||
padding: 12px 24px 12px 24px !important;
|
|
||||||
border-radius: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
html[data-theme='dark'] .rst-content .sidebar {
|
|
||||||
background: #000000ff !important;
|
|
||||||
border:#000000ff !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar-title {
|
|
||||||
border-radius: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
html[data-theme='dark'] .sidebar-title {
|
|
||||||
background: #002735 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* news */
|
|
||||||
section#dcc-ex-model-railroading aside p.sidebar-title {
|
|
||||||
font-size: 110% !important;
|
|
||||||
font-family: Audiowide,Helvetica,Arial,sans-serif !important;
|
|
||||||
font-weight: 500 !important;
|
|
||||||
color: #00a3b9ff;
|
|
||||||
text-shadow: 1px 1px 0 #00353dff;
|
|
||||||
margin: -24px -24px 12px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* news */
|
|
||||||
p.ablog-post-title {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
font-size: 90% !important;
|
|
||||||
line-height: 130% !important;
|
|
||||||
margin-bottom: 0px !important;
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
p.ablog-post-excerpt {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
font-size: 90% !important;
|
|
||||||
line-height: 130% !important;
|
|
||||||
margin-bottom: 0px !important;
|
|
||||||
margin-top: 6px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
p.ablog-post-expand {
|
|
||||||
font-family: Roboto,Helvetica,Arial,sans-serif !important;
|
|
||||||
font-size: 80% !important;
|
|
||||||
line-height: 130% !important;
|
|
||||||
margin-bottom: 10px !important;
|
|
||||||
margin-top: 0px !important;
|
|
||||||
margin-left: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
li.ablog-post {
|
|
||||||
list-style-type: none !important;
|
|
||||||
margin: 0px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
img.sd-card-img-top {
|
|
||||||
max-width: 30% !important;
|
|
||||||
display: block !important;
|
|
||||||
margin-left: auto !important;
|
|
||||||
margin-right: auto !important;
|
|
||||||
margin-top: 10px;
|
|
||||||
margin-bottom: -5px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sd-card-header {
|
|
||||||
margin-bottom: -10px !important;
|
|
||||||
margin-top: 10px !important;
|
|
||||||
padding-top: 0px !important;
|
|
||||||
padding-bottom: 0px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sd-card-header p {
|
|
||||||
line-height: 18px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
html[data-theme='dark'] .sd-card-header {
|
|
||||||
border-bottom: 1px solid rgb(255 253 253 / 13%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.sd-card-body ul li p {
|
|
||||||
margin-bottom: 5px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sd-card-text {
|
|
||||||
margin: 0 0 12px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* code */
|
|
||||||
.rst-content code {
|
|
||||||
font-size: 100% !important;
|
|
||||||
}
|
|
||||||
.rst-content code.literal, .rst-content tt.literal {
|
|
||||||
color: #ba2121 !important;
|
|
||||||
font-size: 100% important;
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] .rst-content code.literal, .rst-content tt.literal {
|
|
||||||
color: #ff6000 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* general purpose */
|
|
||||||
|
|
||||||
.dcc-ex-red {
|
|
||||||
color:red;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dcc-ex-red-bold {
|
|
||||||
color:red;
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dcc-ex-red-bold-italic {
|
|
||||||
color:red;
|
|
||||||
font-weight: bold !important;
|
|
||||||
font-style: italic !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dcc-ex-code {
|
|
||||||
color:#ba2121;
|
|
||||||
font-weight: bold !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dcc-ex-text-size-200pct {
|
|
||||||
font-size: 200% !important;
|
|
||||||
line-height: 110% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dcc-ex-text-size-80pct {
|
|
||||||
font-size: 80% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dcc-ex-text-size-60pct {
|
|
||||||
font-size: 80% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.new-in-v5 {
|
|
||||||
font-family: Audiowide,Helvetica,Arial,sans-serif;
|
|
||||||
font-weight: bold;
|
|
||||||
font-style: italic;
|
|
||||||
color: #00a3b9;
|
|
||||||
font-size: 110%;
|
|
||||||
}
|
|
||||||
|
|
||||||
html[data-theme='dark'] .new-in-v5 {
|
|
||||||
font-weight: normal;
|
|
||||||
color: #ffffff;
|
|
||||||
text-shadow: 0px 0px 10px #00a3b9;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* *************************************** */
|
|
||||||
|
|
||||||
@media not screen and (max-width: 900px) {
|
|
||||||
div.rst-footer-buttons {
|
|
||||||
position: fixed;
|
|
||||||
bottom:5px;
|
|
||||||
width:350px;
|
|
||||||
background: #c9c9c999;
|
|
||||||
padding: 10px;
|
|
||||||
border-radius: 10px;
|
|
||||||
border-color: white !important;
|
|
||||||
border: 4px solid;
|
|
||||||
transform: translateX(50%);
|
|
||||||
}
|
|
||||||
html[data-theme='dark'] div.rst-footer-buttons {
|
|
||||||
border-color: #141414 !important;
|
|
||||||
background: #c9c9c92e;
|
|
||||||
}
|
|
||||||
footer {
|
|
||||||
padding-bottom: 40px;
|
|
||||||
font-size: 80% !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: 900px) {
|
|
||||||
div.rst-footer-buttons {
|
|
||||||
display:block;
|
|
||||||
font-size: 80% !important;
|
|
||||||
}
|
|
||||||
}
|
|
9
docs/_static/css/sphinx_design_overrides.css
vendored
9
docs/_static/css/sphinx_design_overrides.css
vendored
@ -1,9 +0,0 @@
|
|||||||
/* Override for the sphinx-design extension classes */
|
|
||||||
.sd-card-header {
|
|
||||||
font-size: 110% !important;
|
|
||||||
font-family: Audiowide,Helvetica,Arial,sans-serif !important;
|
|
||||||
font-weight: 500 !important;
|
|
||||||
color: #00a3b9ff;
|
|
||||||
text-shadow: 1px 1px 0 #00353dff;
|
|
||||||
margin-bottom: .5rem !important;
|
|
||||||
}
|
|
BIN
docs/_static/images/favicon.ico
vendored
BIN
docs/_static/images/favicon.ico
vendored
Binary file not shown.
Before Width: | Height: | Size: 627 KiB |
BIN
docs/_static/images/logo.png
vendored
BIN
docs/_static/images/logo.png
vendored
Binary file not shown.
Before Width: | Height: | Size: 26 KiB |
BIN
docs/_static/images/product-logo-ex-rail.png
vendored
BIN
docs/_static/images/product-logo-ex-rail.png
vendored
Binary file not shown.
Before Width: | Height: | Size: 20 KiB |
95
docs/conf.py
95
docs/conf.py
@ -1,95 +0,0 @@
|
|||||||
# Configuration file for the Sphinx documentation builder.
|
|
||||||
#
|
|
||||||
# For the full list of built-in configuration values, see the documentation:
|
|
||||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
|
||||||
|
|
||||||
# from sphinx.builders.html import StandaloneHTMLBuilder
|
|
||||||
import subprocess
|
|
||||||
# import os
|
|
||||||
|
|
||||||
# Doxygen
|
|
||||||
subprocess.call('doxygen DoxyfileEXRAIL', shell=True)
|
|
||||||
|
|
||||||
# -- Project information -----------------------------------------------------
|
|
||||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
|
||||||
|
|
||||||
project = 'EXRAIL Language'
|
|
||||||
copyright = '2025 - Peter Cole'
|
|
||||||
author = 'Peter Cole'
|
|
||||||
|
|
||||||
# -- General configuration ---------------------------------------------------
|
|
||||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
|
||||||
|
|
||||||
extensions = [
|
|
||||||
'sphinx_sitemap',
|
|
||||||
'sphinxcontrib.spelling',
|
|
||||||
'sphinx_rtd_dark_mode',
|
|
||||||
'breathe'
|
|
||||||
]
|
|
||||||
|
|
||||||
autosectionlabel_prefix_document = True
|
|
||||||
|
|
||||||
# Don't make dark mode the user default
|
|
||||||
default_dark_mode = False
|
|
||||||
|
|
||||||
spelling_lang = 'en_UK'
|
|
||||||
tokenizer_lang = 'en_UK'
|
|
||||||
spelling_word_list_filename = ['spelling_wordlist.txt']
|
|
||||||
|
|
||||||
templates_path = ['_templates']
|
|
||||||
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
|
||||||
|
|
||||||
highlight_language = 'c++'
|
|
||||||
|
|
||||||
numfig = True
|
|
||||||
|
|
||||||
numfig_format = {'figure': 'Figure %s'}
|
|
||||||
|
|
||||||
# -- Options for HTML output -------------------------------------------------
|
|
||||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
|
||||||
|
|
||||||
html_theme = 'sphinx_rtd_theme'
|
|
||||||
html_static_path = ['_static']
|
|
||||||
|
|
||||||
html_logo = "./_static/images/product-logo-ex-rail.png"
|
|
||||||
|
|
||||||
html_favicon = "./_static/images/favicon.ico"
|
|
||||||
|
|
||||||
html_theme_options = {
|
|
||||||
'style_nav_header_background': 'white',
|
|
||||||
'logo_only': True,
|
|
||||||
# Toc options
|
|
||||||
'includehidden': True,
|
|
||||||
'titles_only': False,
|
|
||||||
# 'titles_only': True,
|
|
||||||
'collapse_navigation': False,
|
|
||||||
# 'navigation_depth': 3,
|
|
||||||
'navigation_depth': -1,
|
|
||||||
'analytics_id': 'G-L5X0KNBF0W',
|
|
||||||
}
|
|
||||||
|
|
||||||
html_context = {
|
|
||||||
'display_github': True,
|
|
||||||
'github_user': 'DCC-EX',
|
|
||||||
'github_repo': 'CommandStation-EX',
|
|
||||||
'github_version': 'sphinx/docs/',
|
|
||||||
}
|
|
||||||
|
|
||||||
html_css_files = [
|
|
||||||
'css/dccex_theme.css',
|
|
||||||
'css/sphinx_design_overrides.css',
|
|
||||||
]
|
|
||||||
|
|
||||||
# Sphinx sitemap
|
|
||||||
html_baseurl = 'https://dcc-ex.com/CommandStation-EX/'
|
|
||||||
html_extra_path = [
|
|
||||||
'robots.txt',
|
|
||||||
]
|
|
||||||
|
|
||||||
# -- Breathe configuration -------------------------------------------------
|
|
||||||
|
|
||||||
breathe_projects = {
|
|
||||||
"EXRAIL Language": "_build/xml/"
|
|
||||||
}
|
|
||||||
breathe_default_project = "EXRAIL Language"
|
|
||||||
breathe_default_members = ()
|
|
@ -1,18 +0,0 @@
|
|||||||
.. EXRAIL2MacroReset documentation master file, created by
|
|
||||||
sphinx-quickstart on DATE.
|
|
||||||
|
|
||||||
Welcome to EXRAIL2MacroReset's documentation!
|
|
||||||
===============================================
|
|
||||||
|
|
||||||
Introduction
|
|
||||||
------------
|
|
||||||
|
|
||||||
EXRAIL - Extended Railroad Automation Instruction Language
|
|
||||||
|
|
||||||
This page is a reference to all EXRAIL commands available with EX-CommandStation.
|
|
||||||
|
|
||||||
Macros
|
|
||||||
------
|
|
||||||
|
|
||||||
.. doxygenfile:: EXRAIL2MacroReset.h
|
|
||||||
:project: EXRAIL Language
|
|
@ -1,35 +0,0 @@
|
|||||||
@ECHO OFF
|
|
||||||
|
|
||||||
pushd %~dp0
|
|
||||||
|
|
||||||
REM Command file for Sphinx documentation
|
|
||||||
|
|
||||||
if "%SPHINXBUILD%" == "" (
|
|
||||||
set SPHINXBUILD=sphinx-build
|
|
||||||
)
|
|
||||||
set SOURCEDIR=.
|
|
||||||
set BUILDDIR=_build
|
|
||||||
|
|
||||||
%SPHINXBUILD% >NUL 2>NUL
|
|
||||||
if errorlevel 9009 (
|
|
||||||
echo.
|
|
||||||
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
|
|
||||||
echo.installed, then set the SPHINXBUILD environment variable to point
|
|
||||||
echo.to the full path of the 'sphinx-build' executable. Alternatively you
|
|
||||||
echo.may add the Sphinx directory to PATH.
|
|
||||||
echo.
|
|
||||||
echo.If you don't have Sphinx installed, grab it from
|
|
||||||
echo.https://www.sphinx-doc.org/
|
|
||||||
exit /b 1
|
|
||||||
)
|
|
||||||
|
|
||||||
if "%1" == "" goto help
|
|
||||||
|
|
||||||
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
|
|
||||||
goto end
|
|
||||||
|
|
||||||
:help
|
|
||||||
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
|
|
||||||
|
|
||||||
:end
|
|
||||||
popd
|
|
@ -1,3 +0,0 @@
|
|||||||
User-agent: *
|
|
||||||
|
|
||||||
Sitemap: https://dcc-ex.com/CommandStation-EX/sitemap.xml
|
|
@ -1,30 +0,0 @@
|
|||||||
alabaster==1.0.0
|
|
||||||
babel==2.17.0
|
|
||||||
breathe==4.35.0
|
|
||||||
certifi==2025.1.31
|
|
||||||
charset-normalizer==3.4.1
|
|
||||||
colorama==0.4.6
|
|
||||||
docutils==0.21.2
|
|
||||||
idna==3.10
|
|
||||||
imagesize==1.4.1
|
|
||||||
Jinja2==3.1.5
|
|
||||||
MarkupSafe==3.0.2
|
|
||||||
packaging==24.2
|
|
||||||
pyenchant==3.2.2
|
|
||||||
Pygments==2.19.1
|
|
||||||
requests==2.32.3
|
|
||||||
snowballstemmer==2.2.0
|
|
||||||
Sphinx==8.1.3
|
|
||||||
sphinx-rtd-dark-mode==1.3.0
|
|
||||||
sphinx-rtd-theme==3.0.2
|
|
||||||
sphinx-sitemap==2.6.0
|
|
||||||
sphinxcontrib-applehelp==2.0.0
|
|
||||||
sphinxcontrib-devhelp==2.0.0
|
|
||||||
sphinxcontrib-htmlhelp==2.1.0
|
|
||||||
sphinxcontrib-jquery==4.1
|
|
||||||
sphinxcontrib-jsmath==1.0.1
|
|
||||||
sphinxcontrib-qthelp==2.0.0
|
|
||||||
sphinxcontrib-serializinghtml==2.0.0
|
|
||||||
sphinxcontrib-spelling==8.0.1
|
|
||||||
tomli==2.2.1
|
|
||||||
urllib3==2.3.0
|
|
Loading…
x
Reference in New Issue
Block a user