log gpp/forums/views/main.py @ 459:9d3bd7304050

age author description
Sat, 02 Jul 2011 23:35:45 +0000 Brian Neal Fixing #221. Also combined all permissions checks into a new module, permissions.py. This allows us to cache user, category, and forum groups information since it rarely changes.
Mon, 13 Jun 2011 02:19:13 +0000 Brian Neal For #218, put back the logic that updates the topic last visit after you make a post.
Wed, 08 Jun 2011 00:24:41 +0000 Brian Neal Attempting to fix #218; update the topic last visit time with 'now' when viewing the last page of a topic, otherwise use the creation time of the last post on the page.
Sat, 16 Apr 2011 19:30:29 +0000 Brian Neal Tweak quoting for Markdown. Fixing #209.
Sat, 02 Apr 2011 00:47:05 +0000 Brian Neal Fixing #177; added a view to display the last x active topics (where x is between 10 and 50). Added a link to the view on the forum query drop down.
Wed, 16 Mar 2011 01:49:10 +0000 Brian Neal Fixing #188; improve number of SQL queries for mark all forums read and add the button on the view topics with unread posts view.
Wed, 09 Mar 2011 02:39:24 +0000 Brian Neal Fixing #185; add a global forums catchup button.
Tue, 08 Mar 2011 01:16:56 +0000 Brian Neal Fixing #156; improve upon the work done in r397. Use the forum last visit record if there is no topic last visit record.
Mon, 07 Mar 2011 01:22:49 +0000 Brian Neal Fixing #156. Making it possible to goto the first unread post in a thread. Made the 'New' icon a link; when displayed on a topic, takes you to the first unread post.
Wed, 02 Mar 2011 02:34:57 +0000 Brian Neal Fix #171; forums weren't assigning badge ownership correctly when pre-fetching data.
Wed, 23 Feb 2011 03:40:18 +0000 Brian Neal Various small changes to reduce database hits.
Tue, 22 Feb 2011 05:40:29 +0000 Brian Neal Some optimizations to reduce database query times.
Sat, 05 Feb 2011 21:46:52 +0000 Brian Neal Fix a bug where you'd get an error when trying to delete a forum thread (topic does not exist). Apparently when you call topic.delete() the posts would get deleted, but the signal handler for each one would run, and it would try to update the topic's post count or something, but the topic was gone? Reworked the code a bit and explicitly delete the posts first. I also added a sync() call on the parent forum since post counts were not getting adjusted.
Mon, 10 Jan 2011 03:33:21 +0000 Brian Neal Fix #139; when editing a user's post, the post author's signature should appear with the post, not the user (moderator) making the edit).
Sat, 08 Jan 2011 22:04:54 +0000 Brian Neal Fixing #133; add the ability to edit a topic's title when you edit the first post in that topic.