[Zope-dev] Zope Tests: 3 OK, 3 Failed

2008-12-06 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Fri Dec 5 12:00:00 2008 UTC to Sat Dec 6 12:00:00 2008 UTC. There were 6 messages: 6 from Zope Tests. Test failures - Subject: FAILED (failures=7) : Zope-2.11 Python-2.4.5 : Linux From: Zope Tests Date: Fri Dec 5 20:36:57 EST

[Zope-dev] zope.configuration 3.4.1

2008-12-06 Thread Dan Korostelev
The zope.configuration 3.4.1 was tagged as released two months ago, but it's still not uploaded to PyPI. :-) Can someone upload it? -- WBR, Dan Korostelev ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev ** No

Re: [Zope-dev] z3c.autoinclude doesn't include extra_requires

2008-12-06 Thread Ethan Jucovy
Hey Christian, I finally had a bit of time to sort out my Zope.org SVN credentials and try to look into this ... but I'm actually not getting very far. What I'm stumped on: is there any way to find out which extras have been installed with a package? The details: The bad line is

Re: [Zope] Guestbook example app stops working

2008-12-06 Thread Bernard Devlin
I think I've worked out what is happening. I'm assuming that the index_html is written in ZPT; when edited TTW via the ZMI the expand macros when editing is checked, so I guess the various TAL features are being removed (hence it works until it is saved, and after that the dynamic parts are

Re: [Zope] How manage error with zsql

2008-12-06 Thread robert rottermann
hi, I think you should write in a python script: try: result = context.insert_data.zsql msg = 'data inserted' except ZeroDivisionError: msg = 'ZeroDivisionError occured' return msg and in your tal you write: div tal:content=context/MyPythonscript /div allways try to put

Re: [Zope] How manage error with zsql

2008-12-06 Thread Andreas Jung
*PythonScript at /ceed/finanza/proyecto/error_insertar* *Line 2* Unauthorized: You are not allowed to access 'type' in this context I think this is a know issue and be have a bugreport + patch already for that within the Launchpad bugtracker. However I cant the ticket number

[Zope] Multiple zope instances using the same storage

2008-12-06 Thread Mark Gibson
I have an unusual setup. I have 4 distinct Zope instances (4 seperate Data.fs'). Each Data.fs is identical - Data is kept in a RDBMS. I have a product I need to install that stores data in the ZODB. This data is stored in one folder. Now, I *think* I can simply mount this folder in each

Re: [Zope] How manage error with zsql

2008-12-06 Thread Dieter Maurer
robert rottermann wrote at 2008-12-6 17:15 +0100: I think you should write in a python script: try: result = context.insert_data.zsql I expect (at least) two errors here. context.insert_data() has a chance to work. msg = 'data inserted' except ZeroDivisionError: msg = 'ZeroDivisionError