Changeset 7369 for djangoproject.com/django_website/apps
- Timestamp:
- 03/27/08 09:23:58 (10 months ago)
- Files:
-
- djangoproject.com (modified) (1 prop)
- djangoproject.com/django_website/apps/accounts/urls.py (modified) (2 diffs)
- djangoproject.com/django_website/apps/blog/urls.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 -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/
- Property svn:externals changed from
djangoproject.com/django_website/apps/accounts/urls.py
r6064 r7369 1 1 from django.conf.urls.defaults import * 2 2 from django.views.generic.simple import direct_to_template 3 from django_website.apps.accounts.forms import RegistrationForm3 from registration.forms import RegistrationFormUniqueEmail 4 4 5 5 urlpatterns = patterns('', … … 7 7 r'^register/$', 8 8 "registration.views.register", 9 {'form_class': RegistrationForm },9 {'form_class': RegistrationFormUniqueEmail}, 10 10 name='registration_register', 11 11 ), djangoproject.com/django_website/apps/blog/urls.py
r3008 r7369 8 8 9 9 urlpatterns = 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')), 11 11 (r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/$', 'archive_day', info_dict), 12 12 (r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/$', 'archive_month', info_dict),
