summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--localsettingspotatohut.py34
-rw-r--r--localsettingsserver.py31
-rw-r--r--localsettingsubuntu.py11
3 files changed, 35 insertions, 41 deletions
diff --git a/localsettingspotatohut.py b/localsettingspotatohut.py
index c657523..2676da9 100644
--- a/localsettingspotatohut.py
+++ b/localsettingspotatohut.py
@@ -1,9 +1,4 @@
import sys
-sys.path.append("/home/expo/troggle")
-
-# This is an example file. Copy it to localsettings.py, set the
-# password and _don't_ check that file back to the repo as it exposes
-# your/our password to the world!
DATABASES = {
'default': {
@@ -22,36 +17,35 @@ sys.path.append(REPOS_ROOT_PATH + 'troggle')
PUBLIC_SITE = True
-SURVEX_DATA = '/home/expo/loser/'
-TUNNEL_DATA = '/home/expo/tunneldata/'
+SURVEX_DATA = REPOS_ROOT_PATH + 'loser/'
+TUNNEL_DATA = REPOS_ROOT_PATH + 'tunneldata/'
CAVERN = 'cavern'
THREEDTOPOS = '3dtopos'
-EXPOWEB = '/home/expo/expoweb/'
-SURVEYS = '/home/expo/'
-SURVEY_SCANS = '/home/expo/expoimages/'
-FILES = '/home/expo/expoimages'
-
-EXPOWEB_URL = 'http://expo/'
+EXPOWEB = REPOS_ROOT_PATH + 'expoweb/'
+SURVEYS = REPOS_ROOT_PATH
+SURVEY_SCANS = REPOS_ROOT_PATH + 'expoimages/'
+FILES = REPOS_ROOT_PATH + 'expoimages'
-SURVEYS_URL = 'http://expo/survey_scans/'
PYTHON_PATH = '/home/expo/troggle/'
-#URL_ROOT = "http://troggle.cavingexpedition.com/"
-URL_ROOT = "http://expo.survex.com/"
+URL_ROOT = "http://expo/"
DIR_ROOT = ''#this should end in / if a value is given
-
+EXPOWEB_URL = 'http://expo/'
+SURVEYS_URL = 'http://expo/survey_scans/'
MEDIA_URL = '/' + DIR_ROOT + 'site_media/'
-MEDIA_ROOT = '/home/expo/troggle/media/'
-MEDIA_ADMIN_DIR = '/usr/lib/python2.4/site-packages/django/contrib/admin/media/'
+MEDIA_ROOT = REPOS_ROOT_PATH + '/troggle/media/'
+MEDIA_ADMIN_DIR = '/usr/lib/python2.7/site-packages/django/contrib/admin/media/'
+
+JSLIB_PATH = /usr/share/javascript/
TINY_MCE_MEDIA_ROOT = '/usr/share/tinymce/www/'
TINY_MCE_MEDIA_URL = URL_ROOT + DIR_ROOT + 'tinymce_media/'
TEMPLATE_DIRS = (
- "/home/expo/troggle/templates",
+ PYTHON_PATH + "templates",
# 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.
diff --git a/localsettingsserver.py b/localsettingsserver.py
index f60decb..0ac8fed 100644
--- a/localsettingsserver.py
+++ b/localsettingsserver.py
@@ -1,6 +1,4 @@
import sys
-sys.path.append("/home/expo/troggle")
-
# This is an example file. Copy it to localsettings.py, set the
# password and _don't_ check that file back to the repo as it exposes
# your/our password to the world!
@@ -22,36 +20,35 @@ sys.path.append(REPOS_ROOT_PATH + 'troggle')
PUBLIC_SITE = True
-SURVEX_DATA = '/home/expo/loser/'
-TUNNEL_DATA = '/home/expo/tunneldata/'
+SURVEX_DATA = REPOS_ROOT_PATH + 'loser/'
+TUNNEL_DATA = REPOS_ROOT_PATH + 'tunneldata/'
CAVERN = 'cavern'
THREEDTOPOS = '3dtopos'
-EXPOWEB = '/home/expo/expoweb/'
-SURVEYS = '/home/expo/'
-SURVEY_SCANS = '/home/expo/expoimages/'
-FILES = '/home/expo/expoimages'
-
-EXPOWEB_URL = 'http://expo.survex.com/'
+EXPOWEB = REPOS_ROOT_PATH + 'expoweb/'
+SURVEYS = REPOS_ROOT_PATH
+SURVEY_SCANS = REPOS_ROOT_PATH + 'expoimages/'
+FILES = REPOS_ROOT_PATH + 'expoimages'
-SURVEYS_URL = 'http://expo.survex.com/survey_scans/'
-PYTHON_PATH = '/home/expo/troggle/'
+PYTHON_PATH = REPOS_ROOT_PATH + 'troggle/'
-#URL_ROOT = "http://troggle.cavingexpedition.com/"
URL_ROOT = "http://expo.survex.com/"
DIR_ROOT = ''#this should end in / if a value is given
-
+EXPOWEB_URL = 'http://expo.survex.com/'
+SURVEYS_URL = 'http://expo.survex.com/survey_scans/'
MEDIA_URL = URL_ROOT + DIR_ROOT + 'site_media/'
-MEDIA_ROOT = '/home/expo/troggle/media/'
-MEDIA_ADMIN_DIR = '/usr/lib/python2.4/site-packages/django/contrib/admin/media/'
+MEDIA_ROOT = REPOS_ROOT_PATH + '/troggle/media/'
+MEDIA_ADMIN_DIR = '/usr/lib/python2.7/site-packages/django/contrib/admin/media/'
+
+JSLIB_PATH = /usr/share/javascript/
TINY_MCE_MEDIA_ROOT = '/usr/share/tinymce/www/'
TINY_MCE_MEDIA_URL = URL_ROOT + DIR_ROOT + 'tinymce_media/'
TEMPLATE_DIRS = (
- "/home/expo/troggle/templates",
+ PYTHON_PATH + "templates",
# 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.
diff --git a/localsettingsubuntu.py b/localsettingsubuntu.py
index fcc8a73..eac75da 100644
--- a/localsettingsubuntu.py
+++ b/localsettingsubuntu.py
@@ -6,7 +6,7 @@ DATABASES = {
'ENGINE': 'django.db.backends.mysql', # 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME' : 'troggle', # Or path to database file if using sqlite3.
'USER' : 'expo', # Not used with sqlite3.
- 'PASSWORD' : 'gosser', # Not used with sqlite3.
+ 'PASSWORD' : '161:gosser', # Not used with sqlite3.
'HOST' : '', # Set to empty string for localhost. Not used with sqlite3.
'PORT' : '', # Set to empty string for default. Not used with sqlite3.
}
@@ -29,6 +29,8 @@ SURVEYS = REPOS_ROOT_PATH
SURVEY_SCANS = REPOS_ROOT_PATH + 'expoimages/'
FILES = REPOS_ROOT_PATH + 'expoimages'
+EXPOWEB_URL = '/'
+SURVEYS_URL = '/survey_scans/'
PYTHON_PATH = REPOS_ROOT_PATH + 'troggle/'
@@ -36,13 +38,14 @@ PYTHON_PATH = REPOS_ROOT_PATH + 'troggle/'
URL_ROOT = "http://expoweb/"
DIR_ROOT = ''#this should end in / if a value is given
-EXPOWEB_URL = '/'
-SURVEYS_URL = '/survey_scans/'
+
MEDIA_URL = URL_ROOT + DIR_ROOT + '/site_media/'
MEDIA_ROOT = REPOS_ROOT_PATH + '/troggle/media/'
MEDIA_ADMIN_DIR = '/usr/lib/python2.4/site-packages/django/contrib/admin/media/'
+JSLIB_PATH = /usr/share/javascript/
+
TINY_MCE_MEDIA_ROOT = '/usr/share/tinymce/www/'
TINY_MCE_MEDIA_URL = URL_ROOT + DIR_ROOT + '/tinymce_media/'
@@ -53,4 +56,4 @@ TEMPLATE_DIRS = (
# Don't forget to use absolute paths, not relative paths.
)
-LOGFILE = PYTHON_PATH + 'parsing_log.txt'
+LOGFILE = PYTHON_PATH + 'troggle_log.txt'