log

age author description
2009-11-14 Brian Neal Refactored the markdown/smiley logic. Created classes for Markdown and Smilify. No longer call render_to_string() in models.py for various models.
2009-11-08 Brian Neal Forums: added a jquery ui dialog of extra smileys.
2009-10-27 Brian Neal Forums: monkey-patch the user profile onto the post object when doing a quick ajax reply.
2009-10-27 Brian Neal Forums: display signature on posts. Display icons for PM and email (if not hidden) on each post.
2009-10-25 Brian Neal Added a 24-hour time preference flag in the user profile. Added forum template tags for showing forum dates/times adjusted for the user's time zone.
2009-10-24 Brian Neal Forgot to commit the template for the forums split topic view.
2009-10-24 Brian Neal Reduced some sql queries by adding a select_related and monkey patching user profiles onto a user list in shoutbox and the bio/member's list, respectively.
2009-10-23 Brian Neal Forums: pre-select all the user profiles when displaying a topic. As it was, the template was calling get_user_profile which was causing a db hit on every post in the topic.
2009-10-23 Brian Neal Fix typo introduced in last commit.
2009-10-22 Brian Neal Forums: split topic.
2009-10-11 Brian Neal Forums: Implemented unread status for topics and posts.
2009-10-11 Brian Neal Forums: ForumLastVisit logic in place. Need to add code for topics and posts next.
2009-09-30 Brian Neal Forums: added a sync() function on the forum model. Created javascript for the moderate forum function to drive the master topic select checkbox.
2009-09-28 Brian Neal Forums: implemented the bulk moderator functions that operate on a forum: bulk sticky, lock, delete, and move. These haven't been tested that well yet.
2009-09-26 Brian Neal Forums: implemented the move topic feature.
2009-09-26 Brian Neal Forums: implemented topic level moderator controls.
2009-09-26 Brian Neal Forums: quoting existing posts.
2009-09-22 Brian Neal Forums: implemented post delete feature.
2009-09-19 Brian Neal Forums: implemented the edit post function.
2009-09-17 Brian Neal Forums: Added icons for forum post moderation tools. Still need to add functionality that goes behind these.
2009-09-17 Brian Neal Forums: display of sticky status. Moderators/superusers see IP address of post. Added a can_reply flag to the template and have view compute it.
2009-09-17 Brian Neal Forums: added template support for displaying stickied topics.
2009-09-16 Brian Neal Forums: new topic form sprouts boolean fields for sticky and locking if the user has rights. Implemented the locked logic. Fixed a bug where topics where getting out of order (the view_count was bumping the update_date because of auto_now).
2009-09-16 Brian Neal Forums: use select_related() with get_object_or_404() to reduce queries.
2009-09-15 Brian Neal Forums: groups support. Some experimentation with select_related() to reduce queries. There are more opportunities for this, see the TODO comments in views.py.
2009-09-14 Brian Neal Forums: added error handling to the flagging of posts. Did the same with the comments function too.
2009-09-13 Brian Neal Forums: flag posts.
2009-09-13 Brian Neal Render the forum page navigation in the view with render_to_string() to avoid doing it twice in the template code. Also undo a mistake in the last commit. Need 2 different orderings for Post objects: by creation date in normal views, and by reverse creation date in the admin.