Mercurial > public > sg101
graph
- Rework r149 for #30. Got rid of the custom index. Put my dashboard in the nav-global block instead.2009-12-06, by 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-30, by Brian Neal
- Close #30. Create an admin dashboard to see pending content and requests for admin action.2009-11-29, by Brian Neal
- Ticket #15, add a way to report user profiles.2009-11-27, by Brian Neal
- Fixing #27, add instructions for MySpace Friend ID on the edit elsewhere links page.2009-11-27, by 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, by Brian Neal
- Cutting forums over to the new common way to add markItUp, extra smileys, and markdown help.2009-11-27, by 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, by 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-27, by Brian Neal
- A previous commit broke the comment preview function. Fixing this now.2009-11-26, by 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-26, by Brian Neal
- Fixes #23; fix member list centering problem.2009-11-20, by 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, by 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-20, by 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-16, by 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, by Brian Neal
- Bio: added odd/even styling to profiles. Make member's list viewable to logged in users only.2009-11-14, by 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-14, by Brian Neal
- Forums: added a jquery ui dialog of extra smileys.2009-11-08, by Brian Neal
- Forums: monkey-patch the user profile onto the post object when doing a quick ajax reply.2009-10-27, by Brian Neal
- Forums: display signature on posts. Display icons for PM and email (if not hidden) on each post.2009-10-27, by 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-25, by Brian Neal
- Forgot to commit the template for the forums split topic view.2009-10-24, by 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-24, by 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, by Brian Neal
- Fix typo introduced in last commit.2009-10-23, by Brian Neal
- Forums: split topic.2009-10-22, by Brian Neal
- Forums: Implemented unread status for topics and posts.2009-10-11, by Brian Neal
- Forums: ForumLastVisit logic in place. Need to add code for topics and posts next.2009-10-11, by 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-30, by 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-28, by Brian Neal
- Forums: implemented the move topic feature.2009-09-26, by Brian Neal
- Forums: implemented topic level moderator controls.2009-09-26, by Brian Neal
- Forums: quoting existing posts.2009-09-26, by Brian Neal
- Forums: implemented post delete feature.2009-09-22, by Brian Neal
- Forums: implemented the edit post function.2009-09-19, by Brian Neal
- Forums: Added icons for forum post moderation tools. Still need to add functionality that goes behind these.2009-09-17, by 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, by Brian Neal
- Forums: added template support for displaying stickied topics.2009-09-17, by 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, by Brian Neal
- Forums: use select_related() with get_object_or_404() to reduce queries.2009-09-16, by 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-15, by Brian Neal
- Forums: added error handling to the flagging of posts. Did the same with the comments function too.2009-09-14, by Brian Neal
- Forums: flag posts.2009-09-13, by 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, by Brian Neal
- Forums: added forum post counts for each user in the user profile.2009-09-13, by Brian Neal
- Forums: use markitup editor on forums post forms.2009-09-13, by Brian Neal
- Forums: minor cosmetic tweaks mainly.2009-09-13, by Brian Neal
- Forums: paginate the topic list inside a forum.2009-09-13, by Brian Neal
- Need an import for the InvalidPage exception from django.core.paginator.2009-09-13, by Brian Neal
- Forums: added support for Post get_absolute_url()2009-09-13, by Brian Neal
- Forums: pagination for topics.2009-09-13, by Brian Neal
- Forums: Got the reply function working.2009-09-12, by Brian Neal
- Updates to base template. Added a link to forums. Display username in header if logged in.2009-09-12, by Brian Neal
- Forums: added intra-page links for posts. Added last_page variable for topic. Conditionally display reply form using last_page.2009-09-12, by Brian Neal
- Forums: Some display work for the posts within a topic. Sketched out a post reply form.2009-09-05, by Brian Neal
- Forums: put the forum indices under the url forums/forum to avoid clashing with other functions. Modified the forum index template to have a link to the topic creator's profile.2009-08-30, by Brian Neal
- Forums: added a last_post_info template tag. Still need to add a go to last post icon for it.2009-08-29, by Brian Neal
- Forums: Added the ability to add a new topic. This is very much a work in progress.2009-08-29, by Brian Neal
- Forums: started the ability to display topics inside a forum.2009-08-23, by Brian Neal