Re: [Zope-dev] What from zope.app are you using
Brian Sutherland wrote:
On Wed, Apr 05, 2006 at 11:18:46PM +0200, Philipp von Weitershausen wrote:
Brian Sutherland wrote:
On Wed, Apr 05, 2006 at 05:29:41PM +0200, Philipp von Weitershausen wrote:
I would like to know what other zope.app packages your 3rd party software is using. Er, FiveSQLOS is using quite a lot actually:
https://codespeak.net/svn/z3/sqlos/trunk/Zope2/FiveSQLOS/dependencies-meta.z... https://codespeak.net/svn/z3/sqlos/trunk/Zope2/FiveSQLOS/dependencies.zcml Why are you loading zope.app.component/meta.zcml and zope.app.security/meta.zcml? Five should provide all the necessary directive registrations
I havn't touched that code since the Zope2.8 days. I'll believe you for now and try testing it when the dust has settled.
Ok. By the way, that "should" in "Five should provide..." also means that if Five doesn't provide the necessary directive registrations yet (which might very well be), then we need to make it.
As for zope.app.rdb, I guess we'll have to move it down to zope.rdb.
I can probably take care of that in the next days.
Great. Note that I'm working on the jim-adapter branch. I suggest you do your modifications there as well. Philipp
On Thu, Apr 06, 2006 at 12:12:05AM +0200, Philipp von Weitershausen wrote:
Brian Sutherland wrote:
On Wed, Apr 05, 2006 at 11:18:46PM +0200, Philipp von Weitershausen wrote:
Brian Sutherland wrote:
On Wed, Apr 05, 2006 at 05:29:41PM +0200, Philipp von Weitershausen wrote:
I would like to know what other zope.app packages your 3rd party software is using. Er, FiveSQLOS is using quite a lot actually:
https://codespeak.net/svn/z3/sqlos/trunk/Zope2/FiveSQLOS/dependencies-meta.z... https://codespeak.net/svn/z3/sqlos/trunk/Zope2/FiveSQLOS/dependencies.zcml Why are you loading zope.app.component/meta.zcml and zope.app.security/meta.zcml? Five should provide all the necessary directive registrations
I havn't touched that code since the Zope2.8 days. I'll believe you for now and try testing it when the dust has settled.
Ok. By the way, that "should" in "Five should provide..." also means that if Five doesn't provide the necessary directive registrations yet (which might very well be), then we need to make it.
Ok, I make some tests without importing any of those dependencies, the issues I have found thus far: * missing factory directive * missing class directive * zope.View permission not defined This is not an exhaustive list and all of them came from the file: http://codespeak.net/svn/z3/sqlos/trunk/src/sqlos/configure.zcml
As for zope.app.rdb, I guess we'll have to move it down to zope.rdb.
I can probably take care of that in the next days.
Great. Note that I'm working on the jim-adapter branch. I suggest you do your modifications there as well.
sure.
Philipp
_______________________________________________ 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 )
-- Brian Sutherland Metropolis - "it's the first movie with a robot. And she's a woman. And she's EVIL!!"
Brian Sutherland wrote:
Ok, I make some tests without importing any of those dependencies, the issues I have found thus far:
* missing factory directive
Recent Five releases should have it. It's deprecated now, though.
* missing class directive
It's in the recent bugfix releases. I just haven't gotten around announcing them since, partially because there's another important bugfix in the pipe that would classify for another round of bugfix releases.
* zope.View permission not defined
This can easily be fixed by redefining the zope.View permission to the zope.View permission: <meta:redefinePermission from="zope.View" to="zope2.View" /> By the way, I'm keeping an updated version of the proposal at http://codespeak.net/svn/user/philikon/MakeZopeAppSmaller.txt (will periodically sync this with the one at zope.org). Philipp
participants (2)
-
Brian Sutherland -
Philipp von Weitershausen