[Zope3-Users] Securitypolicy issues when moving to eggs

2007-11-06 Thread Jesper Petersen
Hi,I recently moved my webapp from z3.3.1 tarball to all eggs. It's working great except for my securitypolicy, which seems to sort of half-work. For example, earlier an authenticated member could view http://myhost/mysite/@@footest.html with and without the @@ but now it's only viewable with

Re: [Zope3-Users] Re: Getting started with a zope 3 install as eggs

2007-11-05 Thread Jesper Petersen
know wether to include zope.foo or zope.foo.bar as a dependency? I could do a simple search on pypi for this but it seems kind of time consuming. Lots of questions :) Thanks for your time Jesper On 11/5/07, Brandon Craig Rhodes [EMAIL PROTECTED] wrote: Jesper Petersen [EMAIL PROTECTED

[Zope3-Users] Re: Getting started with a zope 3 install as eggs

2007-11-04 Thread Jesper Petersen
Hi Christian,I've looked a bit at zopeproject, but I'm still wondering if it's possible to still install zope as eggs without zopeproject (if that even makes sense). Will zopeproject become _the_ way of developing in the future? Because I don't see a reason using a tarball install when you can't

Re: [Zope3-Users] zc.catalog's FilterExtent (with hurry.query)

2007-10-30 Thread Jesper Petersen
Hi Gary,Thanks for your comprehensive answer. Yes, my extents aren't really as small as in my examples. Seems like a reasonable idea to wait with optimizations, not sure they are even needed, at least not within a year or so :) Cheers On 10/28/07, Gary Poster [EMAIL PROTECTED] wrote: Hi

[Zope3-Users] Getting started with a zope 3 install as eggs

2007-10-30 Thread Jesper Petersen
Good afternoon list,I currently have a Zope 3.3.1 installation (tarball) and have written some code that uses zc.catalog and hurry.query. These two were installed as eggs and work fine (I used zc.catalog 1.1 because later versions required a lot of zope eggs) I'd like to use more packages but I

[Zope3-Users] zc.catalog's FilterExtent (with hurry.query)

2007-10-27 Thread Jesper Petersen
Hey!I'm trying to understand if my idea of how to use the FilterExtent in zc.catalog (1.1.1) is correct (and efficient). I'm also using hurry.query (0.9.3). My current understanding of extents is: they can be used to perform a search on a subset of a catalog. For example, give me all objects where

[Zope3-Users] Re: zc.catalog's FilterExtent (with hurry.query)

2007-10-27 Thread Jesper Petersen
Correction on my previous mail, I obviously mean make an intersection nota union... On 10/27/07, Jesper Petersen [EMAIL PROTECTED] wrote: I mean, I could do a search on the big catalog and then make a union with the network's extent: ___ Zope3

[Zope3-Users] Implementing a DropdownWidget for a country-code vocabulary

2007-09-15 Thread Jesper Petersen
Hello!I'm trying to implement a DropdownWidget for my country list. In my app i'd like to have a dropdown menu where a user can choose a country (for my main content object, a job). My vocabulary is created from a list of strings, and stored in a local utility: SimpleVocabulary.fromValues(

Re: [Zope3-Users] Implementing a DropdownWidget for a country-code vocabulary

2007-09-15 Thread Jesper Petersen
Hello Adam, Great, thanks On 9/15/07, Adam Groszer [EMAIL PROTECTED] wrote: Hello Jesper, That should be solved already. Look for z3c.widget.country. svn://svn.zope.org/repos/main/z3c.widget/trunk/src/z3c/widget/country Saturday, September 15, 2007, 6:08:19 PM, you wrote: Hello!