[Zope-Checkins] CVS: Zope/lib/python/Products/ZReST - ZReST.py:1.6

Andreas Jung andreas@andreas-jung.com
Sat, 22 Feb 2003 02:08:13 -0500


Update of /cvs-repository/Zope/lib/python/Products/ZReST
In directory cvs.zope.org:/tmp/cvs-serv23168/lib/python/Products/ZReST

Modified Files:
	ZReST.py 
Log Message:
we forgot to call apply_forms (found by Uwe Hentzschel)


=== Zope/lib/python/Products/ZReST/ZReST.py 1.5 => 1.6 ===
--- Zope/lib/python/Products/ZReST/ZReST.py:1.5	Thu Feb  6 04:05:57 2003
+++ Zope/lib/python/Products/ZReST/ZReST.py	Sat Feb 22 02:08:12 2003
@@ -195,6 +195,10 @@
 
         # parse!
         document = pub.reader.read(pub.source, pub.parser, pub.settings)
+
+        # transform
+        pub.apply_transforms(document)
+
         self.warnings = ''.join(pub.settings.warning_stream.messages)
 
         if document.children:
@@ -269,47 +273,4 @@
 modulesecurity.apply(globals())
 
 
-#
-# $Log$
-# Revision 1.5  2003/02/06 09:05:57  andreasjung
-# fixed invalid MIME header
-#
-# Revision 1.4  2003/02/02 14:21:51  andreasjung
-# the content-type header is now set with the corresponding encoding parameter
-#
-# Revision 1.3  2003/02/01 10:23:10  andreasjung
-# input/output_encoding are now properties making ZReST more configurable
-#
-# Revision 1.2  2003/02/01 09:28:30  andreasjung
-# merge from ajung-restructuredtext-integration-branch
-#
-# Revision 1.1.2.5  2003/01/30 19:00:24  andreasjung
-# forgot to import sys
-#
-# Revision 1.1.2.4  2003/01/30 18:10:57  andreasjung
-# using Pythons  default encoding instead of the docutils defaults
-#
-# Revision 1.1.2.3  2003/01/30 18:09:44  andreasjung
-# update from RIchards sandbox
-#
-# Revision 1.6  2002/11/28 03:44:50  goodger
-# updated
-#
-# Revision 1.5  2002/11/05 05:27:56  goodger
-# fixed Reader name
-#
-# Revision 1.4  2002/10/18 05:10:33  goodger
-# Refactored names (options -> settings; etc.); updated.
-#
-# Revision 1.3  2002/08/15 05:02:41  richard
-# pull out the document title too
-#
-# Revision 1.2  2002/08/15 04:36:56  richard
-# FTP interface and Reporter message snaffling
-#
-# Revision 1.1  2002/08/14 05:15:37  richard
-# Zope ReStructuredText Product
-#
-#
-#
 # vim: set filetype=python ts=4 sw=4 et si