added reStructuredText back

This commit is contained in:
Andreas Preikschat 2010-10-09 08:00:50 +02:00
parent 1bf1aeacd4
commit ae015a270a
3 changed files with 4 additions and 4 deletions

View File

@ -75,7 +75,7 @@ def parse_reference(reference):
7 None|[0-9]+|end None or the end of the second verse range.
The reference list is a list of tuples, with each tuple structured like
this:
this::
(book, chapter, start_verse, end_verse)
``reference``

View File

@ -320,14 +320,14 @@ class BibleDB(QtCore.QObject, Manager):
``reference_list``
This is the list of references the media manager item wants. It is
a list of tuples, with the following format:
a list of tuples, with the following format::
(book, chapter, start_verse, end_verse)
Therefore, when you are looking for multiple items, simply break
them up into references like this, bundle them into a list. This
function then runs through the list, and returns an amalgamated
list of ``Verse`` objects. For example:
list of ``Verse`` objects. For example::
[(u'Genesis', 1, 1, 1), (u'Genesis', 2, 2, 3)]
"""

View File

@ -382,7 +382,7 @@ class HTTPBible(BibleDB):
``reference_list``
This is the list of references the media manager item wants. It is
a list of tuples, with the following format:
a list of tuples, with the following format::
(book, chapter, start_verse, end_verse)