Skip to content

Commit

Permalink
<content> -> <class>
Browse files Browse the repository at this point in the history
  • Loading branch information
philikon committed Mar 15, 2006
0 parents commit 33f7017
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions configure.zcml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<configure xmlns="http://namespaces.zope.org/zope">

<class class=".viewpagetemplatefile.BoundPageTemplate">
<allow attributes="__call__ __str__ __name__" />
</class>

<adapter
for="*"
provides="zope.app.traversing.interfaces.IPathAdapter"
factory=".talesapi.ZopeTalesAPI"
name="zope"
/>

<adapter
for="*"
provides="zope.app.traversing.interfaces.IPathAdapter"
factory=".urlquote.URLQuote"
name="url"/>

<class class="zope.tales.tales.Iterator">
<allow interface="zope.tales.interfaces.ITALESIterator" />
</class>

<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>

0 comments on commit 33f7017

Please sign in to comment.