diff options
author | Stanislav Ochotnicky <sochotnicky@gmail.com> | 2009-08-06 16:22:04 +0200 |
---|---|---|
committer | Stanislav Ochotnicky <sochotnicky@gmail.com> | 2009-08-06 16:22:04 +0200 |
commit | d65cd850c319ad177dd367ac35a81e4cf0d1622a (patch) | |
tree | 987dafb5bfaa4c1750072a304f491ee7304daba1 | |
parent | Added check for architecture before emerge (diff) | |
download | collagen-d65cd850c319ad177dd367ac35a81e4cf0d1622a.tar.gz collagen-d65cd850c319ad177dd367ac35a81e4cf0d1622a.tar.bz2 collagen-d65cd850c319ad177dd367ac35a81e4cf0d1622a.zip |
Add basic web presentation structure
-rw-r--r-- | web/- | 0 | ||||
-rw-r--r-- | web/@medzi | 0 | ||||
-rw-r--r-- | web/__init__.py | 0 | ||||
-rw-r--r-- | web/collagen/__init__.py | 0 | ||||
-rw-r--r-- | web/collagen/admin.py | 14 | ||||
l--------- | web/collagen/models.py | 1 | ||||
-rw-r--r-- | web/collagen/views.py | 1 | ||||
-rw-r--r-- | web/manage.py | 11 | ||||
-rw-r--r-- | web/settings.py | 80 | ||||
-rw-r--r-- | web/urls.py | 17 |
10 files changed, 124 insertions, 0 deletions
diff --git a/web/@medzi b/web/@medzi new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/web/@medzi diff --git a/web/__init__.py b/web/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/web/__init__.py diff --git a/web/collagen/__init__.py b/web/collagen/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/web/collagen/__init__.py diff --git a/web/collagen/admin.py b/web/collagen/admin.py new file mode 100644 index 0000000..a45bedb --- /dev/null +++ b/web/collagen/admin.py @@ -0,0 +1,14 @@ +from web.collagen.models import * +from django.contrib import admin + +admin.site.register(Package) +admin.site.register(PackageVersion) +admin.site.register(PackageCategory) +admin.site.register(PortageProfile) +admin.site.register(Tinderbox) +admin.site.register(PackageProperties) +admin.site.register(Attachment) +admin.site.register(Useflag) +admin.site.register(File) +admin.site.register(FileType) +admin.site.register(PackageProperties_File) diff --git a/web/collagen/models.py b/web/collagen/models.py new file mode 120000 index 0000000..92e8020 --- /dev/null +++ b/web/collagen/models.py @@ -0,0 +1 @@ +../../src/matchbox/db/main/models.py
\ No newline at end of file diff --git a/web/collagen/views.py b/web/collagen/views.py new file mode 100644 index 0000000..60f00ef --- /dev/null +++ b/web/collagen/views.py @@ -0,0 +1 @@ +# Create your views here. diff --git a/web/manage.py b/web/manage.py new file mode 100644 index 0000000..5e78ea9 --- /dev/null +++ b/web/manage.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python +from django.core.management import execute_manager +try: + import settings # Assumed to be in the same directory. +except ImportError: + import sys + 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__) + sys.exit(1) + +if __name__ == "__main__": + execute_manager(settings) diff --git a/web/settings.py b/web/settings.py new file mode 100644 index 0000000..a732c73 --- /dev/null +++ b/web/settings.py @@ -0,0 +1,80 @@ +# Django settings for web project. + +DEBUG = True +TEMPLATE_DEBUG = DEBUG + +ADMINS = ( + # ('Your Name', 'your_email@domain.com'), +) + +MANAGERS = ADMINS + +DATABASE_ENGINE = 'postgresql_psycopg2' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. +DATABASE_NAME = 'collagen' # Or path to database file if using sqlite3. +DATABASE_USER = 'username' # Not used with sqlite3. +DATABASE_PASSWORD = 'password' # Not used with sqlite3. +DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3. +DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3. + +# Local time zone for this installation. Choices can be found here: +# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name +# although not all choices may be available on all operating systems. +# If running in a Windows environment this must be set to the same as your +# system time zone. +TIME_ZONE = 'America/Chicago' + +# Language code for this installation. All choices can be found here: +# http://www.i18nguy.com/unicode/language-identifiers.html +LANGUAGE_CODE = 'en-us' + +SITE_ID = 1 + +# If you set this to False, Django will make some optimizations so as not +# to load the internationalization machinery. +USE_I18N = True + +# Absolute path to the directory that holds media. +# Example: "/home/media/media.lawrence.com/" +MEDIA_ROOT = '' + +# URL that handles the media served from MEDIA_ROOT. Make sure to use a +# trailing slash if there is a path component (optional in other cases). +# Examples: "http://media.lawrence.com", "http://example.com/media/" +MEDIA_URL = '' + +# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a +# trailing slash. +# Examples: "http://foo.com/media/", "/media/". +ADMIN_MEDIA_PREFIX = '/media/' + +# Make this unique, and don't share it with anybody. +SECRET_KEY = '^5n+#)0f3#&@d=$j$4k0qy7g099c@&q$91r&hsjm77n9mv&cta' + +# List of callables that know how to import templates from various sources. +TEMPLATE_LOADERS = ( + 'django.template.loaders.filesystem.load_template_source', + 'django.template.loaders.app_directories.load_template_source', +# 'django.template.loaders.eggs.load_template_source', +) + +MIDDLEWARE_CLASSES = ( + 'django.middleware.common.CommonMiddleware', + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', +) + +ROOT_URLCONF = 'web.urls' + +TEMPLATE_DIRS = ( + # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". + # Always use forward slashes, even on Windows. + # Don't forget to use absolute paths, not relative paths. +) + +INSTALLED_APPS = ( + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'web.collagen', + 'django.contrib.admin' +) diff --git a/web/urls.py b/web/urls.py new file mode 100644 index 0000000..e643225 --- /dev/null +++ b/web/urls.py @@ -0,0 +1,17 @@ +from django.conf.urls.defaults import * + +# Uncomment the next two lines to enable the admin: +from django.contrib import admin +admin.autodiscover() + +urlpatterns = patterns('', + # Example: + # (r'^web/', include('web.foo.urls')), + + # Uncomment the admin/doc line below and add 'django.contrib.admindocs' + # to INSTALLED_APPS to enable admin documentation: + #(r'^admin/doc/', include('django.contrib.admindocs.urls')), + + # Uncomment the next line to enable the admin: + (r'^admin/(.*)', admin.site.root), +) |