[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/content - zpt.py:1.2
Albertas Agejevas
alga@codeworks.lt
Mon, 30 Dec 2002 14:44:56 -0500
Update of /cvs-repository/Zope3/src/zope/app/interfaces/content
In directory cvs.zope.org:/tmp/cvs-serv4800/src/zope/app/interfaces/content
Modified Files:
zpt.py
Log Message:
Added an "Expand macros" field to the ZPTPage.
=== Zope3/src/zope/app/interfaces/content/zpt.py 1.1 => 1.2 ===
--- Zope3/src/zope/app/interfaces/content/zpt.py:1.1 Fri Dec 27 15:33:50 2002
+++ Zope3/src/zope/app/interfaces/content/zpt.py Mon Dec 30 14:44:56 2002
@@ -41,6 +41,9 @@
description=u"""The source of the page template.""",
required=True)
+ expand = zope.schema.Bool(
+ title=u"Expand macros",
+ )
class IRenderZPTPage(Interface):