[Zope-dev] Phrase search in ZCatalog

2001-02-05 Thread Oren Yosifon
I read that ZCatalog supports phrasing. Yet it seems like searching for ['foo bar'] has the results of foo OR bar. How do I search for a phrase (in a TextIndex) ? Oren. ___ Zope-Dev maillist - [EMAIL PROTECTED]

Re: [Zope-dev] Q: Specialists, Racks, and ZCatalogs?

2001-02-05 Thread Johan Carlsson
A Specialist manages objects that play a particular role in your application. You will usually have one Specialist for each role in your application; try listing all the roles, and what they do, and that's a good start for thinking about what specialists you need. Hi Steve, I'm a bit

Re: [Zope-dev] Phrase search in ZCatalog

2001-02-05 Thread Steve Alexander
Oren Yosifon wrote: I read that ZCatalog supports phrasing. Yet it seems like searching for ['foo bar'] has the results of foo OR bar. How do I search for a phrase (in a TextIndex) ? You should use quotes to group the phrase. ['"foo bar"'] Take a look in the source code:

Re: [Zope-dev] I think zope@zope.org is down

2001-02-05 Thread Chris Withers
Dylan Jay wrote: what's more, mesages to it are not bouncing. Yeah, it's still dead :-( Chris ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists -

[Zope-dev] Can't start Zope (Python 2.0 , BSDI 4.0 , Zope 2.3.0b3) = ImportError: cannot import name DateTime

2001-02-05 Thread Emmanuel DISCORS
Hi all, Having this Traceback with Zope 2.3.0 2.3.0b3 Can I do something to start the server ? Thanks. Emmanuel. = bash-2.02$ ./start Traceback (most recent call last): File "/usr/local/apache/htdocs/commercial/advl/zope/Zope-2.3.0-src/z2.py", line 565, in ? exec "import "+MODULE

Re: [Zope-dev] Zope server dies with Netscape's FTP

2001-02-05 Thread Pablo Bleyer Kocik
Stephan Richter wrote: Hey, I am not _that_ silly ;^). I can exit the shell but I leave Zope working in the background, of course. Then all works fine until I do an FTP, which hangs because the server dies. Sorry, I did not mean to offend you No ofenses ;^) I have not

Re: [Zope-dev] Q: Specialists, Racks, and ZCatalogs?

2001-02-05 Thread Steve Alexander
Johan Carlsson wrote: A Specialist manages objects that play a particular role in your application. You will usually have one Specialist for each role in your application; try listing all the roles, and what they do, and that's a good start for thinking about what specialists you need.

Re:Re: [Zope-dev] Phrase search in ZCatalog

2001-02-05 Thread Oren Yosifon
Steve Alexander wrote: You should use quotes to group the phrase. ['"foo bar"'] Take a look in the source code: lib/python/SearchIndex/UnTextIndex.py Follow the flow of code through from line 550: def query( ... ) Hi Steve, Thx. But for some reason this doesn't work on my Win2K/Zope2.3.

Re: [Zope-dev] The field converters (:int, :text, etc.)

2001-02-05 Thread Brad Clements
On 4 Feb 2001, at 15:59, Morten W. Petersen wrote: IIRC, there was some talk about modularizing the field converters (checkers) so that they could be easiliy modified and added to. Is there currently any efforts to solving this problem? If not, there's definently a need for it, IMO.. I

Re: [Zope-dev] The field converters (:int, :text, etc.)

2001-02-05 Thread Chris McDonough
The last time I had to mess around with it, IE didn't pass along any empty form fields at all. Is this still the case? - Original Message - From: "Brad Clements" [EMAIL PROTECTED] To: "Morten W. Petersen" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, February 05, 2001 8:58 AM

Re: [Zope-dev] The field converters (:int, :text, etc.)

2001-02-05 Thread Brad Clements
On 5 Feb 2001, at 9:38, Chris McDonough wrote: The last time I had to mess around with it, IE didn't pass along any empty form fields at all. Is this still the case? Still? I've never seen the behaviour you describe. My client uses IE exclusively. What version of IE did you test? Brad

Re: [Zope-dev] The field converters (:int, :text, etc.)

2001-02-05 Thread Chris McDonough
I don't know, this was about a year ago... maybe I'm misremembering. - Original Message - From: "Brad Clements" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, February 05, 2001 9:37 AM Subject: Re: [Zope-dev] The field converters (:int, :text, etc.) On 5

Re: [Zope-dev] Q: Specialists, Racks, and ZCatalogs?

2001-02-05 Thread Steve Alexander
Johan Carlsson wrote: Also, the Catalysis method puts an emphasis on defining interactions and collaborations between objects in terms of roles. You might want to take a look at that. Is Catalysis method a pattern in Coads book? No. Catalysis is an object oriented analysis and design

Re: [Zope-dev] Q: Specialists, Racks, and ZCatalogs?

2001-02-05 Thread John D. Heintz
Wow, it's fun to hear people talking about Catalysis! Catalysis is an analysis and design methodology that focuses on components and frameworks. It stresses being able to specify component interactions with invariants, pre/post conditions, and supporting graphics. The book, "Objects,

[Zope-dev] CoreSessionTracking stuff

2001-02-05 Thread Andy McKay
More questions on CoreSessionTracking. On on site I wish to persist the information on a session indefinitely so a user can reconnect with those previous session settings. I looked at "External Session Data Container" (ESDC) and had some questions here I go: -Why does an ESDC have a session

[Zope-dev] Debugging Zope

2001-02-05 Thread Andy McKay
For all those who questioned my slip of an email a few weeks ago regarding debugging Zope with Komodo, well its official now. A how to and some screenshots are now available: http://www.zope.org/Members/andym/Komodo. I hope you find it as useful as I do. Cheers. -- Andy McKay.

Re: [Zope-dev] CoreSessionTracking stuff

2001-02-05 Thread Chris McDonough
Hi Andy, -Why does an ESDC have a session timeout in 20 minutes, yet the cookie lifespan can be 30 days. Surely there will be no way to tie a cookie back up to a session since the ESDC will be have had that person nuked, I was sort of hoping I coudl persist the data in the ESDC for a

[Zope-dev] Bug or feature (Zope Factory)

2001-02-05 Thread Andreas Heckel
When I create a ZClass within a product called ZFooClass and I change the 'Add list name' property within it's ZFooClass_factory to 'Z Foo Class' no instance of this class can be pasted. The object [ZFooClass instance] does not support this operation Traceback (innermost last): File

Re: [Zope-dev] CoreSessionTracking stuff

2001-02-05 Thread Andy McKay
A session data object timeout of "0" as set in the session data container means "give me completely persistent session data objects, do not expire them". Set it to this, and set a high cookie timeout. But yes, a better way to do something like this is to use sessioning in combination with a