1
0
mirror of https://github.com/django/django.git synced 2025-10-13 16:59:35 +00:00
Malcolm Tredinnick d3980231ff unicode: Changed the way re-encoding of form field submission works so that
file uploads are no longer completely broken. Added tests for this as well.


git-svn-id: http://code.djangoproject.com/svn/django/branches/unicode@5464 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-06-11 20:02:08 +00:00

8 lines
186 B
Python

from django.conf.urls.defaults import *
import views
urlpatterns = patterns('',
(r'^no_template_view/$', views.no_template_view),
(r'^file_upload/$', views.file_upload_view),
)