[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/services - interfaces.py:1.10

Albertas Agejevas alga@codeworks.lt
Thu, 6 Feb 2003 10:35:34 -0500


Update of /cvs-repository/Zope3/src/zope/app/interfaces/services
In directory cvs.zope.org:/tmp/cvs-serv32407/src/zope/app/interfaces/services

Modified Files:
	interfaces.py 
Log Message:
Added ant 'attribute' attribute to the PageConfiguration.
That is, now a persistent page configuration in a local view service can
either specify an attribute of a view to be called, or provide a persistent
page template.

The 'attribute' attribute is not yet in the add view though.


=== Zope3/src/zope/app/interfaces/services/interfaces.py 1.9 => 1.10 ===
--- Zope3/src/zope/app/interfaces/services/interfaces.py:1.9	Sat Jan 25 08:28:54 2003
+++ Zope3/src/zope/app/interfaces/services/interfaces.py	Thu Feb  6 10:35:03 2003
@@ -162,6 +162,12 @@
         type = IZPTTemplate,
         )
 
+    attribute = TextLine(
+        title = u"Class attribute",
+        required = False,
+        readonly = True,
+        )
+
 class IPageConfiguration(IConfiguration, IPageConfigurationInfo):
 
     def getView(object, request):