Hi everyone, I keep on getting a weird problem on my project.
I use date based generic views to retrieve events for a web site, when I  
use archive_index and archive month no problems, but when i use  
archive_day or detail_object I keep on getting a 404.

I searched over the mailing list to find someone else who has got the same  
problem as mine, Jare Zgoda, but he used to use SQLite and I am using  
MySQL with a correct time zone setting.

Here is the code:

---
detail_info_dict= {
        'queryset': Evento.objects.all(),
        'date_field': 'pub_date',
        'extra_context': general_extra_context,
        'allow_future': True,
        'month_format': '%m',
}
general_info_dict= {
        'queryset': Evento.objects.all(),
        'date_field': 'pub_date',
        'extra_context': general_extra_context,
        'allow_future': True,
        'allow_empty': True,
        'month_format': '%m',
}
index_info_dict= {
        'queryset': Evento.objects.all(),
        'date_field': 'ins_date',
        'extra_context': index_extra_context,
        'allow_empty': True,
}

urlpatterns= patterns('django.views.generic.date_based',
        
(r'^(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<object_id>\d{1,10})/$',
  
'object_detail', detail_info_dict),
        (r'^(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/$',  
'archive_day', general_info_dict),
        (r'^(?P<year>\d{4})/(?P<month>\d{1,2})/$', 'archive_month',  
general_info_dict),
        (r'^/?$', 'archive_index', index_info_dict),
)
---

On the "Evento" class I use this code to retrieve the absolute_url of the  
events:

---
def get_absolute_url(self):
        return "/%s/%s" % (self.pub_date.strftime("%Y/%m/%d"), self.id)
---

Hope anyone can help me...

Thanks in advance,
David
-- 
Brokenseal di Callegari Davide

Le informazioni contenute in questo messaggio di posta elettronica sono  
riservate e confidenziali e ne e' vietata la diffusione in qualunque modo  
eseguita. Qualora Lei non fosse la persona a cui il presente messaggio e'  
destinato, La invitiamo ad eliminarlo e a non utilizzare in alcun caso il  
suo contenuto, dandone gentilmente comunicazione al mittente.


The information contained in this e-mail and any attachments is  
confidential and may well also be legally privileged. If you are not among  
the named recipients, please notify the sender immediately by reply e-mail  
and then delete this message from your system, do not use the contents for  
any purpose whatsoever nor disclose them to anyone else.


Rif. D.L. 196/2003.

--~--~---------~--~----~------------~-------~--~----~
 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