[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/ZReST/ZReST.py
the default value of the 'stylesheet' property is now ''
Andreas Jung
andreas at andreas-jung.com
Mon Mar 13 12:40:52 EST 2006
Log message for revision 65955:
the default value of the 'stylesheet' property is now ''
to avoid trouble with Docutils 0.4.0 trying load this
non-existing file
Changed:
U Zope/trunk/lib/python/Products/ZReST/ZReST.py
-=-
Modified: Zope/trunk/lib/python/Products/ZReST/ZReST.py
===================================================================
--- Zope/trunk/lib/python/Products/ZReST/ZReST.py 2006-03-13 15:04:23 UTC (rev 65954)
+++ Zope/trunk/lib/python/Products/ZReST/ZReST.py 2006-03-13 17:40:51 UTC (rev 65955)
@@ -70,7 +70,7 @@
# define the properties that define this object
_properties = (
{'id':'stylesheet', 'type': 'string', 'mode': 'w',
- 'default': 'default.css'},
+ 'default': ''},
{'id':'report_level', 'type': 'string', 'mode': 'w', 'default': '2'},
{'id':'input_encoding', 'type': 'string', 'mode': 'w', 'default': 'iso-8859-15'},
{'id':'output_encoding', 'type': 'string', 'mode': 'w', 'default': 'iso-8859-15'},
More information about the Zope-Checkins
mailing list