[Zope3-checkins] SVN: Zope3/branches/ZopeX3-3.0/src/zope/app/ Merged from trunk revision 27422:

Jim Fulton jim at zope.com
Thu Sep 2 14:15:15 EDT 2004


Log message for revision 27425:
  Merged from trunk revision 27422:
    Fixed http://collector.zope.org/Zope3-dev/269
    
  


Changed:
  U   Zope3/branches/ZopeX3-3.0/src/zope/app/pagetemplate/configure.zcml
  A   Zope3/branches/ZopeX3-3.0/src/zope/app/zptpage/browser/collector269.txt
  U   Zope3/branches/ZopeX3-3.0/src/zope/app/zptpage/browser/ftests.py


-=-
Modified: Zope3/branches/ZopeX3-3.0/src/zope/app/pagetemplate/configure.zcml
===================================================================
--- Zope3/branches/ZopeX3-3.0/src/zope/app/pagetemplate/configure.zcml	2004-09-02 17:59:15 UTC (rev 27424)
+++ Zope3/branches/ZopeX3-3.0/src/zope/app/pagetemplate/configure.zcml	2004-09-02 18:15:15 UTC (rev 27425)
@@ -27,4 +27,27 @@
     <allow interface="zope.tales.interfaces.ITALESIterator" />
  </content>
 
+ <class class=".engine.ZopePathExpr">
+    <allow attributes="__call__" />
+ </class>
+ <class class=".engine.TrustedZopePathExpr">
+    <allow attributes="__call__" />
+ </class>
+ <class class=".engine.ZopePythonExpr">
+    <allow attributes="__call__" />
+ </class>
+ <class class=".engine.PythonExpr">
+    <allow attributes="__call__" />
+ </class>
+
+ <class class="zope.tales.expressions.StringExpr">
+    <allow attributes="__call__" />
+ </class>
+ <class class="zope.tales.expressions.NotExpr">
+    <allow attributes="__call__" />
+ </class>
+ <class class="zope.tales.expressions.DeferExpr">
+    <allow attributes="__call__" />
+ </class>
+
 </configure>

Copied: Zope3/branches/ZopeX3-3.0/src/zope/app/zptpage/browser/collector269.txt (from rev 27422, Zope3/trunk/src/zope/app/zptpage/browser/collector269.txt)


Property changes on: Zope3/branches/ZopeX3-3.0/src/zope/app/zptpage/browser/collector269.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: Zope3/branches/ZopeX3-3.0/src/zope/app/zptpage/browser/ftests.py
===================================================================
--- Zope3/branches/ZopeX3-3.0/src/zope/app/zptpage/browser/ftests.py	2004-09-02 17:59:15 UTC (rev 27424)
+++ Zope3/branches/ZopeX3-3.0/src/zope/app/zptpage/browser/ftests.py	2004-09-02 18:15:15 UTC (rev 27425)
@@ -178,7 +178,7 @@
     from zope.app.tests.functional import FunctionalDocFileSuite
     return unittest.TestSuite((
         unittest.makeSuite(ZPTPageTest),
-        FunctionalDocFileSuite('collector266.txt'),
+        FunctionalDocFileSuite('collector266.txt', 'collector269.txt'),
         ))
 
 if __name__ == '__main__':



More information about the Zope3-Checkins mailing list