Skip to content

Commit c32328e

Browse files
committed
Initial empty application and example.
0 parents  commit c32328e

File tree

9 files changed

+139
-0
lines changed

9 files changed

+139
-0
lines changed

LICENSE

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Copyright (c) 2008, Alexander Artemenko
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
* Redistributions of source code must retain the above copyright
7+
notice, this list of conditions and the following disclaimer.
8+
* Redistributions in binary form must reproduce the above copyright
9+
notice, this list of conditions and the following disclaimer in the
10+
documentation and/or other materials provided with the distribution.
11+
* Neither the name of the <organization> nor the
12+
names of its contributors may be used to endorse or promote products
13+
derived from this software without specific prior written permission.
14+
15+
THIS SOFTWARE IS PROVIDED BY Alexander Artemenko ''AS IS'' AND ANY
16+
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18+
DISCLAIMED. IN NO EVENT SHALL <copyright holder> BE LIABLE FOR ANY
19+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Introduction
2+
------------
3+
4+
Django-fields is an application which includes different kinds of models fields.

django_fields/__init__.py

Whitespace-only changes.

django_fields/models.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.db import models
2+
3+
# Create your models here.

django_fields/views.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Create your views here.

example/__init__.py

Whitespace-only changes.

example/manage.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env python
2+
from django.core.management import execute_manager
3+
try:
4+
import settings # Assumed to be in the same directory.
5+
except ImportError:
6+
import sys
7+
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(If the file settings.py does indeed exist, it's causing an ImportError somehow.)\n" % __file__)
8+
sys.exit(1)
9+
10+
if __name__ == "__main__":
11+
execute_manager(settings)

example/settings.py

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
# Django settings for example project.
2+
3+
DEBUG = True
4+
TEMPLATE_DEBUG = DEBUG
5+
6+
ADMINS = (
7+
# ('Your Name', '[email protected]'),
8+
)
9+
10+
MANAGERS = ADMINS
11+
12+
DATABASE_ENGINE = '' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
13+
DATABASE_NAME = '' # Or path to database file if using sqlite3.
14+
DATABASE_USER = '' # Not used with sqlite3.
15+
DATABASE_PASSWORD = '' # Not used with sqlite3.
16+
DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3.
17+
DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3.
18+
19+
# Local time zone for this installation. Choices can be found here:
20+
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
21+
# although not all choices may be available on all operating systems.
22+
# If running in a Windows environment this must be set to the same as your
23+
# system time zone.
24+
TIME_ZONE = 'America/Chicago'
25+
26+
# Language code for this installation. All choices can be found here:
27+
# http://www.i18nguy.com/unicode/language-identifiers.html
28+
LANGUAGE_CODE = 'en-us'
29+
30+
SITE_ID = 1
31+
32+
# If you set this to False, Django will make some optimizations so as not
33+
# to load the internationalization machinery.
34+
USE_I18N = True
35+
36+
# Absolute path to the directory that holds media.
37+
# Example: "/home/media/media.lawrence.com/"
38+
MEDIA_ROOT = ''
39+
40+
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
41+
# trailing slash if there is a path component (optional in other cases).
42+
# Examples: "http://media.lawrence.com", "http://example.com/media/"
43+
MEDIA_URL = ''
44+
45+
# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
46+
# trailing slash.
47+
# Examples: "http://foo.com/media/", "/media/".
48+
ADMIN_MEDIA_PREFIX = '/media/'
49+
50+
# Make this unique, and don't share it with anybody.
51+
SECRET_KEY = '=r521(6qmkk#uus#gpiml@5+26@_qcj^tmk0%12byrd6=qh954'
52+
53+
# List of callables that know how to import templates from various sources.
54+
TEMPLATE_LOADERS = (
55+
'django.template.loaders.filesystem.load_template_source',
56+
'django.template.loaders.app_directories.load_template_source',
57+
# 'django.template.loaders.eggs.load_template_source',
58+
)
59+
60+
MIDDLEWARE_CLASSES = (
61+
'django.middleware.common.CommonMiddleware',
62+
'django.contrib.sessions.middleware.SessionMiddleware',
63+
'django.contrib.auth.middleware.AuthenticationMiddleware',
64+
)
65+
66+
ROOT_URLCONF = 'example.urls'
67+
68+
TEMPLATE_DIRS = (
69+
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
70+
# Always use forward slashes, even on Windows.
71+
# Don't forget to use absolute paths, not relative paths.
72+
)
73+
74+
INSTALLED_APPS = (
75+
'django.contrib.auth',
76+
'django.contrib.contenttypes',
77+
'django.contrib.sessions',
78+
'django.contrib.sites',
79+
)

example/urls.py

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
from django.conf.urls.defaults import *
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+
# Example:
9+
# (r'^example/', include('example.foo.urls')),
10+
11+
# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
12+
# to INSTALLED_APPS to enable admin documentation:
13+
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
14+
15+
# Uncomment the next line to enable the admin:
16+
# (r'^admin/(.*)', admin.site.root),
17+
)

0 commit comments

Comments
 (0)