[Zope] Converting from week no. to date

2006-05-01 Thread Jonas Nielsen
DateTime().strftime(%U) converts from date to week no. Is it possible to convert from (week,year,weekday) to a specific date in a python script in zope ? I could install the mx.DateTime module in python and then make a product with a method that used ISO.Week() but is there a more straight

Re: [Zope] Converting from week no. to date

2006-05-01 Thread Andreas Jung
--On 1. Mai 2006 17:16:13 +0200 Jonas Nielsen [EMAIL PROTECTED] wrote: DateTime().strftime(%U) converts from date to week no. Is it possible to convert from (week,year,weekday) to a specific date in a python script in zope ? The DateTime API does not support this. -aj -- ZOPYX Ltd. Co.

Re: [Zope] Converting from week no. to date

2006-05-01 Thread Lennart Regebro
On 5/1/06, Jonas Nielsen [EMAIL PROTECTED] wrote: DateTime().strftime(%U) converts from date to week no. Is it possible to convert from (week,year,weekday) to a specific date in a python script in zope ? I could install the mx.DateTime module in python and then make a product with a method