log gpp/bio/forms.py @ 484:bbbc357ac5f3

age author description
Tue, 18 Oct 2011 00:04:37 +0000 Brian Neal For #233; first commit for adding social media sharing buttons to news stories.
Sat, 09 Jul 2011 02:00:48 +0000 Brian Neal Fixing #225; for some reason MySQL finds the user 'John' when searching for 'John ' (note trailing space). This doesn't happen on SQLite. This causes a NoReverseMatch when searching for 'John ' in the member search. The solution is to call strip() on the form field contents in the clean_username() method of the search form.
Mon, 21 Mar 2011 00:39:52 +0000 Brian Neal Fixing #175; add an auto-subscribe and auto-favorite forum topic feature. Added 2 flags to the user profile. Added 2 functions that are called on the post post-save signal that auto-favorite and auto-subscribe the post creator if they have requested this service.
Sat, 26 Feb 2011 18:50:59 +0000 Brian Neal Fix typo that referred to non-existant setting MAX_AVATAR_SIZE.
Thu, 27 Jan 2011 02:56:10 +0000 Brian Neal Fixing #142; cut over to the django.contrib.staticfiles app.
Fri, 24 Sep 2010 02:12:09 +0000 Brian Neal Closing #98. Animated GIFs were losing their transparency and animated properties when saved as avatars. Reworked the avatar save process to only run the avatar through PIL if it is too big. This preserves the original uploaded file if it is within the desired size settings. This may still mangle big animated gifs. If this becomes a problem, then maybe look into calling the PIL Image.resize() method directly. Moved the PIL image specific functions from bio.forms to a new module: core.image for better reusability in the future.