Tagged Questions
The zcml tag has no wiki summary.
2
votes
2answers
94 views
Do *.zcml files get parsed i18n wise?
I have named utilities and would like to mark names for later i18n usage. Is this the right way?
<utility
name="Home"
i18n:attributes="name"
provides=".interfaces..."
...
2
votes
1answer
502 views
What are the valid conditions for zcml:condition?
ZCML can include conditional directives of the form
<configure zcml:condition="installed some.python.package">
(conditional configuration directives)
</configure>
What is the ...
1
vote
1answer
18 views
Zope3 browser:page multiple interfaces
Let's say I have the following code in my configure.zcml file. I want my class to be implemented for another interface too, let's say Interface2
<browser:page
for="Interface1"
...
1
vote
1answer
118 views
Zope register external methods using zcml configure
Is it possible to register external methods for Zope using a configure.zcml file or something similar? I'm trying to register external Python scripts (similar to other registry items such as ...
1
vote
1answer
77 views
What is the difference between a Zope utility defined with a factory versus a component?
It's a little confusing that ZCML registrations for Zope utilities can accept a component or a factory.
<utility component=".some.Class" />
versus
<utility factory=".some.Factory" />
...