[Docstring-checkins] CVS: dps/dps nodes.py,1.13,1.14
Status: Pre-Alpha
Brought to you by:
goodger
From: David G. <go...@us...> - 2001-10-27 05:41:19
|
Update of /cvsroot/docstring/dps/dps In directory usw-pr-cvs1:/tmp/cvs-serv12049/dps/dps Modified Files: nodes.py Log Message: - Added 'transition'. Index: nodes.py =================================================================== RCS file: /cvsroot/docstring/dps/dps/nodes.py,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** nodes.py 2001/10/23 02:23:25 1.13 --- nodes.py 2001/10/27 05:41:17 1.14 *************** *** 415,424 **** # ======================== # Bibliographic Elements # ======================== - class title(_TextElement): pass - class subtitle(_TextElement): pass class docinfo(_Element): pass class author(_TextElement): pass --- 415,430 ---- + # ================ + # Title Elements + # ================ + + class title(_TextElement): pass + class subtitle(_TextElement): pass + + # ======================== # Bibliographic Elements # ======================== class docinfo(_Element): pass class author(_TextElement): pass *************** *** 439,442 **** --- 445,449 ---- class section(_Element): pass + class transition(_Element): pass class package_section(_Element): pass |