Skip to content

Commit 99bc157

Browse files
committed
simple app called "old_app" with an initial migration
0 parents  commit 99bc157

14 files changed

+260
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
env/
2+
db
3+
*.pyc

__init__.py

Whitespace-only changes.

manage.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env python
2+
from django.core.management import execute_manager
3+
import imp
4+
try:
5+
imp.find_module('settings') # Assumed to be in the same directory.
6+
except ImportError:
7+
import sys
8+
sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py, passing it your settings module.\n" % __file__)
9+
sys.exit(1)
10+
11+
import settings
12+
13+
if __name__ == "__main__":
14+
execute_manager(settings)

old_app/__init__.py

Whitespace-only changes.

old_app/migrations/0001_initial.py

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# encoding: utf-8
2+
import datetime
3+
from south.db import db
4+
from south.v2 import SchemaMigration
5+
from django.db import models
6+
7+
class Migration(SchemaMigration):
8+
9+
def forwards(self, orm):
10+
11+
# Adding model 'Something'
12+
db.create_table('old_app_something', (
13+
('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
14+
('value', self.gf('django.db.models.fields.BooleanField')(default=False)),
15+
))
16+
db.send_create_signal('old_app', ['Something'])
17+
18+
19+
def backwards(self, orm):
20+
21+
# Deleting model 'Something'
22+
db.delete_table('old_app_something')
23+
24+
25+
models = {
26+
'old_app.something': {
27+
'Meta': {'object_name': 'Something'},
28+
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
29+
'value': ('django.db.models.fields.BooleanField', [], {'default': 'False'})
30+
}
31+
}
32+
33+
complete_apps = ['old_app']

old_app/migrations/__init__.py

Whitespace-only changes.

old_app/models.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from django.db import models
2+
3+
# Create your models here.
4+
class Something(models.Model):
5+
value = models.BooleanField(default=False)

old_app/templates/home.html

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<html>
2+
<body>
3+
<h1>App name is {{app_name}}</h1>
4+
<p>We have data:</p>
5+
<ul>
6+
{% for item in data %}
7+
<li>{{item.value}}</li>
8+
{% endfor %}
9+
</ul>
10+
</body>
11+
</html>

old_app/tests.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
"""
2+
This file demonstrates writing tests using the unittest module. These will pass
3+
when you run "manage.py test".
4+
5+
Replace this with more appropriate tests for your application.
6+
"""
7+
8+
from django.test import TestCase
9+
10+
11+
class SimpleTest(TestCase):
12+
def test_basic_addition(self):
13+
"""
14+
Tests that 1 + 1 always equals 2.
15+
"""
16+
self.assertEqual(1 + 1, 2)

old_app/views.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Create your views here.
2+
import os
3+
from old_app import models
4+
from django.shortcuts import render_to_response
5+
from django.template import Context
6+
7+
def home(request):
8+
app_name = os.path.basename(os.path.dirname(__file__))
9+
data = models.Something.objects.all()
10+
return render_to_response('home.html', Context(locals()))
11+

requirements.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
django
2+
South
3+
pylint

run

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python manage.py runserver

settings.py

+147
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
# Django settings for django_app_rename_test project.
2+
3+
DEBUG = True
4+
TEMPLATE_DEBUG = DEBUG
5+
6+
ADMINS = (
7+
# ('Your Name', '[email protected]'),
8+
)
9+
10+
MANAGERS = ADMINS
11+
12+
DATABASES = {
13+
'default': {
14+
'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
15+
'NAME': 'db', # Or path to database file if using sqlite3.
16+
'USER': '', # Not used with sqlite3.
17+
'PASSWORD': '', # Not used with sqlite3.
18+
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
19+
'PORT': '', # Set to empty string for default. Not used with sqlite3.
20+
}
21+
}
22+
23+
# Local time zone for this installation. Choices can be found here:
24+
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
25+
# although not all choices may be available on all operating systems.
26+
# On Unix systems, a value of None will cause Django to use the same
27+
# timezone as the operating system.
28+
# If running in a Windows environment this must be set to the same as your
29+
# system time zone.
30+
TIME_ZONE = 'America/Chicago'
31+
32+
# Language code for this installation. All choices can be found here:
33+
# http://www.i18nguy.com/unicode/language-identifiers.html
34+
LANGUAGE_CODE = 'en-us'
35+
36+
SITE_ID = 1
37+
38+
# If you set this to False, Django will make some optimizations so as not
39+
# to load the internationalization machinery.
40+
USE_I18N = True
41+
42+
# If you set this to False, Django will not format dates, numbers and
43+
# calendars according to the current locale
44+
USE_L10N = True
45+
46+
# Absolute filesystem path to the directory that will hold user-uploaded files.
47+
# Example: "/home/media/media.lawrence.com/media/"
48+
MEDIA_ROOT = ''
49+
50+
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
51+
# trailing slash.
52+
# Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
53+
MEDIA_URL = ''
54+
55+
# Absolute path to the directory static files should be collected to.
56+
# Don't put anything in this directory yourself; store your static files
57+
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
58+
# Example: "/home/media/media.lawrence.com/static/"
59+
STATIC_ROOT = ''
60+
61+
# URL prefix for static files.
62+
# Example: "http://media.lawrence.com/static/"
63+
STATIC_URL = '/static/'
64+
65+
# URL prefix for admin static files -- CSS, JavaScript and images.
66+
# Make sure to use a trailing slash.
67+
# Examples: "http://foo.com/static/admin/", "/static/admin/".
68+
ADMIN_MEDIA_PREFIX = '/static/admin/'
69+
70+
# Additional locations of static files
71+
STATICFILES_DIRS = (
72+
# Put strings here, like "/home/html/static" or "C:/www/django/static".
73+
# Always use forward slashes, even on Windows.
74+
# Don't forget to use absolute paths, not relative paths.
75+
)
76+
77+
# List of finder classes that know how to find static files in
78+
# various locations.
79+
STATICFILES_FINDERS = (
80+
'django.contrib.staticfiles.finders.FileSystemFinder',
81+
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
82+
# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
83+
)
84+
85+
# Make this unique, and don't share it with anybody.
86+
SECRET_KEY = 'q0+3%ava!ulu@#=dqeb))*kdd*t!(4)99&g^^0&c*n933t-wt='
87+
88+
# List of callables that know how to import templates from various sources.
89+
TEMPLATE_LOADERS = (
90+
'django.template.loaders.filesystem.Loader',
91+
'django.template.loaders.app_directories.Loader',
92+
# 'django.template.loaders.eggs.Loader',
93+
)
94+
95+
MIDDLEWARE_CLASSES = (
96+
'django.middleware.common.CommonMiddleware',
97+
'django.contrib.sessions.middleware.SessionMiddleware',
98+
'django.middleware.csrf.CsrfViewMiddleware',
99+
'django.contrib.auth.middleware.AuthenticationMiddleware',
100+
'django.contrib.messages.middleware.MessageMiddleware',
101+
)
102+
103+
ROOT_URLCONF = 'django_app_rename_test.urls'
104+
105+
TEMPLATE_DIRS = (
106+
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
107+
# Always use forward slashes, even on Windows.
108+
# Don't forget to use absolute paths, not relative paths.
109+
)
110+
111+
INSTALLED_APPS = (
112+
'django.contrib.auth',
113+
'django.contrib.contenttypes',
114+
'django.contrib.sessions',
115+
'django.contrib.sites',
116+
'django.contrib.messages',
117+
'django.contrib.staticfiles',
118+
'old_app',
119+
'south',
120+
# Uncomment the next line to enable the admin:
121+
# 'django.contrib.admin',
122+
# Uncomment the next line to enable admin documentation:
123+
# 'django.contrib.admindocs',
124+
)
125+
126+
# A sample logging configuration. The only tangible logging
127+
# performed by this configuration is to send an email to
128+
# the site admins on every HTTP 500 error.
129+
# See http://docs.djangoproject.com/en/dev/topics/logging for
130+
# more details on how to customize your logging configuration.
131+
LOGGING = {
132+
'version': 1,
133+
'disable_existing_loggers': False,
134+
'handlers': {
135+
'mail_admins': {
136+
'level': 'ERROR',
137+
'class': 'django.utils.log.AdminEmailHandler'
138+
}
139+
},
140+
'loggers': {
141+
'django.request': {
142+
'handlers': ['mail_admins'],
143+
'level': 'ERROR',
144+
'propagate': True,
145+
},
146+
}
147+
}

urls.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
from django.conf.urls.defaults import patterns, include, url
2+
3+
# Uncomment the next two lines to enable the admin:
4+
# from django.contrib import admin
5+
# admin.autodiscover()
6+
7+
urlpatterns = patterns('',
8+
# Examples:
9+
url(r'^$', 'old_app.views.home', name='home'),
10+
11+
# Uncomment the admin/doc line below to enable admin documentation:
12+
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
13+
14+
# Uncomment the next line to enable the admin:
15+
# url(r'^admin/', include(admin.site.urls)),
16+
)

0 commit comments

Comments
 (0)