Skip to content
Snippets Groups Projects
Commit 35a9dfe6 authored by Anton Joubert's avatar Anton Joubert
Browse files

SAR-79 Update paths in docs for new structure

parent 6fab6b27
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,7 @@ SKA Control Model ...@@ -9,7 +9,7 @@ SKA Control Model
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
.. automodule:: control_model .. automodule:: ska.base.control_model
:members: :members:
:undoc-members: :undoc-members:
...@@ -9,7 +9,7 @@ SKA AlarmHandler ...@@ -9,7 +9,7 @@ SKA AlarmHandler
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
.. automodule:: SKAAlarmHandler .. automodule:: ska.base.alarm_handler_device
.. autoclass:: SKAAlarmHandler .. autoclass:: ska.base.SKAAlarmHandler
:members: :members:
:undoc-members: :undoc-members:
...@@ -9,7 +9,7 @@ SKA BaseDevice ...@@ -9,7 +9,7 @@ SKA BaseDevice
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
.. automodule:: SKABaseDevice .. automodule:: ska.base.base_device
.. autoclass:: SKABaseDevice .. autoclass:: ska.base.SKABaseDevice
:members: :members:
:undoc-members: :undoc-members:
...@@ -9,7 +9,7 @@ SKA Capability ...@@ -9,7 +9,7 @@ SKA Capability
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
.. automodule:: SKACapability .. automodule:: ska.base.capability_device
.. autoclass:: SKACapability .. autoclass:: ska.base.SKACapability
:members: :members:
:undoc-members: :undoc-members:
...@@ -9,7 +9,7 @@ SKA Logger ...@@ -9,7 +9,7 @@ SKA Logger
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
.. automodule:: SKALogger .. automodule:: ska.base.logger_device
.. autoclass:: SKALogger .. autoclass:: ska.base.SKALogger
:members: :members:
:undoc-members: :undoc-members:
...@@ -9,7 +9,7 @@ SKA Master ...@@ -9,7 +9,7 @@ SKA Master
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
.. automodule:: SKAMaster .. automodule:: ska.base.master_device
.. autoclass:: SKAMaster .. autoclass:: ska.base.SKAMaster
:members: :members:
:undoc-members: :undoc-members:
...@@ -9,7 +9,7 @@ SKA ObsDevice ...@@ -9,7 +9,7 @@ SKA ObsDevice
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
.. automodule:: SKAObsDevice .. automodule:: ska.base.obs_device
.. autoclass:: SKAObsDevice .. autoclass:: ska.base.SKAObsDevice
:members: :members:
:undoc-members: :undoc-members:
...@@ -9,7 +9,7 @@ SKA Subarray ...@@ -9,7 +9,7 @@ SKA Subarray
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
.. automodule:: SKASubarray .. automodule:: ska.base.subarray_device
.. autoclass:: SKASubarray .. autoclass:: ska.base.SKASubarray
:members: :members:
:undoc-members: :undoc-members:
...@@ -9,7 +9,7 @@ SKA TelState ...@@ -9,7 +9,7 @@ SKA TelState
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
.. automodule:: SKATelState .. automodule:: ska.base.tel_state_device
.. autoclass:: SKATelState .. autoclass:: ska.base.SKATelState
:members: :members:
:undoc-members: :undoc-members:
...@@ -46,9 +46,8 @@ sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES) ...@@ -46,9 +46,8 @@ sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)
# If extensions (or modules to document with autodoc) are in another directory, # If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the # add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here. # documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.insert(0, os.path.abspath('../../')) sys.path.insert(0, os.path.abspath('../../src'))
sys.path.append(os.path.abspath('../../skabase')) from ska.base import release
from skabase import release
# -- General configuration ------------------------------------------------ # -- General configuration ------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here. # If your documentation needs a minimal Sphinx version, state it here.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment