Skip to content

Commit

Permalink
Merge pull request #1 from anujag/master
Browse files Browse the repository at this point in the history
 Collection added,userprefereces added for loom, image library, Tags,priorposterior,relations updates
  • Loading branch information
gnowgi committed Mar 11, 2013
2 parents 09ceb4b + 394822c commit 4d9eb6d
Show file tree
Hide file tree
Showing 1,090 changed files with 121,412 additions and 447 deletions.
12 changes: 8 additions & 4 deletions demo/settings.py
Expand Up @@ -19,7 +19,9 @@
import os
TIME_ZONE = None
gettext = lambda s: s
os.system("mkdir /tmp/beta/")
direxist=os.path.isdir("/tmp/beta/")
if not direxist:
os.system("mkdir /tmp/beta/")
DEBUG = True
TEMPLATE_DEBUG78 = True
#INTERNAL_IPS = ('127.0.0.1','158.144.44.212','158.144.42.67')
Expand All @@ -37,11 +39,13 @@
MEDIA_ROOT = os.path.join(os.path.dirname(__file__), 'static/img')
MEDIA_ROOTNEW2 = os.path.join(os.path.dirname(__file__), 'static/img')
MEDIA_ROOTNEW3 = os.path.join(os.path.dirname(__file__), 'static/img')
MEDIA_ROOTNEW = os.path.join(os.path.dirname(__file__), 'static/img')
#MEDIA_ROOTNEW = os.path.join(os.path.dirname(__file__), 'static/img')
MEDIA_ROOTNEW = os.path.join(os.path.dirname(__file__), '../demo/media')
#MEDIA_ROOT = '/static'
#MEDIA_ROOT = os.path.join(os.path.dirname(__file__), '../gstudio/static')
PYSCRIPT_URL_GSTUDIO = os.path.join(os.path.dirname(__file__), '../gstudio/createhtml.py')
PYSCRIPT_URL_OBJECTAPP = os.path.join(os.path.dirname(__file__), '../objectapp/createhtml.py')
HTML_FILE_URL=os.path.join(os.path.dirname(__file__),'../demo/static/grappelli/file/')
VIDEO_PANDORA_URL = os.getenv("HOME")+"/.ox/client.json"
FILE_URL = os.path.join(os.path.dirname(__file__), '/tmp/beta/')
FILE_UPLOAD_MAX_MEMORY_SIZE= 524288000
Expand All @@ -52,7 +56,7 @@

GSTUDIO_UPLOAD_TO = 'static/img/'

ADMIN_MEDIA_PREFIX = STATIC_URL+ "grappelli/"
ADMIN_MEDIA_PREFIX = STATIC_URL

SECRET_KEY = 'jo-1rzm(%sf)3#n+fb7h955yu$3(pt63abhi12_t7e^^5q8dyw'

Expand All @@ -72,7 +76,7 @@
# Authentication related
ACCOUNT_ACTIVATION_DAYS = 2
EMAIL_HOST = 'localhost'
DEFAULT_FROM_EMAIL = 'webmaster@localhost'
DEFAULT_FROM_EMAIL = 'webmaster@beta.metastudio.org'
LOGIN_REDIRECT_URL = '/'

# fourstore related
Expand Down

0 comments on commit 4d9eb6d

Please sign in to comment.