diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-05-29 14:10:07 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-05-29 14:10:07 -0500 |
commit | d861ffc9ad5118f251fa669028bf774d98b0b451 (patch) | |
tree | 897ccf1e07447b24557915bcf643f3266988fb1c /docs/source/pluginwriter | |
parent | d28c5066e8bc67c9f96db3acc4d982bd94f330d2 (diff) | |
download | mediagoblin-d861ffc9ad5118f251fa669028bf774d98b0b451.tar.lz mediagoblin-d861ffc9ad5118f251fa669028bf774d98b0b451.tar.xz mediagoblin-d861ffc9ad5118f251fa669028bf774d98b0b451.zip |
Link to the plugin api stuff and the database plugin sections from the quickstart.
This commit sponsored by Nathan Stephenson. Thank you!
Diffstat (limited to 'docs/source/pluginwriter')
-rw-r--r-- | docs/source/pluginwriter/api.rst | 1 | ||||
-rw-r--r-- | docs/source/pluginwriter/database.rst | 9 | ||||
-rw-r--r-- | docs/source/pluginwriter/quickstart.rst | 6 |
3 files changed, 11 insertions, 5 deletions
diff --git a/docs/source/pluginwriter/api.rst b/docs/source/pluginwriter/api.rst index 44411965..dc6bcc98 100644 --- a/docs/source/pluginwriter/api.rst +++ b/docs/source/pluginwriter/api.rst @@ -11,6 +11,7 @@ Dedication along with this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>. +.. _plugin-api-chapter: ========== Plugin API diff --git a/docs/source/pluginwriter/database.rst b/docs/source/pluginwriter/database.rst index 58edf3a0..603a19eb 100644 --- a/docs/source/pluginwriter/database.rst +++ b/docs/source/pluginwriter/database.rst @@ -12,9 +12,12 @@ <http://creativecommons.org/publicdomain/zero/1.0/>. -======== -Database -======== +.. _plugin-database-chapter: + + +=========================== +Database models for plugins +=========================== Accessing Existing Data diff --git a/docs/source/pluginwriter/quickstart.rst b/docs/source/pluginwriter/quickstart.rst index b5a63f79..6d45ea36 100644 --- a/docs/source/pluginwriter/quickstart.rst +++ b/docs/source/pluginwriter/quickstart.rst @@ -178,8 +178,10 @@ That's it for the quick start! Where to go from here ===================== -See the documentation on the plugin API for code samples and other -things you can use when building your plugin. +See the documentation on the :ref:`plugin-api-chapter` for code +samples and other things you can use when building your plugin. If +your plugin needs its own database models, see +:ref:`plugin-database-chapter`. See `Hitchhiker's Guide to Packaging <http://guide.python-distribute.org/>`_ for more information on |