diff options
-rwxr-xr-x | media/icons/marker.png | bin | 606 -> 0 bytes | |||
-rw-r--r-- | media/icons/readme | 1 | ||||
-rw-r--r-- | media/pictures/readme | 1 | ||||
-rw-r--r-- | media/route_files/readme | 1 | ||||
-rw-r--r-- | settings.py | 8 |
5 files changed, 7 insertions, 4 deletions
diff --git a/media/icons/marker.png b/media/icons/marker.png Binary files differdeleted file mode 100755 index ccd1913..0000000 --- a/media/icons/marker.png +++ /dev/null diff --git a/media/icons/readme b/media/icons/readme deleted file mode 100644 index 560759a..0000000 --- a/media/icons/readme +++ /dev/null @@ -1 +0,0 @@ -Icons are stored here diff --git a/media/pictures/readme b/media/pictures/readme deleted file mode 100644 index c0d20b7..0000000 --- a/media/pictures/readme +++ /dev/null @@ -1 +0,0 @@ -Pictures are stored here diff --git a/media/route_files/readme b/media/route_files/readme deleted file mode 100644 index 90d72ab..0000000 --- a/media/route_files/readme +++ /dev/null @@ -1 +0,0 @@ -Route files are stored here diff --git a/settings.py b/settings.py index eaeac4a..cb2199b 100644 --- a/settings.py +++ b/settings.py @@ -4,7 +4,7 @@ # Don't edit this file: # overload all theses settings in your local_settings.py file -import os +import os, sys DEBUG = False TEMPLATE_DEBUG = DEBUG @@ -81,6 +81,9 @@ CHIMERE_THUMBS_SCALE_WIDTH=None CHIMERE_CSV_ENCODING = 'ISO-8859-1' +# generic contact email +CONTACT_EMAIL = '' + ADMINS = ( # ('Your Name', 'your_email@domain.com'), ) @@ -98,6 +101,9 @@ DATABASES = { }, } +if 'test' in sys.argv: + SOUTH_TESTS_MIGRATE = False + # Local time zone for this installation. Choices can be found here: # http://www.postgresql.org/docs/8.1/static/datetime-keywords.html#DATETIME-TIMEZONE-SET-TABLE # although not all variations may be possible on all operating systems. |