Skip to content

Commit a352d2b

Browse files
committed
foo
1 parent e23d066 commit a352d2b

File tree

7 files changed

+53
-45
lines changed

7 files changed

+53
-45
lines changed

appengine/app.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,46 +23,46 @@ handlers:
2323
# Storage API.
2424
- url: /storage
2525
script: storage.py
26-
secure: always
26+
secure: never
2727
- url: /storage\.js
2828
static_files: storage.js
2929
upload: storage\.js
30-
secure: always
30+
secure: never
3131

3232
# Blockly files.
3333
- url: /static
3434
static_dir: static
35-
secure: always
35+
secure: never
3636

3737
# Closure library for uncompiled Blockly.
3838
- url: /closure-library
3939
static_dir: closure-library
40-
secure: always
40+
secure: never
4141

4242
# Redirect for root directory.
4343
- url: /
4444
script: index_redirect.py
45-
secure: always
45+
secure: never
4646

4747
# Favicon.
4848
- url: /favicon\.ico
4949
static_files: favicon.ico
5050
upload: favicon\.ico
51-
secure: always
51+
secure: never
5252
expiration: "30d"
5353

5454
# Apple icon.
5555
- url: /apple-touch-icon\.png
5656
static_files: apple-touch-icon.png
5757
upload: apple-touch-icon\.png
58-
secure: always
58+
secure: never
5959
expiration: "30d"
6060

6161
# robot.txt
6262
- url: /robots\.txt
6363
static_files: robots.txt
6464
upload: robots\.txt
65-
secure: always
65+
secure: never
6666

6767

6868
skip_files:

appengine/prepare.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
mkdir static
22
cp ../*_*compr*.js static
3-
rsync -a ../{core,generators,media,tests,demos,minecraft} static
3+
rsync -a ../{core,generators,media,tests,demos,minecraft,msg} static

minecraft/code.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,10 +202,10 @@ Code.importPrettify = function() {
202202
//<script src="../prettify.js"></script>
203203
var link = document.createElement('link');
204204
link.setAttribute('rel', 'stylesheet');
205-
link.setAttribute('href', '../prettify.css');
205+
link.setAttribute('href', 'prettify.css');
206206
document.head.appendChild(link);
207207
var script = document.createElement('script');
208-
script.setAttribute('src', '../prettify.js');
208+
script.setAttribute('src', 'prettify.js');
209209
document.head.appendChild(script);
210210
};
211211

@@ -381,7 +381,7 @@ Code.init = function() {
381381
length: 3,
382382
colour: '#ccc',
383383
snap: true},
384-
media: '../../media/',
384+
media: '../media/',
385385
rtl: rtl,
386386
toolbox: toolbox,
387387
zoom: {enabled: true}

minecraft/index.html

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,6 @@ <h1>
160160
</block>
161161
</value>
162162
</block>
163-
<block type="controls_forEach"></block>
164163
<block type="controls_flow_statements"></block>
165164
</category>
166165
<category id="catMath">
@@ -178,7 +177,6 @@ <h1>
178177
</value>
179178
</block>
180179
<block type="math_round"></block>
181-
<block type="math_on_list"></block>
182180
<block type="math_modulo"></block>
183181
<block type="math_constrain">
184182
<value name="LOW">
@@ -209,36 +207,6 @@ <h1>
209207
<category id="catText">
210208
<block type="text"></block>
211209
<block type="text_join"></block>
212-
<block type="text_append">
213-
<value name="TEXT">
214-
<block type="text"></block>
215-
</value>
216-
</block>
217-
<block type="text_length"></block>
218-
<block type="text_isEmpty"></block>
219-
<block type="text_indexOf">
220-
<value name="VALUE">
221-
<block type="variables_get">
222-
<field name="VAR" class="textVar">...</field>
223-
</block>
224-
</value>
225-
</block>
226-
<block type="text_charAt">
227-
<value name="VALUE">
228-
<block type="variables_get">
229-
<field name="VAR" class="textVar">...</field>
230-
</block>
231-
</value>
232-
</block>
233-
<block type="text_getSubstring">
234-
<value name="STRING">
235-
<block type="variables_get">
236-
<field name="VAR" class="textVar">...</field>
237-
</block>
238-
</value>
239-
</block>
240-
<block type="text_changeCase"></block>
241-
<block type="text_trim"></block>
242210
<block type="text_print"></block>
243211
<block type="text_prompt_ext">
244212
<value name="TEXT">

minecraft/prettify.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

minecraft/prettify.js

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<xml xmlns="http://www.w3.org/1999/xhtml">
2-
<block type="controls_for" x="125" y="189">
2+
<block type="controls_for" x="13" y="63">
33
<field name="VAR">i</field>
44
<value name="FROM">
55
<block type="math_number">
@@ -65,5 +65,14 @@
6565
</next>
6666
</block>
6767
</statement>
68+
<next>
69+
<block type="minecraft_post_to_chat">
70+
<value name="MESSAGE">
71+
<block type="text">
72+
<field name="TEXT">Spiral done!</field>
73+
</block>
74+
</value>
75+
</block>
76+
</next>
6877
</block>
6978
</xml>

0 commit comments

Comments
 (0)