Added archives support to get_subpath in penfield's BlogView.
authorKriti Godey <kriti.godey@gmail.com>
Sun, 25 Jul 2010 20:02:57 +0000 (01:32 +0530)
committerKriti Godey <kriti.godey@gmail.com>
Sun, 25 Jul 2010 20:02:57 +0000 (01:32 +0530)
contrib/penfield/models.py

index 0a46c54..c4cb49e 100644 (file)
@@ -80,6 +80,17 @@ class BlogView(MultiView):
                elif isinstance(obj, Tag):
                        if obj in self.blog.entry_tags:
                                return reverse(self.tag_view, urlconf=self, kwargs={'tag_slugs': obj.slug})
+               elif isinstance(obj, (str, unicode)):
+                       split_obj = obj.split(':')
+                       if len(split_obj) > 1:
+                               entry_archive_view_args = {}
+                               if split_obj[0].lower() == 'archives':
+                                       entry_archive_view_args.update({'year': str(int(split_obj[1])).zfill(4)})
+                                       if len(split_obj) > 2:
+                                               entry_archive_view_args.update({'month': str(int(split_obj[2])).zfill(2)})
+                                               if len(split_obj) > 3:
+                                                       entry_archive_view_args.update({'day': str(int(split_obj[3])).zfill(2)})
+                                       return reverse(self.entry_archive_view, urlconf=self, kwargs=entry_archive_view_args)
                raise ViewCanNotProvideSubpath
        
        @property