Automatic commit Wed Nov 27 03:00:02 PST 2013

This commit is contained in:
ellen.spertus
2013-11-27 03:00:02 -08:00
parent 08e5254196
commit e30b7c1774
2 changed files with 9 additions and 2 deletions

View File

@@ -71,29 +71,36 @@ handlers:
# Storage API.
- url: /storage
script: storage.py
secure: always
- url: /storage\.js
static_files: storage.js
upload: storage\.js
secure: always
# Blockly files.
- url: /static
static_dir: static
secure: always
# Closure library for uncompiled Blockly.
- url: /closure-library-read-only
static_dir: closure-library-read-only
secure: always
# Redirect for root directory.
- url: /
script: index_redirect.py
secure: always
# Favicon.
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
secure: always
# robot.txt
- url: /robots\.txt
static_files: robots.txt
upload: robots\.txt
secure: always

View File

@@ -345,11 +345,11 @@ function updateGenerator() {
break;
}
}
code.push(" // TODO: Assemble ' + language + ' into code variable.");
code.push(" // TODO: Assemble " + language + " into code variable.");
code.push(" var code = \'...\';");
if (rootBlock.getTitleValue('CONNECTIONS') == 'LEFT') {
code.push(" // TODO: Change ORDER_NONE to the correct strength.");
code.push(" return [code, Blockly.' + language + '.ORDER_NONE];");
code.push(" return [code, Blockly." + language + ".ORDER_NONE];");
} else {
code.push(" return code;");
}