Skip to content

Commit 87b84f3

Browse files
committed
Initial commit
0 parents  commit 87b84f3

File tree

21 files changed

+297
-0
lines changed

21 files changed

+297
-0
lines changed

dgentledjango/__init__.py

Whitespace-only changes.

dgentledjango/__init__.pyc

148 Bytes
Binary file not shown.

dgentledjango/settings.py

Lines changed: 153 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,153 @@
1+
# Django settings for dgentledjango project.
2+
3+
DEBUG = True
4+
TEMPLATE_DEBUG = DEBUG
5+
6+
ADMINS = (
7+
# ('Your Name', 'your_email@example.com'),
8+
)
9+
10+
MANAGERS = ADMINS
11+
12+
DATABASES = {
13+
'default': {
14+
'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
15+
'NAME': 'dgentledjango', # Or path to database file if using sqlite3.
16+
'USER': 'class', # Not used with sqlite3.
17+
'PASSWORD': 'class', # 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+
# In a Windows environment this must be set to your system time zone.
27+
TIME_ZONE = 'America/Chicago'
28+
29+
# Language code for this installation. All choices can be found here:
30+
# http://www.i18nguy.com/unicode/language-identifiers.html
31+
LANGUAGE_CODE = 'en-us'
32+
33+
SITE_ID = 1
34+
35+
# If you set this to False, Django will make some optimizations so as not
36+
# to load the internationalization machinery.
37+
USE_I18N = True
38+
39+
# If you set this to False, Django will not format dates, numbers and
40+
# calendars according to the current locale.
41+
USE_L10N = True
42+
43+
# If you set this to False, Django will not use timezone-aware datetimes.
44+
USE_TZ = 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+
# Additional locations of static files
66+
STATICFILES_DIRS = (
67+
# Put strings here, like "/home/html/static" or "C:/www/django/static".
68+
# Always use forward slashes, even on Windows.
69+
# Don't forget to use absolute paths, not relative paths.
70+
)
71+
72+
# List of finder classes that know how to find static files in
73+
# various locations.
74+
STATICFILES_FINDERS = (
75+
'django.contrib.staticfiles.finders.FileSystemFinder',
76+
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
77+
# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
78+
)
79+
80+
# Make this unique, and don't share it with anybody.
81+
SECRET_KEY = '*3&362t)x&8mcab39vflafv3vmqmjz6j(qgbuj=z*$_psi4eio'
82+
83+
# List of callables that know how to import templates from various sources.
84+
TEMPLATE_LOADERS = (
85+
'django.template.loaders.filesystem.Loader',
86+
'django.template.loaders.app_directories.Loader',
87+
# 'django.template.loaders.eggs.Loader',
88+
)
89+
90+
MIDDLEWARE_CLASSES = (
91+
'django.middleware.common.CommonMiddleware',
92+
'django.contrib.sessions.middleware.SessionMiddleware',
93+
'django.middleware.csrf.CsrfViewMiddleware',
94+
'django.contrib.auth.middleware.AuthenticationMiddleware',
95+
'django.contrib.messages.middleware.MessageMiddleware',
96+
# Uncomment the next line for simple clickjacking protection:
97+
# 'django.middleware.clickjacking.XFrameOptionsMiddleware',
98+
)
99+
100+
ROOT_URLCONF = 'dgentledjango.urls'
101+
102+
# Python dotted path to the WSGI application used by Django's runserver.
103+
WSGI_APPLICATION = 'dgentledjango.wsgi.application'
104+
105+
TEMPLATE_DIRS = (
106+
'/var/www/dgentledjango/templates'
107+
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
108+
# Always use forward slashes, even on Windows.
109+
# Don't forget to use absolute paths, not relative paths.
110+
)
111+
112+
INSTALLED_APPS = (
113+
'django.contrib.auth',
114+
'django.contrib.contenttypes',
115+
'django.contrib.sessions',
116+
'django.contrib.sites',
117+
'django.contrib.messages',
118+
'django.contrib.staticfiles',
119+
'intro',
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 when DEBUG=False.
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+
'filters': {
135+
'require_debug_false': {
136+
'()': 'django.utils.log.RequireDebugFalse'
137+
}
138+
},
139+
'handlers': {
140+
'mail_admins': {
141+
'level': 'ERROR',
142+
'filters': ['require_debug_false'],
143+
'class': 'django.utils.log.AdminEmailHandler'
144+
}
145+
},
146+
'loggers': {
147+
'django.request': {
148+
'handlers': ['mail_admins'],
149+
'level': 'ERROR',
150+
'propagate': True,
151+
},
152+
}
153+
}

dgentledjango/settings.pyc

2.91 KB
Binary file not shown.

dgentledjango/urls.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
from django.conf.urls 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'^$', 'dgentledjango.views.home', name='home'),
10+
# url(r'^dgentledjango/', include('dgentledjango.foo.urls')),
11+
url(r'^intro/$', 'intro.views.index'),
12+
url(r'^teacher/(?P<teacher_id>\d+)/$', 'intro.views.teacherdetail'),
13+
url(r'^student/(?P<student_id>\d+)/$', 'intro.views.studentdetail'),
14+
15+
# Uncomment the admin/doc line below to enable admin documentation:
16+
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
17+
18+
# Uncomment the next line to enable the admin:
19+
url(r'^admin/', include(admin.site.urls)),
20+
)

dgentledjango/urls.pyc

635 Bytes
Binary file not shown.

dgentledjango/wsgi.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
"""
2+
WSGI config for dgentledjango project.
3+
4+
This module contains the WSGI application used by Django's development server
5+
and any production WSGI deployments. It should expose a module-level variable
6+
named ``application``. Django's ``runserver`` and ``runfcgi`` commands discover
7+
this application via the ``WSGI_APPLICATION`` setting.
8+
9+
Usually you will have the standard Django WSGI application here, but it also
10+
might make sense to replace the whole Django WSGI application with a custom one
11+
that later delegates to the Django one. For example, you could introduce WSGI
12+
middleware here, or combine a Django application with an application of another
13+
framework.
14+
15+
"""
16+
import os
17+
18+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "dgentledjango.settings")
19+
20+
# This application object is used by any WSGI server configured to use this
21+
# file. This includes Django's development server, if the WSGI_APPLICATION
22+
# setting points here.
23+
from django.core.wsgi import get_wsgi_application
24+
application = get_wsgi_application()
25+
26+
# Apply WSGI middleware here.
27+
# from helloworld.wsgi import HelloWorldApplication
28+
# application = HelloWorldApplication(application)

dgentledjango/wsgi.pyc

1.03 KB
Binary file not shown.

intro/__init__.py

Whitespace-only changes.

intro/__init__.pyc

140 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)