view gpp/podcast/models.py @ 197:2baadae33f2e

Got autocomplete working for the member search. Updated django and ran into a bug where url tags with comma separated kwargs starting consuming tons of CPU throughput. The work-around is to cut over to using spaces between arguments. This is now allowed to be consistent with other tags. Did some query optimization for the news app.
author Brian Neal <bgneal@gmail.com>
date Sat, 10 Apr 2010 04:32:24 +0000
parents 1ed461fd2030
children 76ad86454ce9
line wrap: on
line source
"""Models for the podcast application."""

from django.db import models

EXPLICIT_CHOICES = (
      ('yes', 'Yes'),
      ('no', 'No'),
      ('clean', 'Clean'),
   )


class Channel(models.Model):
   """Model to represent the Channel properties"""

   title = models.CharField(max_length=255)
   link = models.URLField(verify_exists=False)
   language = models.CharField(max_length=16)
   copyright = models.CharField(max_length=255)
   subtitle = models.CharField(max_length=255)
   author = models.CharField(max_length=64)
   description = models.CharField(max_length=255)
   owner_name = models.CharField(max_length=64)
   owner_email = models.EmailField()
   image = models.ImageField(upload_to='podcast')
   category = models.CharField(max_length=64)
   explicit = models.CharField(max_length=8, choices=EXPLICIT_CHOICES)
   keywords = models.CharField(max_length=255)

   def __unicode__(self):
      return self.title


class Item(models.Model):
   """Model to represent a channel item"""
   channel = models.ForeignKey(Channel)
   title = models.CharField(max_length=255)
   author = models.CharField(max_length=255)
   subtitle = models.CharField(max_length=255)
   summary = models.TextField()
   enclosure_url = models.URLField(verify_exists=False)
   alt_enclosure_url = models.URLField(verify_exists=False, blank=True)
   enclosure_length = models.IntegerField()
   enclosure_type = models.CharField(max_length=32)
   guid = models.CharField(max_length=255)
   pubdate = models.DateTimeField()
   duration = models.CharField(max_length=16)
   keywords = models.CharField(max_length=255)
   explicit = models.CharField(max_length=8, choices=EXPLICIT_CHOICES)

   @models.permalink
   def get_absolute_url(self):
      return ('podcast.views.detail', [str(self.id)])

   def __unicode__(self):
      return self.title

   class Meta:
      ordering = ('-pubdate', )