Re: Using DATE_FORMAT in django 1.2

2010-06-06 Thread Karen Tracey
On Sun, Jun 6, 2010 at 9:57 AM, Tomas Zulberti  wrote:

> On Jun 5, 8:11 pm, Karen Tracey  wrote:
> > On Sat, Jun 5, 2010 at 6:17 PM, Tomas Zulberti 
> wrote:
> > > So my question is: is this a bug, or I am doing something wrong (I am
> > > sure I might be doing something grong but I don't know where).
> >
> > I ran into the same behavior this afternoon. I think it is a bug:
> http://code.djangoproject.com/ticket/13702
> >
>
> Thanks for all your help.
>

By the way what I did to work around the problem in my own project was leave
USE_L10N=True in settings.py and create a custom formats file for the locale
I'm using, as described here:

http://docs.djangoproject.com/en/dev/topics/i18n/localization/#creating-custom-format-files

Karen
-- 
http://tracey.org/kmt/

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Using DATE_FORMAT in django 1.2

2010-06-06 Thread Tomas Zulberti


On Jun 5, 8:11 pm, Karen Tracey  wrote:
> On Sat, Jun 5, 2010 at 6:17 PM, Tomas Zulberti  wrote:
> > So my question is: is this a bug, or I am doing something wrong (I am
> > sure I might be doing something grong but I don't know where).
>
> I ran into the same behavior this afternoon. I think it is a 
> bug:http://code.djangoproject.com/ticket/13702
>
> Karen
> --http://tracey.org/kmt/

Thanks for all your help.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Using DATE_FORMAT in django 1.2

2010-06-05 Thread Karen Tracey
On Sat, Jun 5, 2010 at 6:17 PM, Tomas Zulberti  wrote:

> So my question is: is this a bug, or I am doing something wrong (I am
> sure I might be doing something grong but I don't know where).
>

I ran into the same behavior this afternoon. I think it is a bug:
http://code.djangoproject.com/ticket/13702

Karen
-- 
http://tracey.org/kmt/

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Using DATE_FORMAT in django 1.2

2010-06-05 Thread Tomas Zulberti
Hi. I have the following values in the settings.py:
USE_L10N = True
DATETIME_FORMAT = '%d/%m/%Y'

When the date is printed it prints: "Nov. 24, 1983". The date is:
datetime.date(1983, 11, 24).
As far as I was able to follow the code, in the django/utils/
formats.py, the it uses the the get_format function because I have in
the settings USE_L10N. So it will use get_format will use
format_module of my sistem (english) to format the date.

The problem is that if I don't use USE_L10N to True, the function
localize() in the same module will return a datetime.date() object
insted of using the settings DATE_FORMAT value. After that the method,
force_unicode will be used, which it doesn't use the settings at all
(it does str(datetime.date())).

So my question is: is this a bug, or I am doing something wrong (I am
sure I might be doing something grong but I don't know where).

Thanks in advance,
Tomas Zulberti

pd: Sorry for my bad English.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.