Re: [Zope] External Methods and Authentication error

2007-03-11 Thread Dieter Maurer
Jonathan wrote at 2007-3-10 08:03 -0500: > ... >Dieter, thanks for the lead, but it is all very strange and I really don't >understand what is happening... > >External Method: > > # threadFolder is a BTreeFolder2; viewCount is a property >field on the BTreeFolder2 > >line 3227:

Re: [Zope] External Methods and Authentication error (resolved)

2007-03-11 Thread Jonathan
- Original Message - From: "Dieter Maurer" <[EMAIL PROTECTED]> To: "Jonathan" <[EMAIL PROTECTED]> Cc: Sent: Sunday, March 11, 2007 3:13 PM Subject: Re: [Zope] External Methods and Authentication error External Method: # threadFolder is a BTreeFolder2; viewCount is

Re: [Zope] have problem with managing objects within a external product

2007-03-11 Thread Allen Huang
Dear AJ, Thanks, but I still have some problems with creating a Folderish Object product I imported Folder from OFS.Folder but I wasn't able to add any products like File, Folder, Image with in my folderish object. my code looks like this--> class ShpProjectClass(Item, Folder, Persistent, Imp

[Zope] Lost user credentials

2007-03-11 Thread Garito
Hi all! Some days ago I send to the list a question about a problem losting user credentials In my code I don't use nothing about security and nothing is changed on zmi's security tab But when I launch a method (Borrar if you remember) the user who launches the action is anonymous not the logged

Re: [Zope] Lost user credentials

2007-03-11 Thread Andreas Jung
--On 12. März 2007 04:04:31 +0100 Garito <[EMAIL PROTECTED]> wrote: Hi all! Some days ago I send to the list a question about a problem losting user credentials In my code I don't use nothing about security and nothing is changed on zmi's security tab But when I launch a method (Borrar if yo

Re: [Zope] have problem with managing objects within a external product

2007-03-11 Thread Allen Huang
Hi. I found out what my problem is. in my code I please baseclass Item before Folder class ShpProjectClass(Item, Folder, Persistent, Implicit, CatalogAware): when I change the order, it worked normally class ShpProjectClass(Folder, Item, Persistent, Implicit, CatalogAware): but I don't underst

Re: [Zope] have problem with managing objects within a external product

2007-03-11 Thread Maciej Wisniowski
> > > I found out what my problem is. > in my code I please baseclass Item before Folder > class ShpProjectClass(Item, Folder, Persistent, Implicit, CatalogAware): > when I change the order, it worked normally > class ShpProjectClass(Folder, Item, Persistent, Implicit, CatalogAware): > but I do