Changes between Initial Version and Version 2 of Ticket #7464
- Timestamp:
- Jun 16, 2008, 9:54:37 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7464
- Property Has patch set
-
Ticket #7464 – Description
initial v2 1 1 Environment: 2 2 {{{ 3 3 Request Method: POST 4 4 Request URL: http://www.xeroflow.com/admin/projects/project/add/ … … 28 28 'django.middleware.locale.LocaleMiddleware', 29 29 'django.middleware.doc.XViewMiddleware') 30 30 }}} 31 31 32 32 Traceback: 33 {{{ 33 34 File "/home/andurinc/lib/python2.5/site-packages/django/core/handlers/base.py" in get_response 34 35 82. response = callback(request, *callback_args, **callback_kwargs) … … 60 61 Exception Type: ProgrammingError at /admin/projects/project/add/ 61 62 Exception Value: can't adapt 63 }}} 62 64 65 {{{ 63 66 params = (u'Second Project', 'second-project', u'This is a second Project', u'2', u'2008-06-16 04:54:56.224657', True, u'Mercurial', u'http://changing.this.url/django/') 64 67 sql = 'INSERT INTO "projects_project" ("name", "slug", "description", "manager_id", "started", "public", "repository_type", "repository_url") VALUES (%s, %s, %s, %s, %s, %s, %s, %s)' 68 }}} 65 69 66 70 It seems the issues of http://code.djangoproject.com/ticket/5996 have returned with the QSRF since when I went in and manually called unicode() on each param it worked fine.