Re: [Zope] URL_Rewrite

2007-08-16 Thread Garito
This is another problem. You need to import url_quote in order to use it But my help was about the error you send See u 2007/8/16, [EMAIL PROTECTED] [EMAIL PROTECTED]: Your solution didn't work. It throws an error, stating url_quote is not defined. Actually, the solution I posted below *did*

Re: [Zope] URL_Rewrite

2007-08-16 Thread Peter Bengtsson
In TAL this:: python:url_quote(here/Our_Store/CheckOutAfterEditStuff) means here dividedby Our_Store dividedby CheckOutAfterEditStuff What you need is:: python:url_quote(here.Our_Store.CheckOutAfterEditStuff()) [EMAIL PROTECTED] wrote: I have this line of code: a tal:define=std

[Zope] Zope 3 Foliage Sprint

2007-08-16 Thread Stephan Richter
Hi everyone, it has been over a year, since we had a conference-independent fully Zope 3 focused sprint. And I think it is time to have one! :-) Thanks to JSA Tech, there will be a sprint between September 24-28, 2007 right in the center of historical Concord, Massachusetts. We have reserved a

Re: [Zope] URL_Rewrite

2007-08-16 Thread Garito
Or as I previously say: python: url_quote(path(here/Our_Store/CheckOutAfterEditStuff)) Where path is a method that evaluates a string as a tales expresion like this 2007/8/16, Peter Bengtsson [EMAIL PROTECTED]: In TAL this:: python:url_quote(here/Our_Store/CheckOutAfterEditStuff) means

[Zope] cannot access POST content in Zope

2007-08-16 Thread Manuel Spuhler
Hello, I am trying to record the result of a POST request sent to Plone. I can get the content of the POST when I send the file post.xml (valid xml) curl http://elevator.sytes.net/RSR/setSMS -d @post.xml In this case, CONTENT_TYPE headers is set to 'application/x-www-form-urlencoded' by curl.

[Zope] Why doesn't os.system(command) work?

2007-08-16 Thread rieh25
I have an external method like this: import os def ext_programm(): os.system('notepad.exe') But it doesn't work. -- View this message in context: http://www.nabble.com/Why-doesn%27t-os.system%28command%29-work--tf4283613.html#a12193786 Sent from the Zope - General mailing list archive at

Re: [Zope] cannot access POST content in Zope

2007-08-16 Thread Andreas Jung
--On 17. August 2007 01:52:27 +0200 Manuel Spuhler [EMAIL PROTECTED] wrote: Hello, I am trying to record the result of a POST request sent to Plone. I can get the content of the POST when I send the file post.xml (valid xml) No idea where and how you look for the uploaded content.

Re: [Zope] Why doesn't os.system(command) work?

2007-08-16 Thread Andreas Jung
--On 16. August 2007 21:21:36 -0700 rieh25 [EMAIL PROTECTED] wrote: I have an external method like this: import os def ext_programm(): os.system('notepad.exe') But it doesn't work. You can figure it out yourself by checking the return value of os.system() and by checking the

Re: [Zope] Why doesn't os.system(command) work?

2007-08-16 Thread rieh25
What is a search path and how do I set it? -- View this message in context: http://www.nabble.com/Why-doesn%27t-os.system%28command%29-work--tf4283613.html#a12194033 Sent from the Zope - General mailing list archive at Nabble.com. ___ Zope maillist

Re: [Zope] Why doesn't os.system(command) work?

2007-08-16 Thread Andreas Jung
--On 16. August 2007 21:58:08 -0700 rieh25 [EMAIL PROTECTED] wrote: What is a search path and how do I set it? Google windows search path. -aj pgpptZy8FpD0f.pgp Description: PGP signature ___ Zope maillist - Zope@zope.org

Re: [Zope] Why doesn't os.system(command) work?

2007-08-16 Thread rieh25
I think it's finding the programm because I'm using the complete path. And when I test it using the wrong programm name, it returns a 1. But instead, when I pass it the right name, it just hangs. In the task manager there is an entry for the program, but it doesn't seem to execute. Thanks for the