annotate gpp/bio/models.py @ 128:48621ba5c385

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.
author Brian Neal <bgneal@gmail.com>
date Fri, 20 Nov 2009 01:43:32 +0000
parents 9c18250972d5
children 7ea842744a57
rev   line source
gremmie@1 1 """
gremmie@1 2 Contains models for the bio application.
gremmie@1 3 I would have picked profile for this application, but that is already taken, apparently.
gremmie@1 4 """
gremmie@1 5
gremmie@1 6 import os.path
gremmie@1 7
gremmie@1 8 from django.db import models
gremmie@1 9 from django.contrib import auth
gremmie@1 10 from django.conf import settings
bgneal@54 11 from django.core.cache import cache
gremmie@1 12
bgneal@128 13 from core.markup import SiteMarkup
bgneal@124 14
gremmie@1 15
gremmie@1 16 def avatar_file_path_for_user(username, filename):
gremmie@1 17 return os.path.join(settings.AVATAR_DIR, 'users', username, filename)
gremmie@1 18
gremmie@1 19 def avatar_file_path(instance, filename):
gremmie@1 20 return avatar_file_path_for_user(instance.user.username, filename)
gremmie@1 21
gremmie@1 22
gremmie@1 23 class UserProfile(models.Model):
gremmie@1 24 """model to represent additional information about users"""
gremmie@1 25
gremmie@1 26 user = models.ForeignKey(auth.models.User, unique=True)
gremmie@1 27 location = models.CharField(max_length=128, blank=True)
gremmie@1 28 birthday = models.DateField(blank=True, null=True,
gremmie@1 29 help_text='Optional; the year is not shown to others')
gremmie@1 30 occupation = models.CharField(max_length=128, blank=True)
gremmie@1 31 interests = models.CharField(max_length=255, blank=True)
gremmie@1 32 profile_text = models.TextField(blank=True)
gremmie@1 33 profile_html = models.TextField(blank=True)
gremmie@1 34 hide_email = models.BooleanField(default=True)
gremmie@1 35 signature = models.TextField(blank=True)
gremmie@1 36 signature_html = models.TextField(blank=True)
gremmie@1 37 avatar = models.ImageField(upload_to=avatar_file_path, blank=True)
bgneal@70 38 time_zone = models.CharField(max_length=64, blank=True,
bgneal@70 39 default='US/Pacific')
bgneal@120 40 use_24_time = models.BooleanField(default=False)
bgneal@96 41 forum_post_count = models.IntegerField(default=0)
gremmie@1 42
gremmie@1 43 def __unicode__(self):
gremmie@1 44 return self.user.username
gremmie@1 45
gremmie@1 46 class Meta:
gremmie@1 47 ordering = ('user__username', )
gremmie@1 48
gremmie@1 49 def save(self, *args, **kwargs):
bgneal@128 50 sm = SiteMarkup()
bgneal@128 51 self.profile_html = sm.convert(self.profile_text)
bgneal@128 52 self.signature_html = sm.convert(self.signature)
gremmie@1 53 super(UserProfile, self).save(*args, **kwargs)
bgneal@54 54 cache.delete('avatar_' + self.user.username)