[Zope-Annce] FunkLoad 1.3.0 and 1.3.1 are out

2005-11-10 Thread Stefane Fermigier
FunkLoad 1.3.0 and 1.3.1 (which fixed a bug in the previous release) are out. FunkLoad 1.3.0 introduces a new http-proxy based recorder for user sessions. It also fixes a couple of outstanding bugs. Grab FunkLoad 1.3.1 on: http://funkload.nuxeo.org/ About FunkLoad: FunkLoad is a open source

[Zope-Checkins] SVN: Zope/branches/efge-five-events-work/lib/python/OFS/subscribers.py Move code around a bit.

2005-11-10 Thread Florent Guillaume
Log message for revision 40024: Move code around a bit. Changed: U Zope/branches/efge-five-events-work/lib/python/OFS/subscribers.py -=- Modified: Zope/branches/efge-five-events-work/lib/python/OFS/subscribers.py === ---

[Zope-Checkins] SVN: Zope/branches/efge-five-events-work/ Banch has been merged.

2005-11-10 Thread Florent Guillaume
Log message for revision 40031: Banch has been merged. Changed: D Zope/branches/efge-five-events-work/ -=- ___ Zope-Checkins maillist - Zope-Checkins@zope.org http://mail.zope.org/mailman/listinfo/zope-checkins

[Zope-Coders] Zope tests: 6 OK, 1 Failed

2005-11-10 Thread Zope tests summarizer
Summary of messages to the zope-tests list. Period Wed Nov 9 12:01:01 2005 UTC to Thu Nov 10 12:01:01 2005 UTC. There were 7 messages: 7 from Zope Unit Tests. Test failures - Subject: FAILED : Zope-trunk Python-2.4.2 : Linux From: Zope Unit Tests Date: Wed Nov 9 22:11:12 EST 2005

[Zope-dev] 'NoneType' has no attribute 'lower'

2005-11-10 Thread Larry Lay
when sorting using ...tal:repeat subsection python:sequence.sort(subsections,(('title','nocase','asc'),)) I get the following error: Module DocumentTemplate.sequence.SortEx, line 134 in nocase AttributeError: 'NoneType' has no attribute 'lower' When I switch the 'nocase' to 'cmp' the sort

[Zope-dev] Re: 'NoneType' has no attribute 'lower'

2005-11-10 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Larry Lay wrote: when sorting using ...tal:repeat subsection python:sequence.sort(subsections,(('title','nocase','asc'),)) I get the following error: Module DocumentTemplate.sequence.SortEx, line 134 in nocase AttributeError: 'NoneType' has

[Zope-dev] buildbot failure in Zope trunk 2.4 Linux zc-buildbot

2005-11-10 Thread buildbot
The Buildbot has detected a failed build of Zope trunk 2.4 Linux zc-buildbot. Buildbot URL: http://buildbot.zope.org/ Build Reason: changes Build Source Stamp: 1473 Blamelist: efge,fdrake,jim,rykomats,srichter,tseaver BUILD FAILED: failed test sincerely, -The Buildbot

Re: [Zope] help with url rewriting

2005-11-10 Thread Sascha Welter
(Wed, Nov 09, 2005 at 10:41:32AM -0500) [EMAIL PROTECTED] wrote/schrieb/egrapse: From: Faheem Mitha [EMAIL PROTECTED] ... I running Apache 2.0 and Zope 2.7 on Debian Sarge. I've configured a zope (Plone) instance located /var/lib/zope2.7/instance/dulci. This can be accessed via

[Zope] Zope 2.8.4 install issue

2005-11-10 Thread Jonathan Cleaver
Hi all, I am having far more trouble than I should be installing Zope 2.8.4 onto a WinXP machine. After unpacking and installing as per the default settings, when I create an instance and run C:\INSTANCEDIR\bin\runzope.bat I get ImportError: No module named components.logger in the

[Zope] AttributeError: 'NoneType' object has no attribute 'lower'

2005-11-10 Thread Larry Lay
when sorting using ...tal:repeat subsection python:sequence.sort(subsections,(('title','nocase','asc'),))I get the following error: Module DocumentTemplate.sequence.SortEx, line 134 in nocase AttributeError: 'NoneType' object has no attribute 'lower' When I switch the 'nocase' to 'cmp' the sort

Re: [Zope] AttributeError: 'NoneType' object has no attribute 'lower'

2005-11-10 Thread Peter Bengtsson
I suspect that one item in your 'subsections' variable is None. Try:tal:repeat subsection python:sequence.sort([x for x in subsections if not None],(('title','nocase','asc'),)) On 11/10/05, Larry Lay [EMAIL PROTECTED] wrote: when sorting using ...tal:repeat subsection

Re: [Zope] AttributeError: 'NoneType' object has no attribute 'lower'

2005-11-10 Thread Larry Lay
I found no empty titles. Any other ideas? On 11/10/05, Peter Bengtsson [EMAIL PROTECTED] wrote: I suspect that one item in your 'subsections' variable is None.Try:tal:repeat subsection python:sequence.sort ([x for x in subsectionsif not None],(('title','nocase','asc'),))On 11/10/05, Larry Lay

Re: [Zope] AttributeError: 'NoneType' object has no attribute 'lower'

2005-11-10 Thread Larry Lay
It appears that Zope/Plone is not seeing anything in 'title'. I can put 'blahblah' in the code and get the same error. On 11/10/05, Larry Lay [EMAIL PROTECTED] wrote: I found no empty titles. Any other ideas? On 11/10/05, Peter Bengtsson [EMAIL PROTECTED] wrote: I suspect that one item in your

[Zope] msSql and python

2005-11-10 Thread Kate Legere
I have a zsql method to which I want to pass and argument. Normally I do it from a dtml method and the use something like this to test for equality. WHERE description = dtml-sqlvar description type=string. However, I'm passing the variable from a python script and it won't accept the dtml

Re: [Zope] msSql and python

2005-11-10 Thread Floyd May
You can pass arguments to ZSQL Methods. In this particular case, I assume that you don't want the WHERE clause in the query if the 'description' parameter is not passed? You can do it like this (inside the query): --8 dtml-if description WHERE description =

Re: [Zope] AttributeError: 'NoneType' object has no attribute 'lower'

2005-11-10 Thread Peter Bengtsson
Just do a br tal:replace=subsections / and let us know what it returns. On 11/10/05, Larry Lay [EMAIL PROTECTED] wrote: I found no empty titles. Any other ideas? On 11/10/05, Peter Bengtsson [EMAIL PROTECTED] wrote: I suspect that one item in your 'subsections' variable is None.

RE: [Zope] msSql and python

2005-11-10 Thread Kate Legere
That was it exactly - I didn't have the right python syntax but had thought the mistake was in the zsql. Thanks! Kate -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Floyd May Sent: Thursday, November 10, 2005 12:04 PM To: Zope Subject: Re: [Zope] msSql

Re: [Zope] help with url rewriting

2005-11-10 Thread Faheem Mitha
On Wed, 9 Nov 2005, Chris Withers wrote: Faheem Mitha wrote: the log says [Wed Nov 09 03:30:26 2005] [error] [client ...] client denied by server configuration: This means you likely need to find something else in your apache.conf that's causing this problem... RewriteRule

[Zope] Re: Zope 2.8.4 install issue

2005-11-10 Thread Alexander Limi
On Thu, 10 Nov 2005 05:29:20 -0800, Jonathan Cleaver [EMAIL PROTECTED] wrote: The machine already has another working Zope elsewhere, sat underneath Plone 2.05. Not related to your problem directly as far as I can see (you didn't say whether you were just installing Zope straight, or

Re: [Zope] AttributeError: 'NoneType' object has no attribute 'lower'

2005-11-10 Thread Gabriel Genellina
At Thursday 10/11/2005 12:08, Larry Lay wrote: I found no empty titles. Any other ideas? On 11/10/05, Peter Bengtsson mailto:[EMAIL PROTECTED][EMAIL PROTECTED] wrote: I suspect that one item in your 'subsections' variable is None. Try:tal:repeat subsection python:sequence.sort ([x for x in

[Zope-DB] Get the name of the database

2005-11-10 Thread Jochen Knuth
Hi, is there a way to get the name of the database from a database connection object? ciao, Jochen -- -- Jochen Knuth WebMaster http://www.ipro.de IPRO GmbH Phone ++49-7152-93330 Steinbeisstr. 6 Fax ++49-7152-933340

Re: [Zope-DB] Get the name of the database

2005-11-10 Thread Andreas Jung
--On 10. November 2005 13:59:41 +0100 Jochen Knuth [EMAIL PROTECTED] wrote: Hi, is there a way to get the name of the database from a database connection object? Connection settings are stored specific to implementation of every DA. You have to look the sources of your DA how it stores

[Zope-DB] related to Plone+Zope+MySQL

2005-11-10 Thread -bhavana -
Dear all, i have connection with MySQL from Zope and Plone and i create search from Zope and Plone too. But i cant search from the portlet that is in Plone interface to MySQL database. Please help me out of this... thankx in advance bh ___ Zope-DB

Re: [Zope-DB] related to Plone+Zope+MySQL

2005-11-10 Thread Andreas Jung
--On 11. November 2005 14:27:49 +0700 -bhavana - [EMAIL PROTECTED] wrote: Dear all, i have connection with MySQL from Zope and Plone and i create search from Zope and Plone too. But i cant search from the portlet that is in Plone interface to MySQL database. Please help me out of this...