[Zope-dev] Zope Tests: 5 OK

2007-06-08 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Thu Jun 7 12:00:00 2007 UTC to Fri Jun 8 12:00:00 2007 UTC. There were 5 messages: 5 from Zope Unit Tests. Tests passed OK --- Subject: OK : Zope-2.7 Python-2.3.6 : Linux From: Zope Unit Tests Date: Thu Jun 7 20:50:03 EDT 2007

[Zope] Re: Problem Augmented assignment

2007-06-08 Thread julian
I have resolve my problem. It's very odd. It's the place of the operator... query = Eq('portal_type', 'J_Product') query = Eq('review_state', 'published') I replace this by : query = query Eq('portal_type', 'J_Product') query = query Eq('review_state', 'published') It's work :)

[Zope] zope cgi

2007-06-08 Thread sergio diaz
Hello, I want to use cgi under zope. I saw a zope product called zcgi but I don't know how run this. Ihave added the product but now I don't know how to work with it. ¿Anybody know how to work with this product? or ¿There are other zope product or other thing that I can use? best

Re: [Zope] zope cgi

2007-06-08 Thread Andreas Jung
--On 8. Juni 2007 20:19:10 +0200 sergio diaz [EMAIL PROTECTED] wrote: Hello, I want to use cgi under zope. I saw a zope product called zcgi but I don't know how run this. I have added the product but now I don't know how to work with it. Welcome in the stoneage. Running Zope behind

Re: [Zope] Re: Problem Augmented assignment

2007-06-08 Thread Dieter Maurer
julian wrote at 2007-6-4 10:34 +0200: The event.log ... Module None, line 8, in getProduct - PythonScript at /SITES/my_site/directory1/sub_directory1/getProduct - Line 8 Module AccessControl.ZopeGuards, line 478, in protected_inplacevar TypeError: Augmented assignment to And objects

Re: [Zope] transfer zope security-properties

2007-06-08 Thread Dieter Maurer
Einar Næss Jensen wrote at 2007-6-4 19:53 +0200: ... How can I copy the associated securityinformation about a zclass instance into my new diskbased instance? Roles and permissions. In a product, permissions are automatically created by using them (to protect a method). What roles do you have

RE: [Zope] zope cgi

2007-06-08 Thread Doyon, Jean-Francois
If what you mean is you want to be able to execute HTTP requests to other CGI's or run system commands, then this isn't Zope specific. Look in the Python standard library chapter 6.1.5 Process Management, or 11.5 urllib2 extensible library for opening URLs. Beyond that, you WILL need to write

Re: [Zope] zope cgi

2007-06-08 Thread sergio diaz
Hello, I want to use cgi because I have to do a Grid Portal. I want to use Zope for the web interfaceand thenconect Zope with cgi for execute system command and call to binary programs. Could I do itwith mod_proxy? Can you recommend me any manual forconfigure mod_proxy with zope? best regards

Re: [Zope] zope cgi

2007-06-08 Thread Andreas Jung
--On 8. Juni 2007 20:48:49 +0200 sergio diaz [EMAIL PROTECTED] wrote: Hello, I want to use cgi because I have to do a Grid Portal. I want to use Zope for the web interface and then conect Zope with cgi for execute system command and call to binary programs. Could I do it with mod_proxy?

RE: [Zope] zope cgi

2007-06-08 Thread sergio diaz
Hello, I am trying execute binary programs from zope. Once I achieve it, Iwill can execute binary programs forsend jobs into the Grid throght DRMAA binary programs that ittiewith GridWay. After that, GridWay tie with Globus but I don't want toconect with Globus directly. I will go to see the

Re: [Zope] zope cgi

2007-06-08 Thread Andrew Milton
+---[ Andreas Jung ]-- | | | --On 8. Juni 2007 21:11:09 +0200 sergio diaz [EMAIL PROTECTED] wrote: | | | | Hello, | | I am trying execute binary programs from zope. Once I achieve it, I will | can execute binary programs for send jobs into the Grid throght DRMAA |

RE: [Zope] zope cgi

2007-06-08 Thread Andreas Jung
--On 8. Juni 2007 21:11:09 +0200 sergio diaz [EMAIL PROTECTED] wrote: Hello, I am trying execute binary programs from zope. Once I achieve it, I will can execute binary programs for send jobs into the Grid throght DRMAA binary programs that it tie with GridWay. After that, GridWay tie with

RE: [Zope] zope cgi

2007-06-08 Thread Doyon, Jean-Francois
OK, so use popen() or system() or the commands module as someone suggested. This is all python stuff that has nothing to do with Zope though. The Virtual Hosting stuff doesn't apply to your question. J.F. From: sergio diaz [mailto:[EMAIL PROTECTED] Sent:

Re: [Zope] zope cgi

2007-06-08 Thread Jonathan
- Original Message - From: sergio diaz [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: zope@zope.org Sent: Friday, June 08, 2007 3:11 PM Subject: RE: [Zope] zope cgi Hello, I am trying execute binary programs from zope. Once I achieve it, I will can execute binary programs for send