[Zope-dev] Re: Schedule for Zope 3.5 final

2008-03-07 Thread Martijn Faassen
Andreas Jung wrote: what is your schedule for Zope 3.5.0 final? I am asking because I also want to plan the 2.11.0 release. Are you talking about 3.4 final? I see that's what Stephan's been working on. :) Regards, Martijn ___ Zope-Dev maillist

Re: [Zope-dev] Re: Schedule for Zope 3.5 final

2008-03-07 Thread Andreas Jung
--On 7. März 2008 15:10:21 +0100 Martijn Faassen [EMAIL PROTECTED] wrote: Andreas Jung wrote: what is your schedule for Zope 3.5.0 final? I am asking because I also want to plan the 2.11.0 release. Are you talking about 3.4 final? I see that's what Stephan's been working on. :) Ok.

Re: AW: [Zope-dev] z3c.form: unicode error with upload form

2008-03-07 Thread Christophe Combelles
Roger Ineichen a écrit : Hi Christophe Betreff: [Zope-dev] z3c.form: unicode error with upload form Hi, The z3c.form.converter.FileUploadDataConverter has no toWidgetValue() method. Instead, it inherits from BaseDataConverter.toWidgetValue(), that returns unicode(data). However

AW: AW: [Zope-dev] z3c.form: unicode error with upload form

2008-03-07 Thread Roger Ineichen
Hi Christophe Betreff: Re: AW: [Zope-dev] z3c.form: unicode error with upload form [...] I guess I know what you are trying to do. As I implemented this widget I was thinking that a file upload never get used for representation. Becaues it allways offers only upload again if

[Zope] Re: Index Problem - Index randomly breaks/changes

2008-03-07 Thread Ryan Smith
My output was using a KeywordIndex, with 'and' as the operator. I noted when reading your earlier description that your code was testing the value of the 'getAccess' entry in the *metadata*, not in the index: in fact, you don't need an index at all to do the filtering in that code. Can you

[Zope] Re: Index Problem - Index randomly breaks/changes

2008-03-07 Thread Ryan Smith
Tres - I am 98% sure I found the source of my problem. I thought I was getting a copy of something back, when really I was getting a pointer to it. So I was changing the catalog. I am still slightly confused as to how it fixed itself (probably was due to data being cached). In my code I have

[Zope] ZpCron

2008-03-07 Thread Giampiero Benvenuti
Hello list, can someone give me a good example about the sintax for the product ZpCron? ( http://www.zope.org/Members/janik/ZpCron ) It should be cron-like syntax: 1 * * * * Username /zope/path/to/script So far I didn't have any success... Thanks a lot, Giampiero

[Zope] Re: Index Problem - Index randomly breaks/changes

2008-03-07 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ryan Smith wrote: Tres - I am 98% sure I found the source of my problem. I thought I was getting a copy of something back, when really I was getting a pointer to it. So I was changing the catalog. I am still slightly confused as to how it

Re: [Zope] python script returning a 'rendered' zpt

2008-03-07 Thread Tim Nash
did you try; something = context.REQUEST.form['target'] somepage = context.REQUEST['URLPATH1'] #may be URL1 some_page_template = context[somepage] rendered_html = some_page_template(context, somevariable=something) I'm writing from (faulty) memory here so context[somepage] may not work. If it

[Zope] getting at url parameters in zpt

2008-03-07 Thread David Bear
If I have a zpt called 'stuff' and I call it from a web browser with a url like this http://myzopeserver.com/stuff?item1=x?item2=y how do I get at the item1 and item2 parameters? -- David Bear College of Public Programs/ASU 411 N Central, Phoenix, AZ 85004

[Zope] Re: getting at url parameters in zpt

2008-03-07 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 David Bear wrote: If I have a zpt called 'stuff' and I call it from a web browser with a url like this http://myzopeserver.com/stuff?item1=x?item2=y how do I get at the item1 and item2 parameters? p tal:content=request/form/item1ITEM 1