Skip to content

tracyhenry/minimal-django-file-upload-example

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 

Repository files navigation

minimal-django-file-upload-example

Project contains source code that was made originally for the Django file upload example at StackOverflow.

The goal with minimal-django-file-upload-example is to demonstrate and teach how file uploading is done with Django. Because of the academic nature of the project all the extra functionality is left out. Otherwise you would have hard time to guess what is important and what is not.

Currently Django 1.3, Django 1.4, Django 1.5, Django 1.6, Django 1.7, and Django 1.8 are supported. See the code for each in src/for_django_1-x/.

Usage (Django 1.8)

First ensure you have Django 1.8 installed. Then:

$ git clone https://github.com/axelpale/minimal-django-file-upload-example.git
$ cd minimal-django-file-upload-example
$ cd src/for_django_1-8/myproject
$ python manage.py migrate
$ python manage.py runserver

Differences between code for Django 1.7 and 1.8

  • settings.py: New TEMPLATE settings. See upgrading instructions for details.
  • settings.py: reverted to the default directory for db.sqlite3 database and media dir.
  • urls.py: Added explicit RedirectView permanent argument: RedirectView.as_view(url='/myapp/list/', permanent=True))

Differences between code for Django 1.6 and 1.7

  • use ./manage.py migrate instead of ./manage.py syncdb

Differences between code for Django 1.5 and 1.6

  • myapp/urls.py: changed the line from django.conf.urls.defaults import patterns, url to from django.conf.urls import patterns, url

Differences between code for Django 1.4 and 1.5

  • urls.py: Django 1.5 recommends RedirectView to be used instead of django.views.generic.simple.redirect_to. See RedirectView for details.
  • list.html: url template tag requires view names to be double quoted. See Django 1.5 release note overview for details.

Differences between code for Django 1.3 and 1.4

  • Directory hierachy follows Django's defaults. For example manage.py has risen one level up.
  • Due to hierarchy change absolute package paths are now more recommended and therefore used. Look INSTALLED_APPS in settings.py for example.
  • Little more comments
  • More encoding definitions # -- coding: utf-8 --
  • Database renamed to database.sqlite3

Releases

No releases published

Packages

No packages published

Languages

  • Python 88.4%
  • HTML 11.6%