Re: [Zope] Re: Zope 2.10.0 released

2006-10-03 Thread Andreas Jung
--On 3. Oktober 2006 15:27:12 + Maurits van Rees <[EMAIL PROTECTED]> wrote: Andreas Jung, on 2006-10-03: Feel free to file a collector issue. Probably better, yes. Done: http://www.zope.org/Collectors/Zope/2201 Possibly this issue is caused by a different umask on my new Linux bo

Re: [Zope] Legacy Perl code and Zope. A pipe dream?

2006-10-03 Thread Josh Burvill
Sorry, just noticed thats already been considered...On 04/10/06, Josh Burvill <[EMAIL PROTECTED]> wrote: there is some info in zopebook 2.6 edition in the advanced scripting chapter: http://www.zope.org/Documentation/Books/ZopeBook/2_6Edition/ScriptingZope.stx where there are some links in this cha

Re: [Zope] Legacy Perl code and Zope. A pipe dream?

2006-10-03 Thread Josh Burvill
there is some info in zopebook 2.6 edition in the advanced scripting chapter:http://www.zope.org/Documentation/Books/ZopeBook/2_6Edition/ScriptingZope.stx where there are some links in this chapter where it mentions "activestate": http://www.zope.org/Members/andym/wiki/FrontPagehttp://downloads.act

Re: [Zope] zope gets killed on startup

2006-10-03 Thread Einar Næss Jensen
On 10/3/06, Dieter Maurer <[EMAIL PROTECTED]> wrote: Einar Næss Jensen wrote at 2006-10-2 21:12 +0200:>the full traceback and the error is this:>>2006-10-02 21:07:15 ERROR BeforeTraverse Error while invoking hook:>"acl_users">Traceback (most recent call last): >  File "/usr/local/zope/zope295/lib /

Re: [Zope] external method: importing and updating method

2006-10-03 Thread Jonathan
- Original Message - From: "Dieter Maurer" <[EMAIL PROTECTED]> To: "Alan" <[EMAIL PROTECTED]> Cc: Sent: Tuesday, October 03, 2006 2:06 PM Subject: Re: [Zope] external method: importing and updating method Alan wrote at 2006-10-2 18:48 +0100: In my external method I have something l

Re: [Zope] Legacy Perl code and Zope. A pipe dream?

2006-10-03 Thread Lennart Regebro
On 10/3/06, Derek Basch <[EMAIL PROTECTED]> wrote: Perhaps refactor wasn't the best choice of words. The site is a very large online gaming website (not gambling). The legacy perl code does many, many things (administration, game play, accounting, message boards, publishing, mail, etc...) and r

Re: [Zope] Legacy Perl code and Zope. A pipe dream?

2006-10-03 Thread Marco Bizzarri
If I can provide any suggestion, take a look at "Refactoring", by Martin Fowler, and start applying the refactorings there provided. This is not, I think a Zope/Perl/Python/PHP issue, but rather a refactoring/migration problem, and it should be explored in that places (just a suggestion, of course

Re: [Zope] Legacy Perl code and Zope. A pipe dream?

2006-10-03 Thread Dieter Maurer
Derek Basch wrote at 2006-10-2 15:22 -0700: >I have about a million lines of Perl code/crap that I would like to refactor >to Zope. Is this even >possible? I think I have seen a Python-Perl adapter (search for such a thing; I will not search for you). If you find one, you may be able to use Perl

Re: [Zope] zope gets killed on startup

2006-10-03 Thread Dieter Maurer
Einar Næss Jensen wrote at 2006-10-2 21:12 +0200: >the full traceback and the error is this: > >2006-10-02 21:07:15 ERROR BeforeTraverse Error while invoking hook: >"acl_users" >Traceback (most recent call last): > File "/usr/local/zope/zope295/lib /python/ZPublisher/BeforeTraverse.py", >line 145,

Re: [Zope] CatalogPatch && PloneSecurityInjector

2006-10-03 Thread Dieter Maurer
Javier Subervi wrote at 2006-10-2 11:46 -0700: >No, it only shows up when I add the CatalogPatch. This tells you that the problem is in "CatalogPatch" ;-) -- Dieter ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** N

Re: [Zope] Unsubscription problems.

2006-10-03 Thread Dieter Maurer
Michael Dexter wrote at 2006-10-2 21:11 +0300: > ... >>Reading helps. Why don't you follow the instructions on the mailman pages >>like ? > >Sorry? I did, hence "and the mailman page" in my original message, as above. > >I must do this at the "zope-de

Re: [Zope] external method: importing and updating method

2006-10-03 Thread Dieter Maurer
Alan wrote at 2006-10-2 18:48 +0100: >In my external method I have something like this: >... >sys.path.insert(0, CCPNPYTHON) This is not a good idea! The source of an "External Method" can be read arbitrarily often -- and each time, you extend "sys.path"... The "imp" module allows you to import

Re: [Zope] Legacy Perl code and Zope. A pipe dream?

2006-10-03 Thread Jonathan
- Original Message - From: "Derek Basch" <[EMAIL PROTECTED]> To: "Jonathan" <[EMAIL PROTECTED]>; Sent: Tuesday, October 03, 2006 1:54 PM Subject: Re: [Zope] Legacy Perl code and Zope. A pipe dream? --- Jonathan <[EMAIL PROTECTED]> wrote: - Original Message - From: "Derek

Re: [Zope] Legacy Perl code and Zope. A pipe dream?

2006-10-03 Thread Derek Basch
--- Jonathan <[EMAIL PROTECTED]> wrote: > > - Original Message - > From: "Derek Basch" <[EMAIL PROTECTED]> > To: "Lennart Regebro" <[EMAIL PROTECTED]>; > Sent: Tuesday, October 03, 2006 1:25 PM > Subject: Re: [Zope] Legacy Perl code and Zope. A pipe dream? > > > > --- Lennart Regebro

Re: [Zope] Legacy Perl code and Zope. A pipe dream?

2006-10-03 Thread Jonathan
- Original Message - From: "Derek Basch" <[EMAIL PROTECTED]> To: "Lennart Regebro" <[EMAIL PROTECTED]>; Sent: Tuesday, October 03, 2006 1:25 PM Subject: Re: [Zope] Legacy Perl code and Zope. A pipe dream? --- Lennart Regebro <[EMAIL PROTECTED]> wrote: On 10/3/06, Derek Basch <[EMA

Re: [Zope] Legacy Perl code and Zope. A pipe dream?

2006-10-03 Thread Derek Basch
--- Lennart Regebro <[EMAIL PROTECTED]> wrote: > On 10/3/06, Derek Basch <[EMAIL PROTECTED]> wrote: > > I have about a million lines of Perl code/crap that I would like to > > refactor to Zope. > > Is this even possible? > > Refactor? No. But it's quite likely that you can redo it quite quickly

Re: [Zope] TimerService/ZopeScheduler runs but doesn't run scripts......

2006-10-03 Thread michaelntmilne
>Well, sure. But if this doesn't work on windows, this should be>clearly stated and documented. If not, it's a bug. :-)Exactly and both ZopeScheduler and TimerService claim to work on Windows. That's the point I was making. Fair enough if it can't be done on a platform but that isn't the case here.

Re: [Zope] TimerService/ZopeScheduler runs but doesn't run scripts......

2006-10-03 Thread Lennart Regebro
On 10/3/06, Andreas Jung <[EMAIL PROTECTED]> wrote: Nonsense. There are always reasons why a software might only certain operating systems - either because on some limitations of the operating systems itself or because of software constraints. Well, sure. But if this doesn't work on windows, th

Re: [Zope] TimerService/ZopeScheduler runs but doesn't run scripts......

2006-10-03 Thread Andreas Jung
--On 3. Oktober 2006 15:32:07 + michaelntmilne <[EMAIL PROTECTED]> wrote: but it *should* work on windows as well. Ok, it's not the ultimate platform but ignoring it or not making sure products work on it undermines the expansion of zope and zope related products Nonsense. There are a

Re: [Zope] TimerService/ZopeScheduler runs but doesn't run scripts......

2006-10-03 Thread michaelntmilne
but it *should* work on windows as well. Ok, it's not the ultimate platform but ignoring it or not making sure products work on it undermines the expansion of zope and zope related products- Original Message From: Chris McDonough <[EMAIL PROTECTED]>To: michaelntmilne <[EMAIL PROTECTED]>Cc:

[Zope] Re: Zope 2.10.0 released

2006-10-03 Thread Maurits van Rees
Andreas Jung, on 2006-10-03: > Feel free to file a collector issue. Probably better, yes. Done: http://www.zope.org/Collectors/Zope/2201 -- Maurits van Rees | http://maurits.vanrees.org/ [NL] Work | http://zestsoftware.nl/ GnuPG key | http://maurits.vanrees.org/var/gpgkey.as

Re: [Zope] Re: Zope 2.10.0 released

2006-10-03 Thread Andreas Jung
--On 3. Oktober 2006 10:50:34 + Maurits van Rees <[EMAIL PROTECTED]> wrote: Maurits van Rees, on 2006-10-03: Andreas Jung, on 2006-10-03: on behalf of Zope developer community I am pleased to announce the release=20 of Zope 2.10.0. You can download Zope 2.10.0 from: http://www.zope

Re: [Zope] Programmatically logging out a user

2006-10-03 Thread Jonathan
We use a 'home-grown' cookie-based authentication process, and when we want to log the user out we over-write the cookie with invalid data and send the user to a 'so long and thanks for all the fish' page.     Jonathan   - Original Message - From: Sinang, Danny To: zope

Re: [Zope] Programmatically logging out a user

2006-10-03 Thread Andrew Milton
+---[ Sinang, Danny ]-- | Hello, | | How do I programmatically log out a user from Zope ? | | I've asked this question before, but was told to : | | 1. Redirect the user to a page that always raises Unauthenticated. See | manage_zmi_logout. | 2. from AccessControl.Secu

[Zope] Programmatically logging out a user

2006-10-03 Thread Sinang, Danny
Hello,   How do I programmatically log out a user from Zope ?   I've asked this question before, but was told to :   1. Redirect the user to a page that always raises Unauthenticated. Seemanage_zmi_logout. 2. from AccessControl.SecurityManagement import noSecurityManagernoSecurityManager()

Re: [Zope] Proposal System

2006-10-03 Thread Andreas Jung
--On 3. Oktober 2006 04:34:49 -0700 wekoweko <[EMAIL PROTECTED]> wrote: Hi, has anyone ever implemented a pdf generating/creating proposal system in Zope? (i.e. creates a pdf that is customized and editable). Mostly just manipulating a pdf in Zope, if anyone has any recommendations or suggest

[Zope] Proposal System

2006-10-03 Thread wekoweko
Hi, has anyone ever implemented a pdf generating/creating proposal system in Zope? (i.e. creates a pdf that is customized and editable). Mostly just manipulating a pdf in Zope, if anyone has any recommendations or suggestions, please post, thanks. -- View this message in context: http://www.nabb

[Zope] Re: Zope 2.10.0 released

2006-10-03 Thread Maurits van Rees
Maurits van Rees, on 2006-10-03: > Andreas Jung, on 2006-10-03: >> on behalf of Zope developer community I am pleased to announce the release=20 >> of Zope 2.10.0. >> >> You can download Zope 2.10.0 from: >> >> http://www.zope.org/Products/Zope/2.10.0/ > > Great, thanks! > > First problem that I

[Zope] Re: Zope 2.10.0 released

2006-10-03 Thread Maurits van Rees
Andreas Jung, on 2006-10-03: > on behalf of Zope developer community I am pleased to announce the release=20 > of Zope 2.10.0. > > You can download Zope 2.10.0 from: > > http://www.zope.org/Products/Zope/2.10.0/ Great, thanks! First problem that I see, which has happened before in some Zope tar

Re: [Zope] delete latest transactions

2006-10-03 Thread Einar Næss Jensen
On 10/2/06, Stefan H. Holek <[EMAIL PROTECTED]> wrote: http://www.zope.org/Members/itamar/CorruptedZODBStefanGreat! It worked. I deleted the latest transactions and my zope  is no longer on dope. Related: Is it safe to only delete the transactions I want, or do I have to truncate the Data.fs file,

Re: [Zope] Legacy Perl code and Zope. A pipe dream?

2006-10-03 Thread Lennart Regebro
On 10/3/06, Derek Basch <[EMAIL PROTECTED]> wrote: I have about a million lines of Perl code/crap that I would like to refactor to Zope. Is this even possible? Refactor? No. But it's quite likely that you can redo it quite quickly with Zope thanks to all the third-party products. What does yo

[Zope] Zope 2.10.0 released

2006-10-03 Thread Andreas Jung
Hi all, on behalf of Zope developer community I am pleased to announce the release of Zope 2.10.0. You can download Zope 2.10.0 from: http://www.zope.org/Products/Zope/2.10.0/ Some new features of Zope 2.10: - ZPT implementation based on Zope 3 - experimental WSGI and Twisted integrat