Update of /cvsroot/docstring/dps/dps
In directory usw-pr-cvs1:/tmp/cvs-serv14256/dps/dps
Modified Files:
nodes.py
Log Message:
- Removed "abstract"
- Added "topic".
- Added "pending".
- Added "citation" and "citation_reference".
Index: nodes.py
===================================================================
RCS file: /cvsroot/docstring/dps/dps/nodes.py,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** nodes.py 1 Mar 2002 03:17:06 -0000 1.33
--- nodes.py 4 Mar 2002 04:47:06 -0000 1.34
***************
*** 697,701 ****
class date(Bibliographic, TextElement): pass
class copyright(Bibliographic, TextElement): pass
- class abstract(Bibliographic, Element): pass
--- 697,700 ----
***************
*** 705,708 ****
--- 704,708 ----
class section(Structural, Element): pass
+ class topic(Structural, Element): pass
class transition(Structural, Element): pass
***************
*** 770,773 ****
--- 770,774 ----
class target(Special, Inline, TextElement, ToBeResolved): pass
class footnote(General, Element): pass
+ class citation(General, Element): pass
class label(Component, TextElement): pass
class figure(General, Element): pass
***************
*** 806,809 ****
--- 807,811 ----
class reference(Inline, Referential, TextElement): pass
class footnote_reference(Inline, Referential, TextElement): pass
+ class citation_reference(Inline, Referential, TextElement): pass
class substitution_reference(Inline, Referential, TextElement): pass
class image(General, Inline, TextElement): pass
***************
*** 817,823 ****
node_class_names = """
Text
! abstract attention author authors
block_quote bullet_list
! caption caution classifier colspec comment contact copyright
danger date definition definition_list definition_list_item
description docinfo doctest_block document
--- 819,826 ----
node_class_names = """
Text
! attention author authors
block_quote bullet_list
! caption caution citation citation_reference classifier colspec
! comment contact copyright
danger date definition definition_list definition_list_item
description docinfo doctest_block document
***************
*** 835,839 ****
section status strong substitution_definition
substitution_reference subtitle system_message
! table target tbody term tgroup thead tip title transition
version
warning""".split()
--- 838,842 ----
section status strong substitution_definition
substitution_reference subtitle system_message
! table target tbody term tgroup thead tip title topic transition
version
warning""".split()
|