Skip to content

Commit

Permalink
docupdate
Browse files Browse the repository at this point in the history
  • Loading branch information
ardunn committed Sep 11, 2019
1 parent 4f3dc47 commit 461dad9
Show file tree
Hide file tree
Showing 25 changed files with 271 additions and 261 deletions.
18 changes: 9 additions & 9 deletions docs/_sources/rocketsled.examples.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ rocketsled.examples.basic module
--------------------------------

.. automodule:: rocketsled.examples.basic
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:

rocketsled.examples.complex module
----------------------------------

.. automodule:: rocketsled.examples.complex
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:


Module contents
---------------

.. automodule:: rocketsled.examples
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:
34 changes: 17 additions & 17 deletions docs/_sources/rocketsled.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Subpackages

.. toctree::

rocketsled.examples
rocketsled.tests
rocketsled.examples
rocketsled.tests

Submodules
----------
Expand All @@ -16,39 +16,39 @@ rocketsled.acq module
---------------------

.. automodule:: rocketsled.acq
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:

rocketsled.control module
-------------------------

.. automodule:: rocketsled.control
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:

rocketsled.task module
----------------------

.. automodule:: rocketsled.task
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:

rocketsled.utils module
-----------------------

.. automodule:: rocketsled.utils
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:


Module contents
---------------

.. automodule:: rocketsled
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:
24 changes: 12 additions & 12 deletions docs/_sources/rocketsled.tests.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,31 @@ rocketsled.tests.deserialize\_func module
-----------------------------------------

.. automodule:: rocketsled.tests.deserialize_func
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:

rocketsled.tests.test\_task module
----------------------------------

.. automodule:: rocketsled.tests.test_task
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:

rocketsled.tests.test\_utils module
-----------------------------------

.. automodule:: rocketsled.tests.test_utils
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:


Module contents
---------------

.. automodule:: rocketsled.tests
:members:
:undoc-members:
:show-inheritance:
:members:
:undoc-members:
:show-inheritance:
15 changes: 15 additions & 0 deletions docs/_static/basic.css
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,12 @@ img.align-center, .figure.align-center, object.align-center {
margin-right: auto;
}

img.align-default, .figure.align-default {
display: block;
margin-left: auto;
margin-right: auto;
}

.align-left {
text-align: left;
}
Expand All @@ -297,6 +303,10 @@ img.align-center, .figure.align-center, object.align-center {
text-align: center;
}

.align-default {
text-align: center;
}

.align-right {
text-align: right;
}
Expand Down Expand Up @@ -368,6 +378,11 @@ table.align-center {
margin-right: auto;
}

table.align-default {
margin-left: auto;
margin-right: auto;
}

table caption span.caption-number {
font-style: italic;
}
Expand Down
2 changes: 1 addition & 1 deletion docs/_static/documentation_options.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var DOCUMENTATION_OPTIONS = {
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
VERSION: '2019.6.5',
VERSION: '2019.9.11',
LANGUAGE: 'None',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
Expand Down
7 changes: 4 additions & 3 deletions docs/_static/searchtools.js
Original file line number Diff line number Diff line change
Expand Up @@ -319,12 +319,13 @@ var Search = {
for (var prefix in objects) {
for (var name in objects[prefix]) {
var fullname = (prefix ? prefix + '.' : '') + name;
if (fullname.toLowerCase().indexOf(object) > -1) {
var fullnameLower = fullname.toLowerCase()
if (fullnameLower.indexOf(object) > -1) {
var score = 0;
var parts = fullname.split('.');
var parts = fullnameLower.split('.');
// check for different match types: exact matches of full name or
// "last name" (i.e. last dotted part)
if (fullname == object || parts[parts.length - 1] == object) {
if (fullnameLower == object || parts[parts.length - 1] == object) {
score += Scorer.objNameMatch;
// matches in last name
} else if (parts[parts.length - 1].indexOf(object) > -1) {
Expand Down
12 changes: 6 additions & 6 deletions docs/advanced.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Advanced Tutorial - 15-20 min &#8212; rocketsled 2019.6.5 documentation</title>
<title>Advanced Tutorial - 15-20 min &#8212; rocketsled 2019.9.11 documentation</title>
<link rel="stylesheet" href="_static/nature.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
Expand All @@ -27,7 +27,7 @@ <h3>Navigation</h3>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="nav-item nav-item-0"><a href="index.html">rocketsled 2019.6.5 documentation</a> &#187;</li>
<li class="nav-item nav-item-0"><a href="index.html">rocketsled 2019.9.11 documentation</a> &#187;</li>
</ul>
</div>

Expand Down Expand Up @@ -224,10 +224,10 @@ <h3>This Page</h3>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<h3 id="searchlabel">Quick search</h3>
<div class="searchformwrapper">
<form class="search" action="search.html" method="get">
<input type="text" name="q" />
<input type="text" name="q" aria-labelledby="searchlabel" />
<input type="submit" value="Go" />
</form>
</div>
Expand All @@ -246,13 +246,13 @@ <h3>Navigation</h3>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="nav-item nav-item-0"><a href="index.html">rocketsled 2019.6.5 documentation</a> &#187;</li>
<li class="nav-item nav-item-0"><a href="index.html">rocketsled 2019.9.11 documentation</a> &#187;</li>
</ul>
</div>

<div class="footer" role="contentinfo">
&#169; Copyright 2018, HackingMaterials.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 2.0.1.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 2.1.2.
</div>

</body>
Expand Down
12 changes: 6 additions & 6 deletions docs/basic.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Basic Tutorial - 5-10 min &#8212; rocketsled 2019.6.5 documentation</title>
<title>Basic Tutorial - 5-10 min &#8212; rocketsled 2019.9.11 documentation</title>
<link rel="stylesheet" href="_static/nature.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
Expand All @@ -27,7 +27,7 @@ <h3>Navigation</h3>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="nav-item nav-item-0"><a href="index.html">rocketsled 2019.6.5 documentation</a> &#187;</li>
<li class="nav-item nav-item-0"><a href="index.html">rocketsled 2019.9.11 documentation</a> &#187;</li>
</ul>
</div>

Expand Down Expand Up @@ -151,10 +151,10 @@ <h3>This Page</h3>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<h3 id="searchlabel">Quick search</h3>
<div class="searchformwrapper">
<form class="search" action="search.html" method="get">
<input type="text" name="q" />
<input type="text" name="q" aria-labelledby="searchlabel" />
<input type="submit" value="Go" />
</form>
</div>
Expand All @@ -173,13 +173,13 @@ <h3>Navigation</h3>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="nav-item nav-item-0"><a href="index.html">rocketsled 2019.6.5 documentation</a> &#187;</li>
<li class="nav-item nav-item-0"><a href="index.html">rocketsled 2019.9.11 documentation</a> &#187;</li>
</ul>
</div>

<div class="footer" role="contentinfo">
&#169; Copyright 2018, HackingMaterials.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 2.0.1.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 2.1.2.
</div>

</body>
Expand Down
14 changes: 7 additions & 7 deletions docs/genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Index &#8212; rocketsled 2019.6.5 documentation</title>
<title>Index &#8212; rocketsled 2019.9.11 documentation</title>
<link rel="stylesheet" href="_static/nature.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
Expand All @@ -28,7 +28,7 @@ <h3>Navigation</h3>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="nav-item nav-item-0"><a href="index.html">rocketsled 2019.6.5 documentation</a> &#187;</li>
<li class="nav-item nav-item-0"><a href="index.html">rocketsled 2019.9.11 documentation</a> &#187;</li>
</ul>
</div>

Expand Down Expand Up @@ -326,7 +326,7 @@ <h2 id="S">S</h2>
<h2 id="T">T</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="rocketsled.html#rocketsled.control.MissionControl.task">task (rocketsled.control.MissionControl attribute)</a>
<li><a href="rocketsled.html#rocketsled.control.MissionControl.task">task() (rocketsled.control.MissionControl property)</a>
</li>
<li><a href="rocketsled.tests.html#rocketsled.tests.test_task.TestWorkflows.tearDown">tearDown() (rocketsled.tests.test_task.TestWorkflows method)</a>
</li>
Expand Down Expand Up @@ -419,10 +419,10 @@ <h2 id="W">W</h2>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<h3 id="searchlabel">Quick search</h3>
<div class="searchformwrapper">
<form class="search" action="search.html" method="get">
<input type="text" name="q" />
<input type="text" name="q" aria-labelledby="searchlabel" />
<input type="submit" value="Go" />
</form>
</div>
Expand All @@ -441,13 +441,13 @@ <h3>Navigation</h3>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="nav-item nav-item-0"><a href="index.html">rocketsled 2019.6.5 documentation</a> &#187;</li>
<li class="nav-item nav-item-0"><a href="index.html">rocketsled 2019.9.11 documentation</a> &#187;</li>
</ul>
</div>

<div class="footer" role="contentinfo">
&#169; Copyright 2018, HackingMaterials.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 2.0.1.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 2.1.2.
</div>

</body>
Expand Down
Loading

0 comments on commit 461dad9

Please sign in to comment.