[Zope-dev] Re: Moving the Zope (2) collector to launchpad.

2007-09-28 Thread Simon Michael
This is great, thanks! ___ 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

[Zope-dev] Zope Tests: 4 OK, 1 Failed

2007-09-28 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Thu Sep 27 12:00:00 2007 UTC to Fri Sep 28 12:00:00 2007 UTC. There were 5 messages: 5 from Zope Unit Tests. Test failures - Subject: FAILED (failures=1) : Zope-2.10 Python-2.4.4 : Linux From: Zope Unit Tests Date: Thu Sep 27

Re: [Zope] Re: mysqluserfolder access blown - work lost?

2007-09-28 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ben Bartrum wrote: Thanks, I have done that and can log in as emergency, but then I'm still in the same situation: I cannot enter that folder. The traceback below is what I get when I try (from the ZMI): Site Error An error was encountered

Re: [Zope] How do i test sequence-number

2007-09-28 Thread Andrew Milton
+---[ kamal hamzat ]-- | Please what is wrong with this code: [snip] | dtml-if expr=dtml-var sequence-number = 5 You don't next dtml tags inside dtml tags. -- Andrew Milton [EMAIL PROTECTED] ___ Zope maillist -

[Zope] How do i test sequence-number

2007-09-28 Thread kamal hamzat
Please what is wrong with this code: dtml-in newsSummary dtml-var sequence-number dtml-if expr=dtml-var sequence-number = 5 a href=dtml-absolute_url; dtml-var title/abr / brbrdtml-var author dtml-var summarybrbr /dtml-if /dtml-in This the error i got invalid syntax (, line 1) Thanks

Re: [Zope3-dev] Re: [Zope] Static Zope 3 APIDOC available!

2007-09-28 Thread David Pratt
Very nice. Many thanks for this. Regards, David Baiju M wrote: Stephan Richter wrote: Hi everyone, I am happy to announce that the second Foliage sprint task is completed. Julian Bonilla, Graham Stratton and I worked on the outstanding issues on creating a functional version of the

Re: [Zope] How do i test sequence-number

2007-09-28 Thread Andreas Jung
--On 28. September 2007 16:21:17 +0100 kamal hamzat [EMAIL PROTECTED] wrote: dtml-if expr=dtml-var sequence-number = 5 You can't nest DTML statements...Why don't you use ZPT? -aj pgpeZ7ys0dqMS.pgp Description: PGP signature ___ Zope maillist

Re: [Zope] how do I test for the current item in an iteration

2007-09-28 Thread Andreas Jung
--On 28. September 2007 16:36:43 +0100 kamal hamzat [EMAIL PROTECTED] wrote: Dear All, I have this error after i added the if statement Error Type: TypeError Error Value: mybrains.__cmp__(x,y) requires y to be a 'mybrains', not a 'int' for i in context.zCatNewsCurrent(): if i = 5:

[Zope] how do I test for the current item in an iteration

2007-09-28 Thread kamal hamzat
Dear All, I have this error after i added the if statement Error Type: TypeError Error Value: mybrains.__cmp__(x,y) requires y to be a 'mybrains', not a 'int' for i in context.zCatNewsCurrent(): if i = 5: print %s: %s: %s % (i.id, i.author, i.summary) return printed

Re: [Zope] From DTML to ZPT i need help

2007-09-28 Thread Andreas Jung
--On 28. September 2007 15:55:29 +0100 kamal hamzat [EMAIL PROTECTED] wrote: I have been having issue converting this code in DTML to ZPT. dtml-in news.zCatNewsCurrent() dtml-let article=absolute_url dtml-if expr=_.int(article[46:48]) 5 div a href=dtml-var expr=article[0:48]

Re: [Zope] From DTML to ZPT i need help

2007-09-28 Thread Andrew Milton
+---[ kamal hamzat ]-- | I have been having issue converting this code in DTML to ZPT. | | | dtml-in news.zCatNewsCurrent() | dtml-let article=absolute_url | dtml-if expr=_.int(article[46:48]) 5 | div a href=dtml-var expr=article[0:48] class=link3 |

[Zope] From DTML to ZPT i need help

2007-09-28 Thread kamal hamzat
I have been having issue converting this code in DTML to ZPT. dtml-in news.zCatNewsCurrent() dtml-let article=absolute_url dtml-if expr=_.int(article[46:48]) 5 div a href=dtml-var expr=article[0:48] class=link3 dtml-var title /adtml-var author br

[Zope] Re: mysqluserfolder access blown - work lost?

2007-09-28 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ben Bartrum wrote: Thanks, but I am logged in as the most powerful user and cannot enter the folder in order to add a regular user folder to it. The 'emergency user' is not a normal 'Manager' account: it is designed only to allow for recovery in

Re: [Zope] how do I test for the current item in an iteration

2007-09-28 Thread Andrew Milton
+---[ kamal hamzat ]-- | Dear All, | | I have this error after i added the if statement Time for you to do some reading of your own. That's three in less than an hour... -- Andrew Milton [EMAIL PROTECTED] ___ Zope maillist -

Re: [Zope] Re: mysqluserfolder access blown - work lost?

2007-09-28 Thread Ben Bartrum
-Original Message- From: [EMAIL PROTECTED] Sent: Fri, 28 Sep 2007 09:07:43 -0400 Hmm, at this point I would be trying one of two things: - You might try undoing the transactions where you added / configureed the user folder. Embarrassingly, I haven't tried this before. I

[Zope] Re: Static Zope 3 APIDOC available!

2007-09-28 Thread Simon Michael
Great work!! Here are some things I think would make it even better: - a last updated timestamp - a zope version string - automatic updating, eg nightly - apidoc.z.o - api.z.o Thanks a lot. -Simon ___ Zope maillist - Zope@zope.org

[Zope] Re: Static Zope 3 APIDOC available!

2007-09-28 Thread Simon Michael
PS and, a Zope 2 version! I assume that's hard though. ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce

Re: [Zope] Static Zope 3 APIDOC available!

2007-09-28 Thread Baiju M
Stephan Richter wrote: Hi everyone, I am happy to announce that the second Foliage sprint task is completed. Julian Bonilla, Graham Stratton and I worked on the outstanding issues on creating a functional version of the APIDOC, which comes with Zope. Thanks to Jens Vagelpohl, the static

[Zope] mysqluserfolder access blown - work lost?

2007-09-28 Thread Ben Bartrum
Hello I have added mysqlUserFolder to a folder that contained a lot of work I have done. I may not have entered the database connection parameters correctly (it was late). The upshot is that I can now not access anything in that folder. Removing the mysqlUserFolder product doesn't help.

Re: [Zope] mysqluserfolder access blown - work lost?

2007-09-28 Thread Andrew Milton
+---[ Ben Bartrum ]-- | Hello | | I have added mysqlUserFolder to a folder that contained a lot of work I have done. The data should all still be there, but, in accessible due to permissions. Try logging in as the emergency user, and adding a regular user folder to

Re: [Zope] mysqluserfolder access blown - work lost?

2007-09-28 Thread Ben Bartrum
Thanks, but I am logged in as the most powerful user and cannot enter the folder in order to add a regular user folder to it. -Original Message- From: [EMAIL PROTECTED] Sent: Fri, 28 Sep 2007 19:40:20 +1000 To: [EMAIL PROTECTED] Subject: Re: [Zope] mysqluserfolder access blown -

[Zope] Re: Zope is in trouble

2007-09-28 Thread Philipp von Weitershausen
Gregory Dudek wrote: A key factor is that from the zope.org web site it is not clear if the community is healthy or not, and the general impression is that the project is stalled since so many links are dead and defunct (and in fact I am not so sure of the zope community health myself any

[Zope] Static Zope 3 APIDOC available!

2007-09-28 Thread Stephan Richter
Hi everyone, I am happy to announce that the second Foliage sprint task is completed. Julian Bonilla, Graham Stratton and I worked on the outstanding issues on creating a functional version of the APIDOC, which comes with Zope. Thanks to Jens Vagelpohl, the static APIDOC is now available at:

Re: [Zope] From DTML to ZPT i need help

2007-09-28 Thread Dieter Maurer
Andrew Milton wrote at 2007-9-29 01:01 +1000: ... Try this as a starting point, not guaranteed to be pretty or correct. div tal:repeat=item news/zCatNewsCurrent tal:define=article item/absolute-url Be careful: tal:define is evaluated before tal:repeat (independent of the textual appearance as

Re: [Zope] how do I test for the current item in an iteration

2007-09-28 Thread Dieter Maurer
kamal hamzat wrote at 2007-9-28 16:36 +0100: I have this error after i added the if statement Error Type: TypeError Error Value: mybrains.__cmp__(x,y) requires y to be a 'mybrains', not a 'int' for i in context.zCatNewsCurrent(): if i = 5: print %s: %s: %s % (i.id, i.author,

Re: [Zope] From DTML to ZPT i need help

2007-09-28 Thread Andrew Milton
+---[ Dieter Maurer ]-- | Andrew Milton wrote at 2007-9-29 01:01 +1000: | ... | Try this as a starting point, not guaranteed to be pretty or correct. | | div tal:repeat=item news/zCatNewsCurrent tal:define=article item/absolute-url | | Be careful: tal:define is

[Zope] tunneling via ...

2007-09-28 Thread David Bear
I am in a situation will I may soon need to outsource the running of my apache server. This may be a good thing. However, I cannot outsource the running of my zope server. So I have the situation where apache will be running on a separate box from my zope server and I am wondering how to make sure

Re: [Zope] tunneling via ...

2007-09-28 Thread Jaroslav Lukesh
- Original Message - From: David Bear [EMAIL PROTECTED] APACHE HOST -- ZOPE HOST I need to secure the connection between these two hosts. use ssh tunnell JL. ___ Zope maillist - Zope@zope.org

Re: [Zope] tunneling via ...

2007-09-28 Thread Bill Campbell
On Fri, Sep 28, 2007, David Bear wrote: I am in a situation will I may soon need to outsource the running of my apache server. This may be a good thing. However, I cannot outsource the running of my zope server. So I have the situation where apache will be running on a separate box from my zope