I have the folling urls:

 (r'^(?P<year>\d{4})/$',
'django.views.generic.date_based.archive_year', archive_info),
 (r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/$',
'django.views.generic.date_based.archive_month', archive_info),

and archive_info is:

archive_info = {
        'queryset' : Entry.objects.all(),
        'date_field' : 'entry_date',
        'template_name' : 'blog/archive.html',
}

The problem i am having is when i enter;

myurl.net/2008/aug/

i get a 404 error, but not the one saying it doesn't match any url
patters, theres two strange things about this,

1. if i do /2008/ without the month it works, fine every time,
2. about once in every 20 times it will work with myurl.net/2008/aug/

this to me seems very strange, that it work once every so often, and
practically the same url /2008/ seems to work fine, even though the
majority of information  is the same.

Does anyone have any possible ideas on theories on this, thanks

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

Reply via email to