[Zope-Checkins] CVS: Zope/lib/python/docutils/readers - pep.py:1.2.10.5

Christian 'Tiran' Heimes heimes at faho.rwth-aachen.de
Mon Jul 26 13:38:39 EDT 2004


Update of /cvs-repository/Zope/lib/python/docutils/readers
In directory cvs.zope.org:/tmp/cvs-serv18892/lib/python/docutils/readers

Modified Files:
      Tag: Zope-2_7-branch
	pep.py 
Log Message:
Updated docutils including a fix for 1426:  System locale breaks reStructuredText horribly
Added rest-language-code to zope.conf schema. it's used instead of the locales


=== Zope/lib/python/docutils/readers/pep.py 1.2.10.4 => 1.2.10.5 ===
--- Zope/lib/python/docutils/readers/pep.py:1.2.10.4	Thu May 13 12:20:01 2004
+++ Zope/lib/python/docutils/readers/pep.py	Mon Jul 26 13:38:09 2004
@@ -16,15 +16,6 @@
 from docutils.parsers import rst
 
 
-class Inliner(rst.states.Inliner):
-
-    """
-    Extend `rst.Inliner` for local PEP references.
-    """
-
-    pep_url = rst.states.Inliner.pep_url_local
-
-
 class Reader(standalone.Reader):
 
     supported = ('pep',)
@@ -52,7 +43,7 @@
 
     settings_default_overrides = {'pep_references': 1, 'rfc_references': 1}
 
-    inliner_class = Inliner
+    inliner_class = rst.states.Inliner
 
     def __init__(self, parser=None, parser_name=None):
         """`parser` should be ``None``."""



More information about the Zope-Checkins mailing list