Hi friends, i have a problem actually use cpsskins of svn.z3lab.org
and the zope3 of svn (svn.zope.org), whenever I want to create a
subject shows the following error:
AttributeError: 'NoneType' object has no attribute 'newIdentifier'
after looking for, the error occurs in this file
http://svn
First - you can use ``from zope.app.container.constraints import
contains``. It's a bit easier to write.
Anyways, in Python you can't reference the class you're in because
that name, 'ILinkContainer' does not exist **until the end of the
class statement** (after all of the things indented within t
On 12/31/05, Marius Gedminas <[EMAIL PROTECTED]> wrote:
> On Thu, Dec 29, 2005 at 11:22:28PM -0700, Jeff Shell wrote:
> > Again, this is to have URLs like:
> >
> > myapp/@@tags/zope/viewlet
> >
> > And turn that into a catalog search for anyof {'zope', 'viewlet'}
> >
> > def publishTraverse(sel
Does anyone got this mail? I've not received a copy from the mailinglists
neither it shows up in the archives...
Am Freitag, 30. Dezember 2005 20:57 schrieb Jeff Shell:
> On 12/30/05, Florian Lindner <[EMAIL PROTECTED]> wrote:
> > Am Freitag, 30. Dezember 2005 17:45 schrieb Jim Fulton:
> > > Phil
I guess I don't understand traversal at all.
I am trying to come up with the simplest possible class to exercise the
ITraversable interface. Here's what I have:
###
from zope.interface import implements
from zope.app.traversing.interfaces import ITraversable
class TravTestFlag(Exception):
""
Hi!
I want to have container, witch should contain links and others
containers of his own type! What I did is this in my interface-definition:
class ILinkContainer(IContainer):
"""Basic folder, containing only links and other link folders."""
def __setitem__(name, object):
"""
Am Freitag, 30. Dezember 2005 20:57 schrieb Jeff Shell:
> On 12/30/05, Florian Lindner <[EMAIL PROTECTED]> wrote:
> > Am Freitag, 30. Dezember 2005 17:45 schrieb Jim Fulton:
> > > Philipp von Weitershausen wrote:
> > > > So, what you want is not a list of classes but a list of factories
> > > > tha
On Thu, Dec 29, 2005 at 11:22:28PM -0700, Jeff Shell wrote:
> Again, this is to have URLs like:
>
> myapp/@@tags/zope/viewlet
>
> And turn that into a catalog search for anyof {'zope', 'viewlet'}
>
> def publishTraverse(self, request, name):
> namestack = request.getTraversalStack()