[Zope-dev] Zope Tests: 5 OK

2007-08-29 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Tue Aug 28 12:00:00 2007 UTC to Wed Aug 29 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: Tue Aug 28 20:53:14 EDT 2007

Re: [Zope-dev] Re: Options replacing DateTime with datetime!?

2007-08-29 Thread Dieter Maurer
Philipp von Weitershausen wrote at 2007-8-28 21:49 +0200: On 28 Aug 2007, at 21:48 , Dieter Maurer wrote: Philipp von Weitershausen wrote at 2007-8-27 22:33 +0200: ... datetime use ... My point was just that it's doable and has been for a long time already. Yes, it is possible (for a long

[Zope] how to fill form values name:int in javascript?

2007-08-29 Thread Jaroslav Lukesh
Hi, This is typically not zope question, but I does not find solution for this zopiness. I need to fill from javascript form fields with defined zope type: input type=text name=number:int value=0 and how to address it in javascript? This make JS error for me:

Re: [Zope] how to fill form values name:int in javascript?

2007-08-29 Thread Andreas Jung
--On 29. August 2007 14:38:31 +0200 Jaroslav Lukesh [EMAIL PROTECTED] wrote: Hi, This is typically not zope question, but I does not find solution for this zopiness. I need to fill from javascript form fields with defined zope type: input type=text name=number:int value=0 and how to

[Zope] UTF encoding problem w/ ZPT's (No, not the usual :)

2007-08-29 Thread Doyon, Jean-Francois
G'day, So I've been working on this project for some time, and all is well. Now for the first time I migreate my product code to a brand new Zope installation on the production systems. Development and production systems are as identical as they can be. In this case, they both have the same

[Zope] Calling a ZPT macro, with parameters, from a python script

2007-08-29 Thread Sean F
Is there a way to call a specific macro in a ZPT from a python script? So far, the only way I've found to do this is by calling the macro template from another template, then calling the wrapper, like: wrapper: metal:wrapper

[Zope] Stripping Quotes

2007-08-29 Thread Tom Von Lahndorff
Whats the best way to strip (double and/or single) quotes from a string in python and/or dtml? Thanks. ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists -

Re: [Zope] Stripping Quotes

2007-08-29 Thread Jaroslav Lukesh
dtml-var _.str('string\with\'quotes').replace('\','').replace('\'','') - Original Message - From: Tom Von Lahndorff [EMAIL PROTECTED] Whats the best way to strip (double and/or single) quotes from a string in python and/or dtml? Thanks.