Django

Code

Show
Ignore:
Timestamp:
07/01/08 10:10:51 (6 months ago)
Author:
jacob
Message:

Fixed #2070: refactored Django's file upload capabilities.

A description of the new features can be found in the new upload handling documentation; the executive summary is that Django will now happily handle uploads of large files without issues.

This changes the representation of uploaded files from dictionaries to bona fide objects; see BackwardsIncompatibleChanges for details.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/tests/urls.py

    r7726 r7814  
    55    (r'^test_client/', include('modeltests.test_client.urls')), 
    66    (r'^test_client_regress/', include('regressiontests.test_client_regress.urls')), 
     7 
     8    # File upload test views 
     9    (r'^file_uploads/', include('regressiontests.file_uploads.urls')), 
    710 
    811    # Always provide the auth system login and logout views