Django

Code

Show
Ignore:
Timestamp:
09/19/08 15:49:50 (4 months ago)
Author:
jacob
Message:

[djangoproject.com] updated website to use Django 1.0.

Files:

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/
  • djangoproject.com/django_website/apps/docs/models.py

    r6063 r9073  
    22 
    33class DocumentRelease(models.Model): 
    4     version = models.CharField(maxlength=20, unique=True) 
    5     repository_path = models.CharField(maxlength=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')") 
    66    release_date = models.DateField() 
    77