This commit is contained in:
John Cegalis 2012-06-15 15:23:54 -04:00
commit 08481534e3
6 changed files with 23 additions and 16 deletions

View File

@ -17,7 +17,9 @@ import sys
# 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(os.path.join('..', '..', '..'))) path_to_code = os.path.abspath(os.path.join(os.path.split(__file__)[0],
'..', '..', '..', '..', 'OpenLP', 'trunk'))
sys.path.insert(0, path_to_code)
# -- General configuration ----------------------------------------------------- # -- General configuration -----------------------------------------------------
@ -39,7 +41,7 @@ master_doc = 'index'
# General information about the project. # General information about the project.
project = u'OpenLP' project = u'OpenLP'
copyright = u'2004-2011, Raoul Snyman' copyright = u'2004-2012, Raoul Snyman'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the

View File

@ -1,10 +1,10 @@
.. _core-index: .. _core-index:
:mod:`core` Module Core Application
================== ================
.. automodule:: openlp.core This is the core of the OpenLP application. Anything that is not a plugin is
:members: stored in the :mod:`~openlp.core` module.
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
@ -12,4 +12,7 @@
lib lib
theme theme
ui ui
utils utils
.. automodule:: openlp.core
:members:

View File

@ -6,17 +6,17 @@ Media Plugin
.. automodule:: openlp.plugins.media .. automodule:: openlp.plugins.media
:members: :members:
Plugin Class Plugin Class
------------ ------------
.. autoclass:: openlp.plugins.media.mediaplugin.MediaPlugin .. autoclass:: openlp.plugins.media.mediaplugin.MediaPlugin
:members: :members:
Helper Classes & Functions Helper Classes & Functions
-------------------------- --------------------------
.. automodule:: openlp.plugins.media.lib .. automodule:: openlp.plugins.media.lib
:members: :members:
.. automodule:: openlp.plugins.media.lib.mediaitem .. automodule:: openlp.plugins.media.lib.mediaitem
:members: :members:

View File

@ -48,9 +48,6 @@ Helper Classes & Functions
.. automodule:: openlp.plugins.songs.lib.db .. automodule:: openlp.plugins.songs.lib.db
:members: :members:
.. automodule:: openlp.plugins.songs.lib.importer
:members:
.. automodule:: openlp.plugins.songs.lib.mediaitem .. automodule:: openlp.plugins.songs.lib.mediaitem
:members: :members:
@ -63,6 +60,9 @@ Helper Classes & Functions
.. automodule:: openlp.plugins.songs.lib.xml .. automodule:: openlp.plugins.songs.lib.xml
:members: :members:
.. automodule:: openlp.plugins.songs.lib.upgrade
:members:
Song Importers Song Importers
-------------- --------------

View File

@ -9,7 +9,7 @@ PAPER =
# Internal variables. # Internal variables.
PAPEROPT_a4 = -D latex_paper_size=a4 PAPEROPT_a4 = -D latex_paper_size=a4
PAPEROPT_letter = -D latex_paper_size=letter PAPEROPT_letter = -D latex_paper_size=letter
ALLSPHINXOPTS = -d build/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source ALLSPHINXOPTS = -n -d build/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
.PHONY: help clean html dirhtml pickle json htmlhelp qthelp latex changes linkcheck doctest .PHONY: help clean html dirhtml pickle json htmlhelp qthelp latex changes linkcheck doctest

View File

@ -1,5 +1,6 @@
.. _custom-slides: .. _custom-slides:
Custom Slides Custom Slides
============= =============
@ -30,3 +31,4 @@ displayed in the screen title. The option to show titles can be configured using
To Edit your slide, click on :guilabel:`Edit` to edit part of it or To Edit your slide, click on :guilabel:`Edit` to edit part of it or
:guilabel:`Edit All` if you need to make multiple changes. Use the Up and Down :guilabel:`Edit All` if you need to make multiple changes. Use the Up and Down
arrows to change the arrangement of your custom slide. arrows to change the arrangement of your custom slide.