Django

Code

Show
Ignore:
Timestamp:
03/27/08 09:23:58 (10 months ago)
Author:
jacob
Message:

[website] checked in some outstanding template changes.

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 -r87 http://django-registration.googlecode.com/svn/trunk/registration/
      comment_utils -r78 http://django-comment-utils.googlecode.com/svn/trunk/comment_utils/
      to
      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/
  • djangoproject.com/django_website/apps/accounts/urls.py

    r6064 r7369  
    11from django.conf.urls.defaults import * 
    22from django.views.generic.simple import direct_to_template 
    3 from django_website.apps.accounts.forms import RegistrationForm 
     3from registration.forms import RegistrationFormUniqueEmail 
    44 
    55urlpatterns = patterns('', 
     
    77        r'^register/$',  
    88        "registration.views.register",  
    9         {'form_class': RegistrationForm}, 
     9        {'form_class': RegistrationFormUniqueEmail}, 
    1010        name='registration_register', 
    1111    ), 
  • djangoproject.com/django_website/apps/blog/urls.py

    r3008 r7369  
    88 
    99urlpatterns = patterns('django.views.generic.date_based', 
    10    (r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>\w+)/$', 'object_detail', dict(info_dict, slug_field='slug')), 
     10   (r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>[\w-]+)/$', 'object_detail', dict(info_dict, slug_field='slug')), 
    1111   (r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/$', 'archive_day', info_dict), 
    1212   (r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/$', 'archive_month', info_dict),