[Happydoc-checkins] CVS: HappyDoc3/happydoclib/docset base.py,1.14,1.15
Brought to you by:
doughellmann,
krlosaqp
From: Doug H. <dou...@us...> - 2003-01-19 22:04:43
|
Update of /cvsroot/happydoc/HappyDoc3/happydoclib/docset In directory sc8-pr-cvs1:/tmp/cvs-serv13010/happydoclib/docset Modified Files: base.py Log Message: Cleaned up docstring. Index: base.py =================================================================== RCS file: /cvsroot/happydoc/HappyDoc3/happydoclib/docset/base.py,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** base.py 1 Jan 2003 14:00:40 -0000 1.14 --- base.py 19 Jan 2003 22:04:40 -0000 1.15 *************** *** 144,159 **** class DocSet(DocSetBase): ! """Basic Documentation Set. ! This class extends the DocSetBase with a few more convenience ! methods. Most docsets will actually subclass from DocSet or one ! of its descendants rather than from DocSet directly. ! The basic extension is that this class provides a 'write' method ! which walks the scanner tree, determines the appropriate writer ! method for each node, and calls the writer. Subclasses need only ! provide writers and ! Parameters includeComments -- Boolean. False means to skip the --- 144,164 ---- class DocSet(DocSetBase): ! # ! # This class extends the DocSetBase with a few more convenience ! # methods. Most docsets will actually subclass from DocSet or one ! # of its descendants rather than from DocSet directly. ! # ! # The basic extension is that this class provides a 'write' method ! # which walks the scanner tree, determines the appropriate writer ! # method for each node, and calls the writer. Subclasses need only ! # provide writers and ! # ! """Docset Parameters ! Pass parameters to the docset using the syntax: ! docset_<argument>=value ! Common parameters for all documentation sets includeComments -- Boolean. False means to skip the |