RE: [Zope] TextIndexNG3 clears on restart?

2005-12-09 Thread Dan Pozmanter
[mailto:[EMAIL PROTECTED] Sent: Friday, December 09, 2005 12:30 AM To: Dan Pozmanter; Andreas Jung; zope@zope.org Subject: RE: [Zope] TextIndexNG3 clears on restart? --On 8. Dezember 2005 16:25:16 -0500 Dan Pozmanter <[EMAIL PROTECTED]> wrote: > Changing the storage from default to term_freq

RE: [Zope] TextIndexNG3 clears on restart?

2005-12-08 Thread Dan Pozmanter
Changing the storage from default to term_frequencies seems to fix the problem. ___ Daniel Pozmanter Siteworx, Inc. "Festina Lente" - Gaius Julius -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dan Pozmanter Sent: Thursday, D

RE: [Zope] TextIndexNG3 clears on restart?

2005-12-08 Thread Dan Pozmanter
t;Festina Lente" - Gaius Julius -Original Message- From: Andreas Jung [mailto:[EMAIL PROTECTED] Sent: Thursday, December 08, 2005 3:43 PM To: Dan Pozmanter; zope@zope.org Subject: Re: [Zope] TextIndexNG3 clears on restart? --On 8. Dezember 2005 15:40:10 -0500 Dan Pozmanter <[

RE: [Zope] TextIndexNG3 clears on restart?

2005-12-08 Thread Dan Pozmanter
Jung [mailto:[EMAIL PROTECTED] Sent: Thursday, December 08, 2005 3:43 PM To: Dan Pozmanter; zope@zope.org Subject: Re: [Zope] TextIndexNG3 clears on restart? --On 8. Dezember 2005 15:40:10 -0500 Dan Pozmanter <[EMAIL PROTECTED]> wrote: > Is this a known issue? > Any TextIndexNG3

[Zope] TextIndexNG3 clears on restart?

2005-12-08 Thread Dan Pozmanter
Is this a known issue? Any TextIndexNG3 indexes I create clear on restart, and do not repopulate. ___   Daniel PozmanterSiteworx, Inc.   "Festina Lente" - Gaius Julius   ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/

RE: [Zope] TextIndexNG (2/3) and Zope2.8

2005-12-07 Thread Dan Pozmanter
-Original Message-From: Andreas Jung [mailto:[EMAIL PROTECTED]]Sent: Wednesday, December 07, 2005 2:03 PMTo: Dan Pozmanter; Andreas Jung; zope@zope.orgSubject: RE: [Zope] TextIndexNG (2/3) and Zope2.8--On 7. Dezember 2005 13:51:14 -0500 Dan Pozmanter <[EMAIL PROTECTED]>

RE: [Zope] TextIndexNG (2/3) and Zope2.8

2005-12-07 Thread Dan Pozmanter
-Original Message-From: Andreas Jung [mailto:[EMAIL PROTECTED]]Sent: Wednesday, December 07, 2005 1:04 PMTo: Dan Pozmanter; zope@zope.orgSubject: Re: [Zope] TextIndexNG (2/3) and Zope2.8--On 7. Dezember 2005 12:56:41 -0500 Dan Pozmanter <[EMAIL PROTECTED]> wrote:> G

[Zope] TextIndexNG (2/3) and Zope2.8

2005-12-07 Thread Dan Pozmanter
Great sirs/madames of Zope,     I am attempting to use TextIndexNG on Zope2.8 (No Plone, No CMF). TextIndexNG2 has suddenly stopped working (it was fine on 2.7), and indexes will display 'n/a' rather than a count. TextIndexNG3:     When trying to start zope: File "C:\Program Files\Zope-2.

RE: [Zope] Silly question

2005-06-02 Thread Dan Pozmanter
m: Chris McDonough [mailto:[EMAIL PROTECTED] Sent: Thursday, June 02, 2005 4:15 PM To: Dan Pozmanter Cc: zope@zope.org Subject: Re: [Zope] Silly question The DWIM of not disallowing traversal of underscore names is useful (because it makes it easy to conventionally mark attrs as private) but it

[Zope] Silly question

2005-06-02 Thread Dan Pozmanter
Wouldn't it be cool if instead of checking explicitly for a leading '_' during traversal, you ran a method "isTraversable" (On SimpleItem for instance), which by default just checks for a leading '_', but could be overridden in a particular class?   Dan _

[Zope] Open Source Announcement Question

2005-05-25 Thread Dan Pozmanter
Hey all,      Where is the best place to host/announce a new open source zope product (or zope related app)? I'm used to using sf, but there a prefered site or mechanism?   Dan ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listin

RE: [Zope] Re: Modifying __bases__

2005-05-25 Thread Dan Pozmanter
n Fri, May 20, 2005 at 05:10:30PM -0400, Dan Pozmanter wrote: | Out of curiosity, I've noticed the word "evil" attached to patching of | various and monkey kinds. Not "bad", or "unwise", but "evil", | implying a morality associated with the act. I think i

RE: [Zope] Underscoring Inaugural Address

2005-05-24 Thread Dan Pozmanter
ay, May 24, 2005 8:46 AM To: Dan Pozmanter Cc: Paul Winkler; zope@zope.org Subject: Re: [Zope] Underscoring Inaugural Address Dan Pozmanter wrote: > Is sort of do, since the final object is a wrapper around a unique path. > > What about messing aroound with the url? > > Is th

RE: [Zope] Modifying __bases__

2005-05-20 Thread Dan Pozmanter
to achieve desired functionality? The idea is "I want to modify the zope core in a way that survives version to version, yet does not impose a specific use case on all zope users". -Original Message- From: Tino Wildenhain [mailto:[EMAIL PROTECTED] Sent: Friday, May 20, 2005 2:

RE: [Zope] Modifying __bases__

2005-05-20 Thread Dan Pozmanter
the __bases__ hack with Zope 2.8 (as long as Python 2.3+ allows you to assign to it), as it reimplements ExtensionClass using metaclasses instead of custom C hackery. On Fri, 2005-05-20 at 14:46 -0400, Paul Winkler wrote: > On Fri, May 20, 2005 at 01:48:46PM -0400, Dan Pozmanter wrote: > &g

RE: [Zope] Modifying __bases__

2005-05-20 Thread Dan Pozmanter
unchanged.) What I aim to do is have the User Object inherit from a custom class (AlienUser). -Original Message- From: Andreas Jung [mailto:[EMAIL PROTECTED] Sent: Friday, May 20, 2005 12:46 PM To: Dan Pozmanter; zope@zope.org Subject: Re: [Zope] Modifying __bases__ --On Freitag, 20. Mai

[Zope] Modifying __bases__

2005-05-20 Thread Dan Pozmanter
Hey,       I noticed that the version of python that ships with zope is restricted, such that when you create an instance of a class, you are no longer able to modify __bases__ for that class object.       This is not the case with standard python.       Is this intentional?  If so, what i

RE: [Zope] dtml-sendmail with a tab

2005-05-19 Thread Dan Pozmanter
Either he wants to charge the recipient, or he Just wants to send an e-mail from a zmi tab. If its something like the latter, this: http://www.zope.org/Documentation/Guides/DTML-HTML/DTML.16.html may help. -Dan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Beha

RE: [Zope] Seeking advice on Zope implementation

2005-05-18 Thread Dan Pozmanter
ent: Tuesday, May 17, 2005 7:11 PM To: Dan Pozmanter Cc: zope@zope.org; pythonic Subject: Re: [Zope] Seeking advice on Zope implementation On Tuesday 17 May 2005 18:25, Dan Pozmanter wrote: > "In Zope 3 you can turn off as many unwanted features as you like" > > That sounds reall

RE: [Zope] Seeking advice on Zope implementation

2005-05-17 Thread Dan Pozmanter
"In Zope 3 you can turn off as many unwanted features as you like" That sounds really cool. How so? (Is there a tentative list of all zope 3 services? Do you need to run all of them?) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stephan Richter Sen

RE: [Zope] Underscoring Inaugural Address

2005-05-12 Thread Dan Pozmanter
] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Winkler Sent: Wednesday, May 11, 2005 3:56 PM To: zope@zope.org Subject: Re: [Zope] Underscoring Inaugural Address On Wed, May 11, 2005 at 03:50:00PM -0400, Dan Pozmanter wrote: > Ugh. I suppose I could ignore the '_' bit

RE: [Zope] Underscoring Inaugural Address

2005-05-11 Thread Dan Pozmanter
naugural Address On Wed, May 11, 2005 at 03:00:02PM -0400, Dan Pozmanter wrote: > Hello there Zopatistas, > >In my inaugural post, I should like to enquire about getting to a > url like so: > http://myzopeserver.something.clever/a/path/to/a/file/named/__init__.p > y >

[Zope] Underscoring Inaugural Address

2005-05-11 Thread Dan Pozmanter
Hello there Zopatistas,      In my inaugural post, I should like to enquire about getting to a url like so: http://myzopeserver.something.clever/a/path/to/a/file/named/__init__.py   Getting to the object "__init__.py" is difficult (it acts like it doesn't exist.)   Is there a way to muck a