[Zope-Checkins] SVN: Zope/trunk/test.py Collector #1895: omit 'var' folder from recursive traversal causing trouble

2005-10-02 Thread Andreas Jung
Log message for revision 38713: Collector #1895: omit 'var' folder from recursive traversal causing trouble with DirectoryStorage Changed: U Zope/trunk/test.py -=- Modified: Zope/trunk/test.py === --- Zope/trunk/test.py

[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/ZCatalog/ZCatalogIndexes.py accept also the z3 version of the PluggableIndex interface

2005-10-02 Thread Yvo Schubbe
Log message for revision 38714: accept also the z3 version of the PluggableIndex interface Changed: UU Zope/trunk/lib/python/Products/ZCatalog/ZCatalogIndexes.py -=- Modified: Zope/trunk/lib/python/Products/ZCatalog/ZCatalogIndexes.py

[Zope-Coders] Zope tests: 8 OK

2005-10-02 Thread Zope tests summarizer
Summary of messages to the zope-tests list. Period Sat Oct 1 11:01:01 2005 UTC to Sun Oct 2 11:01:01 2005 UTC. There were 8 messages: 8 from Zope Unit Tests. Tests passed OK --- Subject: OK : Zope-2_6-branch Python-2.1.3 : Linux From: Zope Unit Tests Date: Sat Oct 1 22:22:12 EDT

[Zope] DTML-tree Custom sort

2005-10-02 Thread Alex Renier
Hello, I am trying to do a custom sort. I am using: dtml-tree branches_expr=objectValues(['Folder']) sort=orderInt skip_unauthorized orderInt is an integer property of some folders. I would like the dtml-tree tag to look up the property of the current folder and sort based on the integer value,

Re: [Zope] DTML-tree Custom sort

2005-10-02 Thread Alex Renier
Thanks for your help AJ I get this: Error Type: SyntaxError Error Value: invalid syntax (line 1) dtml-tree branches_expr=[o for o in objectValues(['Folder'] if hasattr('orderInt'))] sort=orderInt skip_unauthorized It doesn't like how I put spaces in objectValues() attributes for if hasattr...

[Zope] Setting up SMF for Apache and Zope on Solaris 10

2005-10-02 Thread Chris Miles
For those running Solaris 10, I have documented a brief walk-through on how to configure Service Management Facility (SMF) for your Apache and Zope instances. This is the new Solaris 10 method of intelligently handling init.d/rc.d service management.

[Zope] Zope 3.1.0 released!

2005-10-02 Thread Stephan Richter
Hello everyone, The Zope 3 development team is proud to announce Zope 3.1.0 final. Zope 3 is the next major Zope release and has been written from scratch based on the latest software design patterns and the experiences of Zope 2. It is in our opinion that Zope 3.1 is more than ready for

Re: [Zope] Plone update

2005-10-02 Thread michael nt milne
[EMAIL PROTECTED] is the list On 10/1/05, Jens Vagelpohl [EMAIL PROTECTED] wrote: On 30 Sep 2005, at 23:49, Michael Kaplan wrote: I'm running Plone 2.0.5 with Zope 2.7.7-final and tried to upgrade to Plone 2.1. A dry-run of portal_migration stopped with errors : I believe this question

Re: [Zope] Plone update

2005-10-02 Thread michael nt milne
sorry [EMAIL PROTECTED], On 10/2/05, michael nt milne [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] is the list On 10/1/05, Jens Vagelpohl [EMAIL PROTECTED] wrote: On 30 Sep 2005, at 23:49, Michael Kaplan wrote: I'm running Plone 2.0.5 with Zope 2.7.7-final and tried to upgrade to

[Zope] Re: DTML-tree Custom sort

2005-10-02 Thread Chris Beaven
Alex Renier wrote: Thanks for your help AJ I get this: Error Type: SyntaxError Error Value: invalid syntax (line 1) dtml-tree branches_expr=[o for o in objectValues(['Folder'] if hasattr('orderInt'))] sort=orderInt skip_unauthorized I think that Andreas meant dtml-tree branches_expr=[o for

Re: [Zope] Re: DTML-tree Custom sort

2005-10-02 Thread Alex Renier
Great thank you both!!! I never knew you could do if-statements like that. --- Chris Beaven [EMAIL PROTECTED] wrote: Alex Renier wrote: Thanks for your help AJ I get this: Error Type: SyntaxError Error Value: invalid syntax (line 1) dtml-tree branches_expr=[o for o in

[Zope] Re: DTML-tree Custom sort

2005-10-02 Thread Chris Beaven
It's really more a cool way to do lists than if statements :) I recommend reading through some of Dive Into Python (http://diveintopython.org/) for lots more cool hands-on tips on Python programming. Chapter 3 for a good overview of the uses of Python's different data types. Alex Renier