- Timestamp:
- 09/19/08 15:49:50 (4 months ago)
- Files:
-
- djangoproject.com (modified) (1 prop)
- djangoproject.com/django_website/apps/aggregator/models.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
djangoproject.com
- Property svn:externals changed from
django -r6063 http://code.djangoproject.com/svn/django/trunk/django/
registration -r139 http://django-registration.googlecode.com/svn/trunk/registration/
comment_utils -r78 http://django-comment-utils.googlecode.com/svn/trunk/comment_utils/
contact_form -r48 http://django-contact-form.googlecode.com/svn/trunk/contact_form/
to
django http://code.djangoproject.com/svn/django/tags/releases/1.0/django
registration -r168 http://django-registration.googlecode.com/svn/trunk/registration/
contact_form -r49 http://django-contact-form.googlecode.com/svn/trunk/contact_form/
- Property svn:externals changed from
djangoproject.com/django_website/apps/aggregator/models.py
r7892 r9073 2 2 3 3 class Feed(models.Model): 4 title = models.CharField(max length=500)5 feed_url = models.URLField(unique=True, max length=500)6 public_url = models.URLField(max length=500)4 title = models.CharField(max_length=500) 5 feed_url = models.URLField(unique=True, max_length=500) 6 public_url = models.URLField(max_length=500) 7 7 is_defunct = models.BooleanField() 8 8 9 9 class Meta: 10 10 db_table = 'aggregator_feeds' 11 12 class Admin:13 list_display = ["title", "public_url", "is_defunct"]14 list_filter = ["is_defunct"]15 ordering = ["title"]16 search_fields = ["title", "public_url"]17 list_per_page = 50018 11 19 12 def __unicode__(self): … … 22 15 class FeedItem(models.Model): 23 16 feed = models.ForeignKey(Feed) 24 title = models.CharField(max length=500)25 link = models.URLField(max length=500)17 title = models.CharField(max_length=500) 18 link = models.URLField(max_length=500) 26 19 summary = models.TextField(blank=True) 27 20 date_modified = models.DateTimeField() 28 guid = models.CharField(max length=500, unique=True, db_index=True)21 guid = models.CharField(max_length=500, unique=True, db_index=True) 29 22 30 23 class Meta:
