Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
1k views

Purpose of Zope Interfaces?

I have started using Zope interfaces in my code, and as of now, they are really only documentation. I use them to specify what attributes the class should possess, explicitly implement them in the ...
2
votes
1answer
27 views

Does a Zope Component Architecture component need to state the interfaces it implements?

Note: I am new to ZCA, so the code may be incorrect; however, I am somewhat familiar with the way ZCA works. Given for example: class I1(Interface): def c1(): pass class U1(object): ...
2
votes
1answer
68 views

how do I get a list of classes that implement an interface? (zope.interface)

The question says everything. Or am I trying to use zope.interface for the wrong purpose? What I need is basically the One Way To Do It for registering classes that implement a certain functionality ...
2
votes
3answers
292 views

Specify DateTime format on zope.schema.Date on Plone

I'm working on a form with Formlib that looks like this: from zope.schema import Choice, Float, Int, Date, TextLine from Products.Five.formlib.formbase import PageForm class ...
2
votes
2answers
433 views

Python: Abstract Base Class and ZopeInterface

What's the point of both? When do you think it's appropriate to use either?
1
vote
2answers
50 views

Plone - cannot copy and paste view in Zope Management Interface's plone_skins' plone_content

We are using Plone 4.1.2, and are having problem doing a copy and paste of a view in Zope Management Interface's plone_skins' plone_content. We get this error message: Thank you very much in ...
1
vote
1answer
68 views

Is the 'zope' package widely used?

I want to implement my project using interface oriented programming. Since Python itself does not have native support to the Interface keyword, I am planning to leverage the zope.* package. But the ...
1
vote
1answer
153 views

Getting py2exe to work with zope.interface

I have a Python app based on Twisted and PyGTK. Twisted itself depends on zope.interface, and I don't import it directly. Unfortunately, when I try to run my app, the following error ends up in the ...
1
vote
1answer
890 views

how do i install zope interface with python 2.6?

During setup, I'm like missing vcvarsall.bat running build running build_py running build_ext building '_zope_interface_coptimizations' extension error: Unable to find vcvarsall.bat
1
vote
2answers
111 views

Problem in plone translation

I am a plone Newbie and I needed to change a translated word in the .po file, the translation is in Arabic. When I changes the word to the right word and restarted the zope. My plone site is no more ...
1
vote
2answers
55 views

I want to use ZopeInterfaces, however my project is based on Python 3.x - any suggestions?

Zope Interfaces are a great way to get some Java-style "design by contract" into a python program. It provides some great features such as implement-able interfaces and a really neat pattern for ...
0
votes
2answers
143 views

Where do I place the .egg (Python)?

I'm trying to install the zope interface script for Python. However, the only download I saw was a .egg file type. I'm running Windows Python 2.7, where should I place this file for the Zope interface ...
0
votes
1answer
85 views

How to upload zope site on my ftp?

Hey, I'd like to know how to upload my zope site on my ftp. I have a domain, and I like to upload it, like a upload normal files on my ftp. Thanks.