summaryrefslogtreecommitdiff
path: root/doc/source
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2016-07-27 19:05:27 +0200
committermathieui <mathieui@mathieui.net>2016-07-27 19:05:27 +0200
commitf6960d09f0e84903954e801397209ef7eb1450ce (patch)
treead008d7c44edebd96258a1e2b1c8087070cdf165 /doc/source
parent15bef8d7521dae6d23e3fa251132395919010208 (diff)
downloadpoezio-f6960d09f0e84903954e801397209ef7eb1450ce.tar.gz
poezio-f6960d09f0e84903954e801397209ef7eb1450ce.tar.bz2
poezio-f6960d09f0e84903954e801397209ef7eb1450ce.tar.xz
poezio-f6960d09f0e84903954e801397209ef7eb1450ce.zip
Fix doc building
Broken by the namespace change
Diffstat (limited to 'doc/source')
-rw-r--r--doc/source/conf.py2
-rw-r--r--doc/source/dev/common.rst2
-rw-r--r--doc/source/dev/overview.rst2
-rw-r--r--doc/source/dev/plugin.rst2
-rw-r--r--doc/source/dev/theming.rst2
-rw-r--r--doc/source/dev/timed_events.rst2
-rw-r--r--doc/source/themes.rst2
7 files changed, 7 insertions, 7 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 61f17b38..ff3a9031 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -15,7 +15,7 @@
import sys, os, time
sys.path.insert(0, os.path.abspath('../stub'))
-sys.path.append(os.path.abspath('../../poezio/'))
+sys.path.append(os.path.abspath('../../'))
sys.path.append(os.path.abspath('../../plugins/'))
# If extensions (or modules to document with autodoc) are in another directory,
diff --git a/doc/source/dev/common.rst b/doc/source/dev/common.rst
index f9ee7c77..97a952a3 100644
--- a/doc/source/dev/common.rst
+++ b/doc/source/dev/common.rst
@@ -1,7 +1,7 @@
Common operations documentation
===============================
-.. automodule:: common
+.. automodule:: poezio.common
:members:
:undoc-members:
diff --git a/doc/source/dev/overview.rst b/doc/source/dev/overview.rst
index 3b27fe9e..fb880073 100644
--- a/doc/source/dev/overview.rst
+++ b/doc/source/dev/overview.rst
@@ -146,4 +146,4 @@ Examples:
See the source of the CommandArgParser for more information.
-.. autoclass:: decorators.CommandArgParser
+.. autoclass:: poezio.decorators.CommandArgParser
diff --git a/doc/source/dev/plugin.rst b/doc/source/dev/plugin.rst
index 323a058a..7a63ed8f 100644
--- a/doc/source/dev/plugin.rst
+++ b/doc/source/dev/plugin.rst
@@ -4,7 +4,7 @@ Plugin API documentation
BasePlugin
----------
-.. module:: plugin
+.. module:: poezio.plugin
.. autoclass:: BasePlugin
:members: init, cleanup, api, core
diff --git a/doc/source/dev/theming.rst b/doc/source/dev/theming.rst
index 6ad5105d..20d60306 100644
--- a/doc/source/dev/theming.rst
+++ b/doc/source/dev/theming.rst
@@ -1,7 +1,7 @@
Theming module
==============
-.. automodule:: theming
+.. automodule:: poezio.theming
.. autoclass:: Theme
diff --git a/doc/source/dev/timed_events.rst b/doc/source/dev/timed_events.rst
index 82f49232..6eb7335a 100644
--- a/doc/source/dev/timed_events.rst
+++ b/doc/source/dev/timed_events.rst
@@ -1,7 +1,7 @@
Timed events documentation
==========================
-.. automodule:: timed_events
+.. automodule:: poezio.timed_events
.. autoclass:: TimedEvent
diff --git a/doc/source/themes.rst b/doc/source/themes.rst
index 0c2b143f..f6da6af5 100644
--- a/doc/source/themes.rst
+++ b/doc/source/themes.rst
@@ -110,5 +110,5 @@ All available options can be found into the default theme, which is into the
**theming.py** file from the poezio’s source code.
-.. autoclass:: theming.Theme
+.. autoclass:: poezio.theming.Theme