summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMadhusudan.C.S2009-11-05 03:24:06 +0530
committerMadhusudan.C.S2009-11-05 03:24:06 +0530
commit0f665d4ab72c507b18f1eaf72948092fa1af0d0a (patch)
treea7b0ece2a7d1234febd7b1921d5252e121b4e6b4
parent8960a9793629006c18bc85410dbfdb8d496e0600 (diff)
parentce491368d3fcd804e384971cc32911fb2c195047 (diff)
downloadscipycon-0f665d4ab72c507b18f1eaf72948092fa1af0d0a.tar.gz
scipycon-0f665d4ab72c507b18f1eaf72948092fa1af0d0a.tar.bz2
scipycon-0f665d4ab72c507b18f1eaf72948092fa1af0d0a.zip
Merged Mainline and Madhu branches.
-rw-r--r--.hgignore1
-rw-r--r--buildout.cfg2
-rw-r--r--production.cfg5
-rw-r--r--project/production.py12
4 files changed, 13 insertions, 7 deletions
diff --git a/.hgignore b/.hgignore
index 1b7c80c..0a69a2b 100644
--- a/.hgignore
+++ b/.hgignore
@@ -38,4 +38,5 @@ project.db
project/media/user/*
project/static/media
project/kiwipycon/user/*.pyc
+apache/*
diff --git a/buildout.cfg b/buildout.cfg
index e65cbfc..4adff57 100644
--- a/buildout.cfg
+++ b/buildout.cfg
@@ -61,7 +61,7 @@ urls =
[django-command-extensions]
recipe = zerokspot.recipe.git
-repository = http://github.com/django-extensions/django-extensions.git
+repository = git://github.com/django-extensions/django-extensions.git
[south]
recipe = infrae.subversion
diff --git a/production.cfg b/production.cfg
index 67ae8be..ee5ddc9 100644
--- a/production.cfg
+++ b/production.cfg
@@ -2,5 +2,6 @@
extends =
buildout.cfg
-eggs +=
- psycopg2
+#eggs +=
+# psycopg2
+# \ No newline at end of file
diff --git a/project/production.py b/project/production.py
index 4f89b15..1104c24 100644
--- a/project/production.py
+++ b/project/production.py
@@ -1,7 +1,10 @@
#django
from project.settings import *
-SITE_ID = 2
+DEBUG=True
+TEMPLATE_DEBUG=DEBUG
+
+SITE_ID = 1
INSTALLED_APPS = (
'django.contrib.auth',
@@ -23,10 +26,11 @@ INSTALLED_APPS = (
'basic.media',
'django_extensions',
'south',
+ 'registration',
)
-DATABASE_ENGINE = 'postgresql_psycopg2'
-DATABASE_NAME = 'kpc09'
-DATABASE_USER = 'kpc09'
+DATABASE_ENGINE = 'mysql'
+DATABASE_NAME = 'conference2009'
+DATABASE_USER = 'root'
# Imports DATABASE_PASSWORD from project/local.py that is not part of mercurial repo
from project.local import DATABASE_PASSWORD