log

age author description
2010-03-02 Brian Neal Updated Django to 1.2 beta. Use new DATABASES setting.
2010-02-28 Brian Neal Implementing #55 - Add function to view a users posts from their profile.
2010-02-12 Brian Neal Add rss news feed link on home page. Add rss news feed image and link on news home.
2010-02-11 Brian Neal Implement #52 Forums RSS feeds.
2010-01-31 Brian Neal Implement #54; add a forum query to display a user's posts.
2010-01-26 Brian Neal Implemented a view to display topics with unanswered posts. This is for ticket #54.
2010-01-24 Brian Neal Adding a query to the forums to get all the topics with unread posts. This is for ticket #54.
2010-01-17 Brian Neal Implement #50, add a template tag to display the latest poll and add to the home page.
2010-01-03 Brian Neal Implement #49; use POST for updating link hit counts. Also refactored a bit and use javascript to report broken links.
2009-12-28 Brian Neal Implement #46, add a forums stat feature like phpBB.
2009-12-22 Brian Neal Shoutbox history CSS tweaks. For some reason, the table lost the top and bottom borders.
2009-12-22 Brian Neal Fix #48; shoutbox was no longer escaping user input on display.
2009-12-22 Brian Neal Implement #47; add goto page links on topics in the forum index view.
2009-12-22 Brian Neal Implement #45, add a who's online feature for the forums. Created middleware that caches usernames and guest session ids in the cache. Added a tag that displays this info.
2009-12-20 Brian Neal Added a new posts template tag for the home page.
2009-12-20 Brian Neal Styled the markdown help table.
2009-12-20 Brian Neal Messages: use post to delete and undelete messages.
2009-12-20 Brian Neal Messages: use post to delete and undelete messages.
2009-12-19 Brian Neal Implement #44 - Add age confirmation to registration form. Also added a password > 6 rule.
2009-12-19 Brian Neal Fix #26; IE8 has problems displaying lists of divs.
2009-12-19 Brian Neal Fixing #28, cosmetic issues with member map. Also fixed a bug involving the smiley and markdown interactions. Single quotes were getting HTML REMOVED by markdown.
2009-12-19 Brian Neal Implement #42; add admin actions to GCalendar.
2009-12-18 Brian Neal Implement #43, various shoutbox improvements.
2009-12-17 Brian Neal Fix #33; use $.ajax instead of $.post so we can handle errors. Also, for some reason comparing objects in a template doesn't work now. Have to compare id fields.
2009-12-14 Brian Neal Implement ticket #40. Added a simple way to search for usernames and then view their profile. Moved this ajax username search feature out of the messages app and into core.
2009-12-13 Brian Neal Fix bug in the forums unread logic.
2009-12-13 Brian Neal Implement #38: add function to mark user as a spammer. Display only active members on member list. Display login form as table (not sure why wasn't doing this before).
2009-12-09 Brian Neal Another tweak for #30; only show the admin dashboard items if they are non-zero.
2009-12-09 Brian Neal Tweak to #30, admin dashboard. Because of a bug in Django (9568), my dashboard appears on the login page. To get around this, pass in the user to the templatetag, so it can do a 'if user.is_staff' check. Also tweaked the HTML and CSS to show non-zero pending items in red. Shortened the pending item titles for readability.
2009-12-06 Brian Neal Podcast: un-inlined the channel items from the channel. That would be too bulky and too much info on one admin screen.
2009-12-06 Brian Neal Podcast enhancements for #39. Provide channel level keyword support. Provide an alternate download URL so we can support both m4a and mp3 formats.
2009-12-06 Brian Neal Forgot to add this file in r137.
2009-12-06 Brian Neal Rework r149 for #30. Got rid of the custom index. Put my dashboard in the nav-global block instead.
2009-11-30 Brian Neal Comments: in order to show a green board concept while looking at the comments in the admin, added a 'not removed' boolean function.
2009-11-29 Brian Neal Close #30. Create an admin dashboard to see pending content and requests for admin action.
2009-11-27 Brian Neal Ticket #15, add a way to report user profiles.
2009-11-27 Brian Neal Fixing #27, add instructions for MySpace Friend ID on the edit elsewhere links page.
2009-11-27 Brian Neal Markitup preview function wasn't working correctly due to the user data being escaped before going into the markdown and smiley filters.
2009-11-27 Brian Neal Cutting forums over to the new common way to add markItUp, extra smileys, and markdown help.
2009-11-27 Brian Neal Cutting comments over to the new common way of using markItUp and getting the extra smiley and markdown help dialogs.
2009-11-27 Brian Neal Use the new common way to apply markItUp to textareas and to get the smiley and markdown help dialogs for all the remaining apps except for forums and comments.
2009-11-26 Brian Neal A previous commit broke the comment preview function. Fixing this now.
2009-11-26 Brian Neal Creating a common way to display the smiley and markdown help dialogs for a markItUp textarea input form. Converted gcalendar over to it as a trial.
2009-11-20 Brian Neal Fixes #23; fix member list centering problem.
2009-11-20 Brian Neal Fixing #37. For some reason, ifequal was failing for user and shout.user. Changed it to compare user.id and shout.user.id.
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-16 Brian Neal Adding markdown help to comments and forums. Still need to add it to a few other places that use the markItUp editor.
2009-11-14 Brian Neal Add some javascript to check for posting a blank comment. Change wording on forum error message for the same thing.
2009-11-14 Brian Neal Bio: added odd/even styling to profiles. Make member's list viewable to logged in users only.
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.