diff options
author | hg@fossee.in | 2009-12-16 22:27:22 +0530 |
---|---|---|
committer | hg@fossee.in | 2009-12-16 22:27:22 +0530 |
commit | 885670ee221ec8f926073233c43edb1ebbec5583 (patch) | |
tree | 4bdb764c36448540be6b9288d25b88e3cb9ef777 | |
parent | 9b069aff7c30ba2a2092073892965a1e0a55f935 (diff) | |
download | scipycon-885670ee221ec8f926073233c43edb1ebbec5583.tar.gz scipycon-885670ee221ec8f926073233c43edb1ebbec5583.tar.bz2 scipycon-885670ee221ec8f926073233c43edb1ebbec5583.zip |
All changes freeze along with Apache static file serving.
-rw-r--r-- | project/development.py | 2 | ||||
-rw-r--r-- | project/production.py | 2 | ||||
-rw-r--r-- | project/settings.py | 2 | ||||
-rw-r--r-- | project/templates/base.html | 16 |
4 files changed, 11 insertions, 11 deletions
diff --git a/project/development.py b/project/development.py index 0ec4671..07ee62c 100644 --- a/project/development.py +++ b/project/development.py @@ -30,7 +30,7 @@ INSTALLED_APPS = ( ) DATABASE_ENGINE = 'mysql' -DATABASE_NAME = 'conference' +DATABASE_NAME = 'conference2009' DATABASE_USER = 'root' DATABASE_PASSWORD = '' diff --git a/project/production.py b/project/production.py index 1104c24..473b03b 100644 --- a/project/production.py +++ b/project/production.py @@ -1,7 +1,7 @@ #django from project.settings import * -DEBUG=True +DEBUG=False TEMPLATE_DEBUG=DEBUG SITE_ID = 1 diff --git a/project/settings.py b/project/settings.py index c27b042..0719814 100644 --- a/project/settings.py +++ b/project/settings.py @@ -77,4 +77,4 @@ TEMPLATE_CONTEXT_PROCESSORS = ( DEFAULT_FROM_EMAIL = 'admin@scipy.in' -ACCOUNT_ACTIVATION_DAYS = 55
\ No newline at end of file +ACCOUNT_ACTIVATION_DAYS = 55 diff --git a/project/templates/base.html b/project/templates/base.html index e7dd5ee..5c6c47f 100644 --- a/project/templates/base.html +++ b/project/templates/base.html @@ -4,15 +4,15 @@ <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>{% block title %}{% endblock %} SciPy.in 2009, December 12 - 17, 2009, Trivandrum, Kerala, India</title> - <link rel="stylesheet" type="text/css" href="/jquery/jquery.jgrowl.css" /> - <link rel="stylesheet" type="text/css" href="/css/styles-20090826.css" /> + <link rel="stylesheet" type="text/css" href="/static/jquery/jquery.jgrowl.css" /> + <link rel="stylesheet" type="text/css" href="/static/css/styles-20090826.css" /> - <script type="text/javascript" src="/jquery/jquery.pack.js"></script> - <script type="text/javascript" src="/jquery/jquery.jgrowl_minimized.js"></script> - <script type="text/javascript" src="/jquery/jquery.cookie.pack.js"></script> - <script type="text/javascript" src="/js/kiwipycon.js"></script> + <script type="text/javascript" src="/static/jquery/jquery.pack.js"></script> + <script type="text/javascript" src="/static/jquery/jquery.jgrowl_minimized.js"></script> + <script type="text/javascript" src="/static/jquery/jquery.cookie.pack.js"></script> + <script type="text/javascript" src="/static/js/kiwipycon.js"></script> - <link rel="icon" href="/img/favicon.ico" type="image/x-icon" /> + <link rel="icon" href="/static/img/favicon.ico" type="image/x-icon" /> <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="/feeds/blog/" /> @@ -20,7 +20,7 @@ <body> <div id="logo"> - <a href="/"><img src="/img/scipyshiny_small.png" + <a href="/"><img src="/static/img/scipyshiny_small.png" alt="SciPy.in Logo" title="SciPy.in Logo" width="139" height="130" /></a> </div> |