Re: [Zope-dev] zope.app.authentication broken!

2008-07-10 Thread Christophe Combelles

Roger Ineichen a écrit :

hi

I'm pretty sure the container changes are not compatible because of
some bad __init__ methods in inherited classes in other packages.

But that's not the fault of the refactoring that is correct 
as far as I can see.


zope.app.authentication.groupfolder.py

class GroupFolder(BTreeContainer):



def __init__(self, prefix=u''):
self.prefix=prefix
super(BTreeContainer,self).__init__()



The *super(BTreeContainer,self).__init__()* will
not initialize the right thing here. right?

What was the reason of calling:
super(BTreeContainer,self).__init__()
instead of:
super(GroupFolder, self).__init__()

btw, did someone run the tests with all packages that depend
on zope.app.container?


I would like to do this. How can I know all the packages that depend on 
zope.app.container? What is the procedure? Then how can I run all the tests?


Christophe




Regards
Roger Ineichen
_
END OF MESSAGE

___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce

 http://mail.zope.org/mailman/listinfo/zope )




___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
http://mail.zope.org/mailman/listinfo/zope-announce

http://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] zope.app.authentication broken!

2008-07-10 Thread Christophe Combelles

Christophe Combelles a écrit :

Roger Ineichen a écrit :

hi

I'm pretty sure the container changes are not compatible because of
some bad __init__ methods in inherited classes in other packages.

But that's not the fault of the refactoring that is correct as far as 
I can see.


zope.app.authentication.groupfolder.py

class GroupFolder(BTreeContainer):



def __init__(self, prefix=u''):
self.prefix=prefix
super(BTreeContainer,self).__init__()



The *super(BTreeContainer,self).__init__()* will
not initialize the right thing here. right?

What was the reason of calling:
super(BTreeContainer,self).__init__()
instead of:
super(GroupFolder, self).__init__()

btw, did someone run the tests with all packages that depend
on zope.app.container?


I would like to do this. How can I know all the packages that depend on 
zope.app.container? What is the procedure? Then how can I run all the 
tests?



ok, it's explained in zope.kgs




Christophe




Regards
Roger Ineichen
_
END OF MESSAGE

___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists -  http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )




___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - http://mail.zope.org/mailman/listinfo/zope-announce
http://mail.zope.org/mailman/listinfo/zope )




___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
http://mail.zope.org/mailman/listinfo/zope-announce

http://mail.zope.org/mailman/listinfo/zope )


AW: [Zope-dev] zope.app.authentication broken!

2008-07-10 Thread Roger Ineichen
Hi Chritophe

 Betreff: Re: [Zope-dev] zope.app.authentication broken!

[...]

  btw, did someone run the tests with all packages that depend on 
  zope.app.container?
  
  I would like to do this. How can I know all the packages 
 that depend 
  on zope.app.container? What is the procedure? Then how can 
 I run all 
  the tests?
 
 
 ok, it's explained in zope.kgs

Yeah, thanks!

I already released the zope.app.authentication package fix.

Regards
Roger Ineichen

  Christophe

___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )


[Zope-dev] zope.app.authentication broken!

2008-07-08 Thread Roger Ineichen
hi

I'm pretty sure the container changes are not compatible because of
some bad __init__ methods in inherited classes in other packages.

But that's not the fault of the refactoring that is correct 
as far as I can see.

zope.app.authentication.groupfolder.py

class GroupFolder(BTreeContainer):



def __init__(self, prefix=u''):
self.prefix=prefix
super(BTreeContainer,self).__init__()



The *super(BTreeContainer,self).__init__()* will
not initialize the right thing here. right?

What was the reason of calling:
super(BTreeContainer,self).__init__()
instead of:
super(GroupFolder, self).__init__()

btw, did someone run the tests with all packages that depend
on zope.app.container?

Regards
Roger Ineichen
_
END OF MESSAGE

___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )