[Zope-Checkins] CVS: Zope/lib/python/docutils/readers -
__init__.py:1.2.10.7 pep.py:1.2.10.8 standalone.py:1.2.10.7
Andreas Jung
andreas at andreas-jung.com
Sun Oct 9 10:44:16 EDT 2005
Update of /cvs-repository/Zope/lib/python/docutils/readers
In directory cvs.zope.org:/tmp/cvs-serv26422/readers
Modified Files:
Tag: Zope-2_7-branch
__init__.py pep.py standalone.py
Log Message:
upgrade to docutils 0.3.9
=== Zope/lib/python/docutils/readers/__init__.py 1.2.10.6 => 1.2.10.7 ===
=== Zope/lib/python/docutils/readers/pep.py 1.2.10.7 => 1.2.10.8 ===
--- Zope/lib/python/docutils/readers/pep.py:1.2.10.7 Fri Jan 7 08:26:05 2005
+++ Zope/lib/python/docutils/readers/pep.py Sun Oct 9 10:43:46 2005
@@ -31,9 +31,9 @@
config_section_dependencies = ('readers', 'standalone reader')
default_transforms = (references.Substitutions,
+ references.PropagateTargets,
peps.Headers,
peps.Contents,
- references.ChainedTargets,
references.AnonymousHyperlinks,
references.IndirectHyperlinks,
peps.TargetNotes,
=== Zope/lib/python/docutils/readers/standalone.py 1.2.10.6 => 1.2.10.7 ===
--- Zope/lib/python/docutils/readers/standalone.py:1.2.10.6 Fri Jan 7 08:26:05 2005
+++ Zope/lib/python/docutils/readers/standalone.py Sun Oct 9 10:43:46 2005
@@ -37,15 +37,26 @@
'default).',
['--no-doc-info'],
{'dest': 'docinfo_xform', 'action': 'store_false', 'default': 1,
- 'validator': frontend.validate_boolean}),))
+ 'validator': frontend.validate_boolean}),
+ ('Activate the promotion of lone subsection titles to '
+ 'section subtitles (disabled by default).',
+ ['--section-subtitles'],
+ {'dest': 'sectsubtitle_xform', 'action': 'store_true', 'default': 0,
+ 'validator': frontend.validate_boolean}),
+ ('Deactivate the promotion of lone subsection titles.',
+ ['--no-section-subtitles'],
+ {'dest': 'sectsubtitle_xform', 'action': 'store_false',
+ 'validator': frontend.validate_boolean}),
+ ))
config_section = 'standalone reader'
config_section_dependencies = ('readers',)
default_transforms = (references.Substitutions,
+ references.PropagateTargets,
frontmatter.DocTitle,
+ frontmatter.SectionSubTitle,
frontmatter.DocInfo,
- references.ChainedTargets,
references.AnonymousHyperlinks,
references.IndirectHyperlinks,
references.Footnotes,
More information about the Zope-Checkins
mailing list