Changes between Initial Version and Version 2 of Ticket #7464


Ignore:
Timestamp:
Jun 16, 2008, 9:54:37 AM (16 years ago)
Author:
Ramiro Morales
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7464

    • Property Has patch set
  • Ticket #7464 – Description

    initial v2  
    11Environment:
    2 
     2{{{
    33Request Method: POST
    44Request URL: http://www.xeroflow.com/admin/projects/project/add/
     
    2828 'django.middleware.locale.LocaleMiddleware',
    2929 'django.middleware.doc.XViewMiddleware')
    30 
     30}}}
    3131
    3232Traceback:
     33{{{
    3334File "/home/andurinc/lib/python2.5/site-packages/django/core/handlers/base.py" in get_response
    3435  82.                 response = callback(request, *callback_args, **callback_kwargs)
     
    6061Exception Type: ProgrammingError at /admin/projects/project/add/
    6162Exception Value: can't adapt
     63}}}
    6264
     65{{{
    6366params = (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/')
    6467sql = '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}}}
    6569
    6670It 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.
Back to Top