forked from openlp/openlp
Documentation!
bzr-revno: 810
This commit is contained in:
commit
108d3244c9
@ -18,12 +18,6 @@
|
|||||||
.. autoclass:: openlp.core.lib.eventreceiver.EventReceiver
|
.. autoclass:: openlp.core.lib.eventreceiver.EventReceiver
|
||||||
:members:
|
:members:
|
||||||
|
|
||||||
:mod:`ListWithPreviews`
|
|
||||||
-----------------------
|
|
||||||
|
|
||||||
.. autoclass:: openlp.core.lib.listwithpreviews.ListWithPreviews
|
|
||||||
:members:
|
|
||||||
|
|
||||||
:mod:`MediaManagerItem`
|
:mod:`MediaManagerItem`
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
||||||
|
95
documentation/source/plugins/bibles.rst
Normal file
95
documentation/source/plugins/bibles.rst
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
.. _plugins-bibles:
|
||||||
|
|
||||||
|
:mod:`bibles` Plugin
|
||||||
|
====================
|
||||||
|
|
||||||
|
.. automodule:: openlp.plugins.bibles
|
||||||
|
:members:
|
||||||
|
|
||||||
|
:mod:`BiblePlugin` Class
|
||||||
|
-------------------------
|
||||||
|
|
||||||
|
.. autoclass:: openlp.plugins.bibles.bibleplugin.BiblePlugin
|
||||||
|
:members:
|
||||||
|
|
||||||
|
:mod:`forms` Submodule
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
.. automodule:: openlp.plugins.bibles.forms
|
||||||
|
:members:
|
||||||
|
|
||||||
|
:mod:`BibleImportWizard`
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
.. autoclass:: openlp.plugins.bibles.forms.bibleimportwizard.Ui_BibleImportWizard
|
||||||
|
:members:
|
||||||
|
|
||||||
|
.. autoclass:: openlp.plugins.bibles.forms.importwizardform.ImportWizardForm
|
||||||
|
:members:
|
||||||
|
|
||||||
|
:mod:`lib` Submodule
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
.. automodule:: openlp.plugins.bibles.lib
|
||||||
|
:members:
|
||||||
|
|
||||||
|
:mod:`db`
|
||||||
|
^^^^^^^^^
|
||||||
|
|
||||||
|
.. automodule:: openlp.plugins.bibles.lib.db
|
||||||
|
:members:
|
||||||
|
|
||||||
|
.. autoclass:: openlp.plugins.bibles.lib.db.BibleDB
|
||||||
|
:members:
|
||||||
|
|
||||||
|
:mod:`csv`
|
||||||
|
^^^^^^^^^^
|
||||||
|
|
||||||
|
.. automodule:: openlp.plugins.bibles.lib.csvbible
|
||||||
|
:members:
|
||||||
|
|
||||||
|
.. autoclass:: openlp.plugins.bibles.lib.csvbible.CSVBible
|
||||||
|
:members:
|
||||||
|
|
||||||
|
:mod:`http`
|
||||||
|
^^^^^^^^^^^
|
||||||
|
|
||||||
|
.. automodule:: openlp.plugins.bibles.lib.http
|
||||||
|
:members:
|
||||||
|
|
||||||
|
.. autoclass:: openlp.plugins.bibles.lib.http.HTTPBible
|
||||||
|
:members:
|
||||||
|
|
||||||
|
:mod:`bibleOSISimpl`
|
||||||
|
^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
.. automodule:: openlp.plugins.bibles.lib.osis
|
||||||
|
:members:
|
||||||
|
|
||||||
|
.. autoclass:: openlp.plugins.bibles.lib.osis.OSISBible
|
||||||
|
:members:
|
||||||
|
|
||||||
|
:mod:`biblestab`
|
||||||
|
^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
.. automodule:: openlp.plugins.bibles.lib.biblestab
|
||||||
|
:members:
|
||||||
|
|
||||||
|
:mod:`common`
|
||||||
|
^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
.. automodule:: openlp.plugins.bibles.lib.common
|
||||||
|
:members:
|
||||||
|
|
||||||
|
:mod:`manager`
|
||||||
|
^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
.. automodule:: openlp.plugins.bibles.lib.manager
|
||||||
|
:members:
|
||||||
|
|
||||||
|
:mod:`mediaitem`
|
||||||
|
^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
.. automodule:: openlp.plugins.bibles.lib.mediaitem
|
||||||
|
:members:
|
||||||
|
|
@ -10,12 +10,7 @@
|
|||||||
:maxdepth: 2
|
:maxdepth: 2
|
||||||
|
|
||||||
songs
|
songs
|
||||||
|
bibles
|
||||||
:mod:`bibles` Plugin
|
|
||||||
--------------------
|
|
||||||
|
|
||||||
.. automodule:: openlp.plugins.bibles
|
|
||||||
:members:
|
|
||||||
|
|
||||||
:mod:`presentations` Plugin
|
:mod:`presentations` Plugin
|
||||||
---------------------------
|
---------------------------
|
||||||
@ -41,3 +36,8 @@
|
|||||||
.. automodule:: openlp.plugins.custom
|
.. automodule:: openlp.plugins.custom
|
||||||
:members:
|
:members:
|
||||||
|
|
||||||
|
:mod:`songusage` Plugin
|
||||||
|
-----------------------
|
||||||
|
|
||||||
|
.. automodule:: openlp.plugins.songusage
|
||||||
|
:members:
|
||||||
|
@ -36,7 +36,7 @@ log = logging.getLogger(__name__)
|
|||||||
|
|
||||||
class BibleListView(BaseListWithDnD):
|
class BibleListView(BaseListWithDnD):
|
||||||
"""
|
"""
|
||||||
Drag and drop capable list for Bibles.
|
Custom list view descendant, required for drag and drop.
|
||||||
"""
|
"""
|
||||||
def __init__(self, parent=None):
|
def __init__(self, parent=None):
|
||||||
self.PluginName = u'Bibles'
|
self.PluginName = u'Bibles'
|
||||||
|
Loading…
Reference in New Issue
Block a user