Commit e30b7c17 authored by ellen.spertus's avatar ellen.spertus

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

parent 08e52541
...@@ -71,29 +71,36 @@ handlers: ...@@ -71,29 +71,36 @@ handlers:
# Storage API. # Storage API.
- url: /storage - url: /storage
script: storage.py script: storage.py
secure: always
- url: /storage\.js - url: /storage\.js
static_files: storage.js static_files: storage.js
upload: storage\.js upload: storage\.js
secure: always
# Blockly files. # Blockly files.
- url: /static - url: /static
static_dir: static static_dir: static
secure: always
# Closure library for uncompiled Blockly. # Closure library for uncompiled Blockly.
- url: /closure-library-read-only - url: /closure-library-read-only
static_dir: closure-library-read-only static_dir: closure-library-read-only
secure: always
# Redirect for root directory. # Redirect for root directory.
- url: / - url: /
script: index_redirect.py script: index_redirect.py
secure: always
# Favicon. # Favicon.
- url: /favicon\.ico - url: /favicon\.ico
static_files: favicon.ico static_files: favicon.ico
upload: favicon\.ico upload: favicon\.ico
secure: always
# robot.txt # robot.txt
- url: /robots\.txt - url: /robots\.txt
static_files: robots.txt static_files: robots.txt
upload: robots\.txt upload: robots\.txt
secure: always
...@@ -345,11 +345,11 @@ function updateGenerator() { ...@@ -345,11 +345,11 @@ function updateGenerator() {
break; break;
} }
} }
code.push(" // TODO: Assemble ' + language + ' into code variable."); code.push(" // TODO: Assemble " + language + " into code variable.");
code.push(" var code = \'...\';"); code.push(" var code = \'...\';");
if (rootBlock.getTitleValue('CONNECTIONS') == 'LEFT') { if (rootBlock.getTitleValue('CONNECTIONS') == 'LEFT') {
code.push(" // TODO: Change ORDER_NONE to the correct strength."); 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 { } else {
code.push(" return code;"); code.push(" return code;");
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment