Skip to content

Commit

Permalink
* client/core/PreInitDeclarations.js: SPACEDIR -> SPACES_PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
swannodette committed Feb 13, 2010
1 parent f5a8553 commit e391ce2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion client/core/PreInitDeclarations.js
Expand Up @@ -4,7 +4,8 @@
// NOTE: This will be preprocessed by preprocess.py and replaced with the proper
// servers

var __spacesDir = '%%SPACEDIR%%';
var __spacesDir = '%%SPACES_PATH%%';
var __mediaDir = '%%MEDIA_PATH%%';

SSLog('SERVER: ' + __server, SSLogForce);
SSLog('SPACESDIR: ' + __spacesDir, SSLogForce);
Expand Down
2 changes: 1 addition & 1 deletion config/env/deploy.json
@@ -1,5 +1,5 @@
{
"SERVER": "http://shiftspace.org/api/",
"SPACEDIR": "http://shiftspace.org/api/spaces/",
"SPACES_PATH": "http://shiftspace.org/api/spaces/",
"LOG_LEVEL": "SSNoLogging"
}
2 changes: 1 addition & 1 deletion shifty.py
Expand Up @@ -54,7 +54,7 @@ def nightly():
def env(url):
return {
"SERVER": url,
"SPACEDIR": url + "spaces/",
"SPACES_PATH": url + "spaces/",
"IMAGESDIR": url + "images/",
"GLOBAL_CSS": "styles/SSGlobalStyles.css",
"LOG_LEVEL": None,
Expand Down

0 comments on commit e391ce2

Please sign in to comment.