#!/usr/bin/env python
#
# $Id: docstring_ClassicStructuredText.py,v 1.3 2003/01/19 22:03:44 doughellmann Exp $
#
# Copyright 2001 Doug Hellmann.
#
#
# All Rights Reserved
#
# Permission to use, copy, modify, and distribute this software and
# its documentation for any purpose and without fee is hereby
# granted, provided that the above copyright notice appear in all
# copies and that both that copyright notice and this permission
# notice appear in supporting documentation, and that the name of Doug
# Hellmann not be used in advertising or publicity pertaining to
# distribution of the software without specific, written prior
# permission.
#
# DOUG HELLMANN DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
# NO EVENT SHALL DOUG HELLMANN BE LIABLE FOR ANY SPECIAL, INDIRECT OR
# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#
"""Docstring converter for original StructuredText format.
"""
__rcs_info__ = {
#
# Creation Information
#
'module_name' : '$RCSfile: docstring_ClassicStructuredText.py,v $',
'rcs_id' : '$Id: docstring_ClassicStructuredText.py,v 1.3 2003/01/19 22:03:44 doughellmann Exp $',
'creator' : 'Doug Hellmann Parse a structured text string into a form that can be used with
structured formats, like html. Structured text is text that uses indentation and simple symbology
to indicate the structure of a document. A structured string consists of a sequence of paragraphs separated
by one or more blank lines. Each paragraph has a level which is
defined as the minimum indentation of the paragraph. A paragraph is
a sub-paragraph of another paragraph if the other paragraph is the
last preceding paragraph that has a lower level. Special symbology is used to indicate special constructs: A single-line paragraph whose immediately succeeding paragraphs are lower
level is treated as a header. A paragraph that begins with a A paragraph that begins with a sequence of digits followed by a
white-space character is treated as an ordered list element. A paragraph that begins with a sequence of sequences, where each
sequence is a sequence of digits or a sequence of letters followed
by a period, is treated as an ordered list element. A paragraph with a first line that contains some text, followed by
some white-space and Sub-paragraphs of a paragraph that ends in the word Text enclosed single quotes (with white-space to the left of the
first quote and whitespace or punctuation to the right of the second quote)
is treated as example code. Text surrounded by Text surrounded by Text surrounded by Text encloded by double quotes followed by a colon, a URL, and concluded
by punctuation plus white space, or just white space, is treated as a
hyper link. For example: "Zope":http://www.zope.org/ is ... Is interpreted as Text enclosed by double quotes followed by a comma, one or more spaces,
an absolute URL and concluded by punctuation plus white space, or just
white space, is treated as a hyper link. For example: "mail me", mailto:amos@digicool.com. Is interpreted as Text enclosed in brackets which consists only of letters, digits,
underscores and dashes is treated as hyper links within the document.
For example: As demonstrated by Smith [12] this technique is quite effective. Is interpreted as Text enclosed in brackets which is preceded by the start of a line, two
periods and a space is treated as a named link. For example: .. [12] "Effective Techniques" Smith, Joe ... Is interpreted as A paragraph that has blocks of text enclosed in For example: is interpreted as: and appear as:
"""Classic Structured Text Manipulation
-
, *
, or o
is treated as an
unordered list (bullet) element.--
is treated as
a descriptive list element. The leading text is treated as the
element title.example
or the
word examples
, or ::
is treated as example code and is output as is.*
characters (with white-space to the left of the
first *
and whitespace or punctuation to the right of the second *
)
is emphasized.**
characters (with white-space to the left of the
first **
and whitespace or punctuation to the right of the second **
)
is made strong._
underscore characters (with whitespace to the left
and whitespace or punctuation to the right) is made underlined.Zope is ....
Note: This works for relative as well as absolute URLs.mail me.
... by Smith [12] this ...
. Together
with the next rule this allows easy coding of references or end notes.[12] "Effective Techniques" ...
.
Together with the previous rule this allows easy coding of references or
end notes. ||
is treated as a
table. The text blocks correspond to table cells and table rows are
denoted by newlines. By default the cells are center aligned. A cell
can span more than one column by preceding a block of text with an
equivalent number of cell separators ||
. Newlines and |
cannot
be a part of the cell text.
|||| **Ingredient** ||
|| *Name* || *Amount* ||
||Spam||10||
||Eggs||3||
<TABLE BORDER=1 CELLPADDING=2>
<TR>
<TD ALIGN=CENTER COLSPAN=2> <strong>Ingredients</strong> </TD>
</TR>
<TR>
<TD ALIGN=CENTER COLSPAN=1> <em>Name</em> </TD>
<TD ALIGN=CENTER COLSPAN=1> <em>Amount</em> </TD>
</TR>
<TR>
<TD ALIGN=CENTER COLSPAN=1>Spam</TD>
<TD ALIGN=CENTER COLSPAN=1>10</TD>
</TR>
<TR>
<TD ALIGN=CENTER COLSPAN=1>Eggs</TD>
<TD ALIGN=CENTER COLSPAN=1>3</TD>
</TR>
</TABLE>
Ingredient
Name
Amount
Spam
10
Eggs
3
"""
''' def testClassicStructuredTextConversion(self): filename = 'TestCases/docstring/test_classic_structuredtext.py' import happydoclib.parseinfo parsed_module = happydoclib.parseinfo.getDocs(None, filename) input_text = parsed_module._docstring self._testConversion( input_text, 'ClassicStructuredText', 'html', self.expectedOutput, 'Converting Classic ST to HTML did not produce expected results.', ) return def testBug471981Classic(self): input_text1 = """ any text first heading first section second heading second section third heading third section """ expected_text1 = '''any text
first section
second section
third section
''' self._testConversion( input_text1, 'ClassicStructuredText', 'html', expected_text1, 'Converting Classic ST to HTML did not produce expected results.', ) input_text2 = """ first heading first section second heading second section third heading third section """ expected_text2 = '''
first section
second section
third section
''' self._testConversion( input_text2, 'ClassicStructuredText', 'html', expected_text2, 'Converting Classic ST to HTML did not produce expected results.', ) return