Has anyone created an example of how to incorporate a GeoRSS feed they
would be willing to share? I have seen this link,
http://code.djangoproject.com/ticket/6547
and understand that "feed_extra_kwargs" and "item_extra_kwargs" were
added to allow this but I am drawing a blank on exactly how to
sub
I have a database model in which the datetime entry of an item is
stored as a DateTimeField(). This datetime is stored as UTC. In one of
my views, which displays details for each entry, I am converting and
formatting the UTC time to PST.
I just started using generic views and for
"django.views.gen
It looks to me like your line 21 is outside the patterns set so it's
just a line of code hanging out there on its own.
Try this,
urlpatterns = patterns('',
(r'^$', 'SITENAME.polls.views.current_datetime'),
(r'^polls/$', 'SITENAME.polls.views.index'),
(r'^polls/(?P\d+)/$', 'SITENAME.p
> No, it wasn't. I'm really not making this up: ugettext_lazy() has been
> in trunk since July 4 last year!
Bizarre. Okay. I will take your word for it. I am fairly new to Django
so I am not excusing the fact that it might simply be ignorance on my
part how everything works and the location of th
> Well, it's int django/utils/translation/__init__.py. Specifically:
>
> http://code.djangoproject.com/browser/django/trunk/django/utils/trans...
It looks like it was just checked in a little while ago. I will
download the latest from SVN and try that.
Thanks. I appreciate it.
Wayne
--~--~
> I think the original poster's tarball of Django is broken. At least the
> 1.0-alpha version is. The 0.96 releases never had ugettext_lazy().
So I should be seeing it at this location django.utils.translation in
the latest SVN beta? I browsed the code today on the website and
didn't see it in th
A couple of applications I have tried to install fail trying to import
ugettext_lazy. Specifically the import line is:
django.utils.translation import ugettext_lazy as _
I have seen a number of posts that suggest getting the latest source
from SVN. I have Django version 96.2 and I have downloade
7 matches
Mail list logo