Stephen Burrows [Tue, 5 Oct 2010 21:49:12 +0000 (17:49 -0400)]
Minor bugfix: moved ConstantEmbedNode DoesNotExist reraising so that it actually reraises the DoesNotExist exception.
Stephen Burrows [Tue, 5 Oct 2010 21:16:21 +0000 (17:16 -0400)]
Removed referential integrity code. Moved embed templatetag into core. Differentiated ConstantEmbedNode (context-independent) and EmbedNode, analogous to django's ConstantIncludeNode/IncludeNode.
Stephen Burrows [Mon, 4 Oct 2010 20:27:43 +0000 (16:27 -0400)]
Added embeddable_content_types registry to track what content types are embeddable. Added tracking of whether a model class run through post_delete has EmbedField instances on it. These save time and trouble in the post_delete cascade.
Stephen Burrows [Mon, 4 Oct 2010 15:54:31 +0000 (11:54 -0400)]
Added kwarg capability to embed tag. Adjusted reference substitution to account for kwargs.
Stephen Burrows [Mon, 4 Oct 2010 15:09:54 +0000 (11:09 -0400)]
Adjusted to match the new master TemplateField changes. Switched the setting of _embedded_instances to the EmbedField clean method so that validationerrors can be raised. Added South introspection rules. Switched NewsletterArticle to use EmbedFields. Set EmbedNode to pre-calculate templates and instances if appropriate and to suppress any errors that might occur. Made invalid content type references raise a TemplateSyntaxError, in line with the container template tag.
Stephen Burrows [Tue, 28 Sep 2010 14:28:20 +0000 (10:28 -0400)]
Added post-save and post-delete signals to manage Embed instances. Added the delete method on the Embed model to remove itself from fields where it is embedded.
Stephen Burrows [Mon, 27 Sep 2010 21:42:47 +0000 (17:42 -0400)]
Added methods and functions to support syncing embedded models in post-save.
Stephen Burrows [Mon, 27 Sep 2010 17:43:32 +0000 (13:43 -0400)]
Initial embed commit. Implements TemplateField and EmbedField - model fields that validate their contents as templates and templates with embedded content, respectively. Implements the {% embed %} template tag, which allows arbitrary instances to be rendered with a given template. Initial sketch of the embed tracker (which should handle cascading deletions) also in place.
Stephen Burrows [Mon, 4 Oct 2010 14:17:27 +0000 (10:17 -0400)]
Switched nodelist crawl to return the more generic 'results' of the crawl, rather than 'nodes'. Fixed missing import for TemplateValidationParser.
Joseph Spiros [Sun, 3 Oct 2010 21:17:42 +0000 (17:17 -0400)]
Adding recaptcha-django to the README.
Stephen Burrows [Fri, 1 Oct 2010 16:51:15 +0000 (12:51 -0400)]
Abstracted the Template container fetcher to a nodelist_crawler which takes a callback to determine if a node should be returned. Put all code related to the crawler into philo.utils.
Stephen Burrows [Fri, 1 Oct 2010 14:49:55 +0000 (10:49 -0400)]
Moved a few more miscellaneous things into master from embed that did not belong there, mostly deletions of old code regarding template validation.
Stephen Burrows [Fri, 1 Oct 2010 14:24:02 +0000 (10:24 -0400)]
Removed 'dynamic' from the Contentlet model. Added TemplateField to Template model and Contentlet model. Fixed some minor typos and added some comments to the code. Increased verbosity of 'disallowed tag' errors.
Stephen Burrows [Thu, 30 Sep 2010 22:15:52 +0000 (18:15 -0400)]
Added template field to master branch. Added monkeypatch for telling if a node includes a template and what that template is - eases container fetching. Added template validator which can allow/disallow tags by using a custom parser. Requires testing.
Stephen Burrows [Thu, 30 Sep 2010 19:52:07 +0000 (15:52 -0400)]
Tweaked nodeview error reraising to preserve traceback information.
Joseph Spiros [Wed, 29 Sep 2010 18:39:17 +0000 (14:39 -0400)]
Merge branch 'master' of git://github.com/melinath/philo
* 'master' of git://github.com/melinath/philo:
Implemented better container filtering for page container inlines.
Modified FeedMultiViewMixin to allow greater customization of feed creation, especially with regards to feed titles. Tweaked BlogView and NewsletterView to be in line with the changes.
Adjusted feedmultiviewmixin to allow more customization of objects being added to feeds and to link to complete urls instead of absolute in-site urls.
Corrected blogview tag feed urls.
Added filter_horizontal on blogentry tags. Made minor corrections to BlogView's get_entries_by_tag method.
Added waldo filtering to send multipart or plaintext messages based on the template mimetype. Tweaked Template model to actually default to text/html instead of just saying it.
Fixed login redirects
Added recaptcha support to waldo registration form.
Switched newsletterissue numbering to a more generic field. Added newsletterview unicode. Minor change to container templatetags to ensure that the container_content variable is always set.
Added 500 handling to nodeview. Made nodeview vary on Accept header to allow fancy json/html switchouts - possibly also other fanciness.
Added philo 404 handling via a relationship named Http404 on nodes. Uses the passthrough feature of relationships to let 404 views inherit.
Added tags to newsletter articles
Tweaked AccountMultiView to account for emails containing '+' in the local address.
Upped philo.tag name/slug lengths to 255.
Added slug to TagAdmin list_display. Corrected FeedMultiViewMixin to also paginate the root page.
Added helper function to ease response 'returns' for signal listeners
Switched over to render_to_response and actually_render_to_response, since render_to_response is the open api used by say multiviews and should always be called when a page is to render. Calling a hidden method would not be good. Also added render_to_string listeners for pages.
Added view_about_to_render and view_finished_rendering signals. Added hidden _render_to_response method to ensure they're called on all view subclasses. Also some minor streamlining on Newsletters.
Shifted definition of the context list_var (entries vs. articles) to a class attribute. Since account_view can be put in place of any arbitrary view, let it accept args and kwargs to handle anything unexpected.
Stephen Burrows [Tue, 28 Sep 2010 20:21:04 +0000 (16:21 -0400)]
Implemented better container filtering for page container inlines.
Stephen Burrows [Thu, 23 Sep 2010 16:27:24 +0000 (12:27 -0400)]
Modified FeedMultiViewMixin to allow greater customization of feed creation, especially with regards to feed titles. Tweaked BlogView and NewsletterView to be in line with the changes.
Stephen Burrows [Thu, 23 Sep 2010 15:10:47 +0000 (11:10 -0400)]
Adjusted feedmultiviewmixin to allow more customization of objects being added to feeds and to link to complete urls instead of absolute in-site urls.
Stephen Burrows [Wed, 22 Sep 2010 15:10:11 +0000 (11:10 -0400)]
Corrected blogview tag feed urls.
Stephen Burrows [Wed, 22 Sep 2010 14:51:11 +0000 (10:51 -0400)]
Added filter_horizontal on blogentry tags. Made minor corrections to BlogView's get_entries_by_tag method.
Stephen Burrows [Wed, 15 Sep 2010 22:27:49 +0000 (18:27 -0400)]
Added waldo filtering to send multipart or plaintext messages based on the template mimetype. Tweaked Template model to actually default to text/html instead of just saying it.
Stephen Burrows [Wed, 15 Sep 2010 20:59:56 +0000 (16:59 -0400)]
Fixed login redirects
Stephen Burrows [Mon, 13 Sep 2010 17:53:25 +0000 (13:53 -0400)]
Added recaptcha support to waldo registration form.
Stephen Burrows [Mon, 13 Sep 2010 15:23:36 +0000 (11:23 -0400)]
Switched newsletterissue numbering to a more generic field. Added newsletterview unicode. Minor change to container templatetags to ensure that the container_content variable is always set.
Stephen Burrows [Fri, 10 Sep 2010 17:14:21 +0000 (13:14 -0400)]
Added 500 handling to nodeview. Made nodeview vary on Accept header to allow fancy json/html switchouts - possibly also other fanciness.
Stephen Burrows [Thu, 9 Sep 2010 21:16:12 +0000 (17:16 -0400)]
Added philo 404 handling via a relationship named Http404 on nodes. Uses the passthrough feature of relationships to let 404 views inherit.
Stephen Burrows [Tue, 7 Sep 2010 18:24:22 +0000 (14:24 -0400)]
Added tags to newsletter articles
Stephen Burrows [Fri, 3 Sep 2010 20:03:16 +0000 (16:03 -0400)]
Tweaked AccountMultiView to account for emails containing '+' in the local address.
Stephen Burrows [Thu, 2 Sep 2010 21:33:24 +0000 (17:33 -0400)]
Upped philo.tag name/slug lengths to 255.
Stephen Burrows [Thu, 2 Sep 2010 16:22:10 +0000 (12:22 -0400)]
Added slug to TagAdmin list_display. Corrected FeedMultiViewMixin to also paginate the root page.
Stephen Burrows [Tue, 31 Aug 2010 15:55:42 +0000 (11:55 -0400)]
Added helper function to ease response 'returns' for signal listeners
Stephen Burrows [Tue, 31 Aug 2010 15:34:18 +0000 (11:34 -0400)]
Switched over to render_to_response and actually_render_to_response, since render_to_response is the open api used by say multiviews and should always be called when a page is to render. Calling a hidden method would not be good. Also added render_to_string listeners for pages.
Stephen Burrows [Tue, 31 Aug 2010 14:37:11 +0000 (10:37 -0400)]
Added view_about_to_render and view_finished_rendering signals. Added hidden _render_to_response method to ensure they're called on all view subclasses. Also some minor streamlining on Newsletters.
Stephen Burrows [Thu, 26 Aug 2010 14:44:21 +0000 (10:44 -0400)]
Shifted definition of the context list_var (entries vs. articles) to a class attribute. Since account_view can be put in place of any arbitrary view, let it accept args and kwargs to handle anything unexpected.
Joseph Spiros [Wed, 8 Sep 2010 17:26:15 +0000 (13:26 -0400)]
Added JSON validator to Attributes.
Joseph Spiros [Tue, 24 Aug 2010 13:10:33 +0000 (09:10 -0400)]
Merge branch 'melinath'
* melinath:
Corrected get_subpath on blogs and newsletters to fit the new paradigm.
Implemented feeds for NewsletterView. Corrected BlogView/NewsletterView urlpatterns.
Moved feed-related methods to a generic mixin.
Added feeds to blogs.
Implemented object deletion on null values. Added ModelChoiceWidget to ContentReferences.
Display of current values functional.
Display of ContainerFormSets functional; display of their values is not; saving of values, however, is.
Initial new page admin commit. Working on faking the admin out through inlines instead of ModelAdmin methods.
Implemented email change confirmation.
Implemented EmailTokenGenerator and added password changing to the LoginMultiView.
Implemented password resetting. Improved redirection on login.
Implemented one-time login on account confirm.
Token-based User registration functional
WIP: Implementation of pended user creation using tokens. Needs some testing.
Initial waldo commit. Implements abstract LoginMultiView and AccountMultiView to generically handle login situations for philo.
Joseph Spiros [Tue, 24 Aug 2010 13:10:18 +0000 (09:10 -0400)]
Merge branch 'new_page_admin' of git://github.com/melinath/philo into melinath
* 'new_page_admin' of git://github.com/melinath/philo:
Implemented object deletion on null values. Added ModelChoiceWidget to ContentReferences.
Display of current values functional.
Display of ContainerFormSets functional; display of their values is not; saving of values, however, is.
Initial new page admin commit. Working on faking the admin out through inlines instead of ModelAdmin methods.
Joseph Spiros [Tue, 24 Aug 2010 13:10:13 +0000 (09:10 -0400)]
Merge branch 'feedmixin' of git://github.com/melinath/philo into melinath
* 'feedmixin' of git://github.com/melinath/philo:
Corrected get_subpath on blogs and newsletters to fit the new paradigm.
Implemented feeds for NewsletterView. Corrected BlogView/NewsletterView urlpatterns.
Moved feed-related methods to a generic mixin.
Added feeds to blogs.
Joseph Spiros [Tue, 24 Aug 2010 13:10:07 +0000 (09:10 -0400)]
Merge branch 'waldo' of git://github.com/melinath/philo into melinath
* 'waldo' of git://github.com/melinath/philo:
Implemented email change confirmation.
Implemented EmailTokenGenerator and added password changing to the LoginMultiView.
Implemented password resetting. Improved redirection on login.
Implemented one-time login on account confirm.
Token-based User registration functional
WIP: Implementation of pended user creation using tokens. Needs some testing.
Initial waldo commit. Implements abstract LoginMultiView and AccountMultiView to generically handle login situations for philo.
Stephen Burrows [Mon, 23 Aug 2010 17:48:01 +0000 (13:48 -0400)]
Corrected get_subpath on blogs and newsletters to fit the new paradigm.
Stephen Burrows [Mon, 23 Aug 2010 16:23:30 +0000 (12:23 -0400)]
Implemented feeds for NewsletterView. Corrected BlogView/NewsletterView urlpatterns.
Stephen Burrows [Fri, 20 Aug 2010 15:36:50 +0000 (11:36 -0400)]
Moved feed-related methods to a generic mixin.
Stephen Burrows [Thu, 19 Aug 2010 22:24:07 +0000 (18:24 -0400)]
Added feeds to blogs.
melinath [Wed, 18 Aug 2010 21:51:08 +0000 (17:51 -0400)]
Implemented object deletion on null values. Added ModelChoiceWidget to ContentReferences.
melinath [Wed, 18 Aug 2010 20:29:04 +0000 (16:29 -0400)]
Display of current values functional.
melinath [Wed, 18 Aug 2010 20:12:22 +0000 (16:12 -0400)]
Display of ContainerFormSets functional; display of their values is not; saving of values, however, is.
melinath [Wed, 18 Aug 2010 19:03:07 +0000 (15:03 -0400)]
Initial new page admin commit. Working on faking the admin out through inlines instead of ModelAdmin methods.
melinath [Tue, 17 Aug 2010 20:43:30 +0000 (16:43 -0400)]
Implemented email change confirmation.
melinath [Tue, 17 Aug 2010 16:37:37 +0000 (12:37 -0400)]
Implemented EmailTokenGenerator and added password changing to the LoginMultiView.
Stephen Burrows [Wed, 11 Aug 2010 21:07:08 +0000 (17:07 -0400)]
Implemented password resetting. Improved redirection on login.
Stephen Burrows [Wed, 11 Aug 2010 17:52:54 +0000 (13:52 -0400)]
Implemented one-time login on account confirm.
Stephen Burrows [Wed, 11 Aug 2010 16:50:19 +0000 (12:50 -0400)]
Token-based User registration functional
Stephen Burrows [Tue, 10 Aug 2010 22:29:41 +0000 (18:29 -0400)]
WIP: Implementation of pended user creation using tokens. Needs some testing.
Stephen Burrows [Mon, 9 Aug 2010 21:42:19 +0000 (17:42 -0400)]
Initial waldo commit. Implements abstract LoginMultiView and AccountMultiView to generically handle login situations for philo.
Joseph Spiros [Fri, 20 Aug 2010 21:21:27 +0000 (17:21 -0400)]
Merge branch 'master' of git://github.com/melinath/philo
* 'master' of git://github.com/melinath/philo:
Re-tweaked page add form to preserve 'continue on normal save' functionality. This is implemented with javascript and will probably break some time in the future, but there doesn't seem to be a better way to do it at the moment. Fixes bug #8.
Tweaked page add_form template. Fixes bug #8.
Moved templateform to forms.py in preparation for experimentation with page forms.
Added collapse classes to attribute and relationship inlines on entities.
Added template code validation to the admin. This essentially addresses bug #14 by catching errors with validation on templates instead of letting it show up as a server error later. (Note that there should still be better validation on Pages, as deletion of a template say on the filesystem could render a db-driven template invalid.)
Set TreeModel slug field length to 255 to match Titled
melinath [Thu, 19 Aug 2010 16:02:10 +0000 (12:02 -0400)]
Re-tweaked page add form to preserve 'continue on normal save' functionality. This is implemented with javascript and will probably break some time in the future, but there doesn't seem to be a better way to do it at the moment. Fixes bug #8.
melinath [Wed, 18 Aug 2010 22:00:40 +0000 (18:00 -0400)]
Tweaked page add_form template. Fixes bug #8.
melinath [Wed, 18 Aug 2010 14:25:10 +0000 (10:25 -0400)]
Moved templateform to forms.py in preparation for experimentation with page forms.
melinath [Tue, 17 Aug 2010 17:09:37 +0000 (13:09 -0400)]
Added collapse classes to attribute and relationship inlines on entities.
melinath [Tue, 17 Aug 2010 16:16:20 +0000 (12:16 -0400)]
Added template code validation to the admin. This essentially addresses bug #14 by catching errors with validation on templates instead of letting it show up as a server error later. (Note that there should still be better validation on Pages, as deletion of a template say on the filesystem could render a db-driven template invalid.)
melinath [Tue, 17 Aug 2010 16:15:31 +0000 (12:15 -0400)]
Set TreeModel slug field length to 255 to match Titled
Joseph Spiros [Thu, 12 Aug 2010 23:31:19 +0000 (19:31 -0400)]
The blog ForeignKey on the BlogEntry model can now be blank and null.
Joseph Spiros [Thu, 12 Aug 2010 21:04:38 +0000 (17:04 -0400)]
Explicit declaration of keys for AttributeFields and RelationshipFields is now unnecessary, as they will use the attribute name on the model class they were assigned to by default. This implements feature #20.
Joseph Spiros [Thu, 12 Aug 2010 20:53:20 +0000 (16:53 -0400)]
Fixed some issues that broke fieldset definitions on ModelAdmins which used EntityForm or its subclasses.
Joseph Spiros [Wed, 11 Aug 2010 22:46:32 +0000 (18:46 -0400)]
Merge branch 'master' of git://github.com/melinath/philo
* 'master' of git://github.com/melinath/philo:
Adjusted the paginate function to only attempt a length check if per_page is valid. Addresses bug #19.
Stephen Burrows [Wed, 11 Aug 2010 21:24:43 +0000 (17:24 -0400)]
Adjusted the paginate function to only attempt a length check if per_page is valid. Addresses bug #19.
Joseph Spiros [Wed, 11 Aug 2010 20:14:07 +0000 (16:14 -0400)]
Merge branch 'node_absolute_urls' of git://github.com/melinath/philo
* 'node_absolute_urls' of git://github.com/melinath/philo:
Implements get_absolute_url for nodes (Feature #17). Fixes that mysterious 'name' bug. ;-)
Joseph Spiros [Wed, 11 Aug 2010 20:10:54 +0000 (16:10 -0400)]
Merge branch 'master' of git://github.com/melinath/philo
* 'master' of git://github.com/melinath/philo:
Paginator returns page.object_list as objects if a page exists.
Implements render_to_string on Page model for cases where this is used to render i.e. emails (Feature #18)
Unimplemented PaginationProxy; moved pagination from penfield to core.
Multiview will now pass node and extra_context to any view that takes kwargs. Fixes bug #10
Added forgotten import of EmptyPage.
Introduced the PaginationProxy object to simplify use in templates.
Revised penfield's pagination helper to work more generically.
Stephen Burrows [Wed, 11 Aug 2010 14:43:11 +0000 (10:43 -0400)]
Paginator returns page.object_list as objects if a page exists.
Stephen Burrows [Tue, 10 Aug 2010 23:09:52 +0000 (19:09 -0400)]
Implements render_to_string on Page model for cases where this is used to render i.e. emails (Feature #18)
Stephen Burrows [Tue, 10 Aug 2010 19:51:39 +0000 (15:51 -0400)]
Implements get_absolute_url for nodes (Feature #17). Fixes that mysterious 'name' bug. ;-)
Stephen Burrows [Tue, 10 Aug 2010 17:24:36 +0000 (13:24 -0400)]
Unimplemented PaginationProxy; moved pagination from penfield to core.
Stephen Burrows [Mon, 9 Aug 2010 15:40:24 +0000 (11:40 -0400)]
Merge branch 'new_paginator'
Stephen Burrows [Mon, 9 Aug 2010 11:50:51 +0000 (07:50 -0400)]
Multiview will now pass node and extra_context to any view that takes kwargs. Fixes bug #10
Stephen Burrows [Mon, 9 Aug 2010 11:15:59 +0000 (07:15 -0400)]
Added forgotten import of EmptyPage.
Stephen Burrows [Thu, 5 Aug 2010 22:12:22 +0000 (18:12 -0400)]
Introduced the PaginationProxy object to simplify use in templates.
Stephen Burrows [Thu, 5 Aug 2010 20:02:21 +0000 (16:02 -0400)]
Revised penfield's pagination helper to work more generically.
Joseph Spiros [Mon, 9 Aug 2010 09:28:56 +0000 (05:28 -0400)]
Fixed a grave error wherein Node did not have a TreeManager as its default manager, due to superclasses being declared in an order incompatible with Entity's use of EntityBase as its metaclass.
Joseph Spiros [Mon, 9 Aug 2010 09:09:35 +0000 (05:09 -0400)]
Merge branch 'master' of git://github.com/melinath/philo
* 'master' of git://github.com/melinath/philo:
Added unique_together constraint to Attributes and Relationships.
Added a bit to newsletters to streamline interactions with them.
Joseph Spiros [Mon, 9 Aug 2010 09:06:29 +0000 (05:06 -0400)]
Merge branch 'master' of git://github.com/kgodey/philo
* 'master' of git://github.com/kgodey/philo:
Added archives support to get_subpath in penfield's BlogView.
Registered Node in register_value_model.
Added "entry_dates" method to model to provide distinct yearly, monthly and daily dates for posts.
Joseph Spiros [Mon, 9 Aug 2010 06:35:54 +0000 (02:35 -0400)]
Merge branch 'entity-proxy-fields'
* entity-proxy-fields:
Implemented EntityForm, which knows how to deal with AttributeFields and RelationshipFields on the underlying model. To be consistent with Attributes, Relationships now support null values. This changes the schema.
AttributeFields and RelationshipFields now store their changes and do not commit them until their model has been saved.
Initial implementation of AttributeField and RelationshipField. These objects are not actual Fields, but rather they simply add descriptors to Entity subclasses which provide transparent access to specific attributes and relationships.
Joseph Spiros [Mon, 9 Aug 2010 06:30:10 +0000 (02:30 -0400)]
Implemented EntityForm, which knows how to deal with AttributeFields and RelationshipFields on the underlying model.
To be consistent with Attributes, Relationships now support null values. This changes the schema.
Stephen Burrows [Thu, 5 Aug 2010 18:06:23 +0000 (14:06 -0400)]
Added unique_together constraint to Attributes and Relationships.
Joseph Spiros [Sun, 1 Aug 2010 08:55:42 +0000 (04:55 -0400)]
AttributeFields and RelationshipFields now store their changes and do not commit them until their model has been saved.
Joseph Spiros [Sat, 31 Jul 2010 03:16:52 +0000 (23:16 -0400)]
Initial implementation of AttributeField and RelationshipField.
These objects are not actual Fields, but rather they simply add descriptors to Entity subclasses which provide transparent access to specific attributes and relationships.
Kriti Godey [Sun, 25 Jul 2010 20:02:57 +0000 (01:32 +0530)]
Added archives support to get_subpath in penfield's BlogView.
Kriti Godey [Fri, 23 Jul 2010 14:26:55 +0000 (19:56 +0530)]
Registered Node in register_value_model.
Kriti Godey [Fri, 23 Jul 2010 14:06:51 +0000 (19:36 +0530)]
Added "entry_dates" method to model to provide distinct yearly, monthly and daily dates for posts.
melinath [Thu, 22 Jul 2010 22:37:31 +0000 (18:37 -0400)]
Added a bit to newsletters to streamline interactions with them.
Joseph Spiros [Wed, 21 Jul 2010 16:55:17 +0000 (12:55 -0400)]
Merge branch 'master' of git://github.com/melinath/philo
* 'master' of git://github.com/melinath/philo:
Membersof now uses 'app_label.model'; removed blockcontainer
Slight changes to penfield NewsletterIssueAdmin & added newsletter value models
melinath [Wed, 14 Jul 2010 17:48:16 +0000 (13:48 -0400)]
Membersof now uses 'app_label.model'; removed blockcontainer
melinath [Wed, 14 Jul 2010 15:08:21 +0000 (11:08 -0400)]
Slight changes to penfield NewsletterIssueAdmin & added newsletter value models
Joseph Spiros [Thu, 15 Jul 2010 03:25:36 +0000 (23:25 -0400)]
MultiViews now clear_url_caches before resolving URLs, needed to allow them to change their urls dynamically at runtime.
Joseph Spiros [Thu, 15 Jul 2010 03:05:36 +0000 (23:05 -0400)]
Fixed the node_url templatetag's generation of URLs.
Joseph Spiros [Thu, 15 Jul 2010 02:46:00 +0000 (22:46 -0400)]
Implementing get_subpath on NewsletterView so that the node_url templatetag will work.
Joseph Spiros [Thu, 15 Jul 2010 01:37:13 +0000 (21:37 -0400)]
Initial implementation of node_url templatetag.
Joseph Spiros [Fri, 9 Jul 2010 02:06:13 +0000 (02:06 +0000)]
Adding the 'monospace' class to container fieldsets in the Page admin.
Joseph Spiros [Thu, 8 Jul 2010 02:16:51 +0000 (22:16 -0400)]
Adding support to BlogView for filtering based on multiple tags.
Joseph Spiros [Thu, 8 Jul 2010 00:34:45 +0000 (20:34 -0400)]
Merge branch 'kgodey'
* kgodey:
Fixing a double declaration of the monthname filter, and renaming ap_monthname to apmonthname (matches apnumber from django.contrib.humanize).
Added templatetags "monthname" and "ap_monthname" to Penfield, which turn month numbers into month names.