Changeset 9073 for djangoproject.com/django_website/apps/docs/models.py
- Timestamp:
- 09/19/08 15:49:50 (4 months ago)
- Files:
-
- djangoproject.com (modified) (1 prop)
- djangoproject.com/django_website/apps/docs/models.py (modified) (1 diff)
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/docs/models.py
r6063 r9073 2 2 3 3 class DocumentRelease(models.Model): 4 version = models.CharField(max length=20, unique=True)5 repository_path = models.CharField(max length=50, help_text="(i.e. 'tags/releases/0.95' or 'branches/0.95-bugfixes')")4 version = models.CharField(max_length=20, unique=True) 5 repository_path = models.CharField(max_length=50, help_text="(i.e. 'tags/releases/0.95' or 'branches/0.95-bugfixes')") 6 6 release_date = models.DateField() 7 7
