Re: [Zope] bug? pagetemplate using strftime

2009-05-08 Thread Miguel Beltran R.
>
>
>
> You can't use stftime.
> You have to manually build a string with the format you want using the
> other methods inside DateTime.
>
> e.g. fetcha.aCommonZ() or build up your date using
> components such as; fetcha.day()  fetcha.month()  fetcha.year()
>
>

I made a script what recive a parameter fecha(f)
script pFecha:
s="%02d-%02d-%04d"
s=s % (f.day(),f.month(),f.year())
print s
return printed


the call is 

Thanks
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] bug? pagetemplate using strftime

2009-05-07 Thread Andrew Milton
+---[ Miguel Beltran R. ]--
| 
| 
| If you strftime to show the hour and minute too, you will see as I
| previously said it is showing you the time in UTC (as determined by how
| many hours is it out).
| 
| 
| 
| I made a test  with date 2009/05/07 using
|  -- dmYzZ= --
| c= -- x -- X
| 
| and show this
|  -- dmYzZ=06/05/2009   -- c=05/06/09 19:00:00 -- x05/06/09 -- X19:00:00
| 
| here I  see what you said me, the hour is gmt-0500.
| 
| 
| If add in zope.conf
| 
|   TZ America/Mexico_City
| 
| 
| or in runzope.bat
| @set TZ=America/Mexico_City
| 
| nothing change, render the same what before add TZ
| 
| now, how I can show the correct date? help please
| I use MS Sql Server 2000 with field smalldatetime
| I never used before timezone.

You can't use stftime.
You have to manually build a string with the format you want using the
other methods inside DateTime.

e.g. fetcha.aCommonZ() or build up your date using
components such as; fetcha.day()  fetcha.month()  fetcha.year()

-- 
Andrew Milton
a...@theinternet.com.au
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] bug? pagetemplate using strftime

2009-05-07 Thread Miguel Beltran R.
>
> If you strftime to show the hour and minute too, you will see as I
> previously said it is showing you the time in UTC (as determined by how
> many hours is it out).
>
>
I made a test  with date 2009/05/07 using
 -- dmYzZ=
-- c= -- x -- X

and show this
 -- dmYzZ=06/05/2009   -- c=05/06/09 19:00:00 -- x05/06/09 --
X19:00:00

here I  see what you said me, the hour is gmt-0500.


If add in zope.conf

  TZ America/Mexico_City


or in runzope.bat
@set TZ=America/Mexico_City

nothing change, render the same what before add TZ

now, how I can show the correct date? help please
I use MS Sql Server 2000 with field smalldatetime
I never used before timezone.
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] bug? pagetemplate using strftime

2009-04-22 Thread Andrew Milton
+---[ Miguel Beltran R. ]--
| 
| 
| 'item.fetcha' is what kind of instance? DateTime? datetime?
| 
| How to reproduce the behavior?
| 
| We need something that works on any system.
| 
| 
|  I don't know what type is.
| How can know?
| 
|  
| 
|   09-01-2009
|   2009/01/10
| 
| 
| getData is a zsql method what connect to postgresql using zpsycopgda 2.0
| conecction with enconding utf-8 serializable (with zope internal datetime
| option enabled and disabled) and not work :(
| 
| This problem happen too with ms sql server 2000 with zpyodbc. Using %d break
| the day.

If you strftime to show the hour and minute too, you will see as I
previously said it is showing you the time in UTC (as determined by how
many hours is it out).

-- 
Andrew Milton
a...@theinternet.com.au
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] bug? pagetemplate using strftime

2009-04-22 Thread Miguel Beltran R.
>
> 'item.fetcha' is what kind of instance? DateTime? datetime?
>
> How to reproduce the behavior?
>
> We need something that works on any system.
>

 I don't know what type is.
How can know?



  09-01-2009
  2009/01/10


getData is a zsql method what connect to postgresql using zpsycopgda 2.0
conecction with enconding utf-8 serializable (with zope internal datetime
option enabled and disabled) and not work :(

This problem happen too with ms sql server 2000 with zpyodbc. Using %d break
the day.
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] bug? pagetemplate using strftime

2009-04-21 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Sorry but your description is pretty weak.

'item.fetcha' is what kind of instance? DateTime? datetime?

How to reproduce the behavior?

We need something that works on any system.

- - -aj
Am 22.04.2009 um 01:56 schrieb Miguel Beltran R.:

> Sorry, I not say clear where is the bug
> The original data is year 2009, month 01, day 10
>
> 2009/4/20 Miguel Beltran R. 
> Hi list,
>
> This is a bug in strftime? add to report to launchpad?
>
> 
>   09-01-2009
> Using strftime show day 09. Here is the error.
>
>   2009/01/10
> Here the day show correctly
>
>
>
>
> 
>
> can someone confirm this?
> using a database postgresql 8.3
> zope 2.11.1
> windows 2003
>
>
>
> ___
> Zope maillist  -  Zope@zope.org
> http://mail.zope.org/mailman/listinfo/zope
> **   No cross posts or HTML encoding!  **
> (Related lists -
> http://mail.zope.org/mailman/listinfo/zope-announce
> http://mail.zope.org/mailman/listinfo/zope-dev )


Mit freundlichen Grüßen/Kind regards,
Andreas Jung

- ---
ZOPYX Ltd. & Co. KG - Charlottenstr. 37/1 - 72070 Tübingen - Germany
Web: www.zopyx.com - Email: i...@zopyx.com - Phone +49 - 7071 - 793376
Registergericht: Amtsgericht Stuttgart, Handelsregister A 381535
Geschäftsführer/Gesellschafter: ZOPYX Limited, Birmingham, UK
- 
E-Publishing, Python, Zope & Plone development, Consulting




-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (Darwin)

iEYEARECAAYFAknupCYACgkQCJIWIbr9KYzlUQCfRfmRX+4S2f5J3/rbKYj7rY7E
+1UAoJQL6qOcc1bT9SbxR+H62S5z1Evk
=PZh0
-END PGP SIGNATURE-
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] bug? pagetemplate using strftime

2009-04-21 Thread Miguel Beltran R.
Sorry, I not say clear where is the bug
The original data is year 2009, month 01, day 10

2009/4/20 Miguel Beltran R. 

> Hi list,
>
> This is a bug in strftime? add to report to launchpad?
>
> 
>   09-01-2009
>
Using strftime show day 09. Here is the error.


>   2009/01/10

Here the day show correctly




> 
>
> can someone confirm this?
> using a database postgresql 8.3
> zope 2.11.1
> windows 2003
>
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] bug? pagetemplate using strftime

2009-04-20 Thread filtered
I don't see any issue with that? If yes, provide the related output and what
you expect and why?

On Tue, Apr 21, 2009 at 04:33, Miguel Beltran R. wrote:

> Hi list,
>
> This is a bug in strftime? add to report to launchpad?
>
> 
>   09-01-2009
>   2009/01/10
> 
>
> can someone confirm this?
> using a database postgresql 8.3
> zope 2.11.1
> windows 2003
>
> 
> Lo bueno de vivir un dia mas
> es saber que nos queda un dia menos de vida
>
> ___
> Zope maillist  -  Zope@zope.org
> http://mail.zope.org/mailman/listinfo/zope
> **   No cross posts or HTML encoding!  **
> (Related lists -
>  http://mail.zope.org/mailman/listinfo/zope-announce
>  http://mail.zope.org/mailman/listinfo/zope-dev )
>
>
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] bug? pagetemplate using strftime

2009-04-20 Thread Andrew Milton
+---[ Miguel Beltran R. ]--
| Hi list,
| 
| This is a bug in strftime? add to report to launchpad?
| 
| 
|   09-01-2009
|   2009/01/10
| 
| 
| can someone confirm this?
| using a database postgresql 8.3
| zope 2.11.1
| windows 2003

Zope DateTime objects revert to UTC when using strftime in all versions
of Zope. It's known, and doesn't seem to be thought of as a bug.

The response I received about this was something to the effect of "write your 
own DateTime"

-- 
Andrew Milton
a...@theinternet.com.au
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )