Skip to content

Commit 35c5466

Browse files
committed
Updated docs to follow our standard conf
Also added links to other labscript suite docs and standard links.
1 parent 1a7a63f commit 35c5466

File tree

10 files changed

+345
-279
lines changed

10 files changed

+345
-279
lines changed

.gitignore

Lines changed: 35 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ parts/
2020
sdist/
2121
var/
2222
wheels/
23+
pip-wheel-metadata/
24+
share/python-wheels/
2325
*.egg-info/
2426
.installed.cfg
2527
*.egg
@@ -38,12 +40,14 @@ pip-delete-this-directory.txt
3840
# Unit test / coverage reports
3941
htmlcov/
4042
.tox/
43+
.nox/
4144
.coverage
4245
.coverage.*
4346
.cache
4447
nosetests.xml
4548
coverage.xml
4649
*.cover
50+
*.py,cover
4751
.hypothesis/
4852
.pytest_cache/
4953

@@ -55,6 +59,7 @@ coverage.xml
5559
*.log
5660
local_settings.py
5761
db.sqlite3
62+
db.sqlite3-journal
5863

5964
# Flask stuff:
6065
instance/
@@ -64,19 +69,36 @@ instance/
6469
.scrapy
6570

6671
# Sphinx documentation
72+
docs/html/
6773
docs/_build/
74+
docs/source/_build/
6875

6976
# PyBuilder
7077
target/
7178

7279
# Jupyter Notebook
7380
.ipynb_checkpoints
7481

82+
# IPython
83+
profile_default/
84+
ipython_config.py
85+
7586
# pyenv
7687
.python-version
7788

78-
# celery beat schedule file
89+
# pipenv
90+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
91+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
92+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
93+
# install all needed dependencies.
94+
#Pipfile.lock
95+
96+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
97+
__pypackages__/
98+
99+
# Celery stuff
79100
celerybeat-schedule
101+
celerybeat.pid
80102

81103
# SageMath parsed files
82104
*.sage.py
@@ -102,6 +124,11 @@ venv.bak/
102124

103125
# mypy
104126
.mypy_cache/
127+
.dmypy.json
128+
dmypy.json
129+
130+
# Pyre type checker
131+
.pyre/
105132

106133
# conda build results
107134
conda_build
@@ -111,4 +138,10 @@ conda_packages
111138
*.out
112139
*.log
113140
*.aux
114-
*.toc
141+
*.toc
142+
143+
# Editors
144+
.vscode/
145+
146+
# dynamically generated docs
147+
docs/source/component_docs.rst

docs/requirements.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/source/_static/custom.css

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
/* Add space between collapsible details HTML tags */
2+
details {
3+
margin-bottom: 1em;
4+
}
5+
6+
/* Darker pygment highlighing of console input/output */
7+
.highlight .go {
8+
color: #404040;
9+
}
10+
11+
/* White captions in sidebar */
12+
.wy-nav-side p.caption {
13+
color: #f5f5f5;
14+
}
15+
16+
/* labscript blue, alpha = 83% */
17+
.wy-side-nav-search {
18+
background: #2946bbd3;
19+
}
20+
21+
.wy-nav-top {
22+
background: #2946bbd3;
23+
}
24+
25+
/* labscript green, alpha = 75% */
26+
.rst-content .note .admonition-title {
27+
background: #00804fbf;
28+
}
29+
30+
/* labscript green, alpha = 25% */
31+
.rst-content .note {
32+
background: #00804f3f;
33+
}
34+
35+
/* labscript red, alpha = 75% */
36+
.rst-content .warning .admonition-title {
37+
background: #bc294cbf
38+
}
39+
40+
/* labscript red, alpha = 25% */
41+
.rst-content .warning {
42+
background: #bc294c3b;
43+
}
44+
45+
/* Elevation
46+
*
47+
* Style box-shadows using Material Design's idea of elevation. These particular numbers are taken from here:
48+
*
49+
* https://github.com/material-components/material-components-web
50+
* https://material-components-web.appspot.com/elevation.html
51+
*/
52+
53+
.rst-content img.screenshot {
54+
border: none;
55+
/* MD Elevation 8 */
56+
box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2),
57+
0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
58+
margin-bottom: 24px;
59+
}

docs/source/api_reference/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
API Reference
3-
========
3+
=============
44

55
.. toctree::
66
:maxdepth: 2

0 commit comments

Comments
 (0)