log gpp/forums/models.py @ 356:f54bf3b3bece

age author description
2011-01-13 Brian Neal Fixing #140; limit topic notification emails to at most 1 per day, or more if the user visits the topic.
2010-12-29 Brian Neal Fixed a bug where if you tried to delete a topic the new last post might be in that topic, so a cascading delete would occur and the forum would get deleted.
2010-10-14 Brian Neal This is a first rough commit for #95, adding the ability to embed YouTube videos in forum posts. Some more polish and testing needs to happen at this point. I wanted to get all these changes off my hard drive and into the repository.
2010-10-02 Brian Neal Fixing #128 and #129. Add elsewhere weblinks to search content. Add support for haystack's get_update_field() method.
2010-09-12 Brian Neal Fix the max users online statistic as per ticket #90.
2010-08-01 Brian Neal Implement a forum favorites feature for #82
2010-06-10 Brian Neal For #51; change verbose_name & verbose_name_plural so that the Haystack model search form has reasonable labels.
2010-06-06 Brian Neal For #51; add forums to Haystack search.
2010-03-28 Brian Neal Implementing #61: adding a forum topic subscription feature.
2010-02-11 Brian Neal Implement #52 Forums RSS feeds.
2010-01-24 Brian Neal Adding a query to the forums to get all the topics with unread posts. This is for ticket #54.
2009-12-28 Brian Neal Implement #46, add a forums stat feature like phpBB.
2009-11-20 Brian Neal Fixing #36, Smilify doesn't work when a smiley appears first before other text. Refactored the smiley system to produce markdown as well as HTML.
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-10-23 Brian Neal Fix typo introduced in last commit.
2009-10-22 Brian Neal Forums: split topic.
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-22 Brian Neal Forums: implemented post delete feature.
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-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-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.
2009-09-13 Brian Neal Forums: added forum post counts for each user in the user profile.
2009-09-13 Brian Neal Forums: added support for Post get_absolute_url()
2009-08-29 Brian Neal Forums: Added the ability to add a new topic. This is very much a work in progress.
2009-08-23 Brian Neal Forums: started the ability to display topics inside a forum.
2009-08-23 Brian Neal More work on forums. Committing what we got so far.
2009-07-05 Brian Neal First checkin of forums. Have noticed cascading delete behavior. Will try to prevent this next.