├── .gitignore ├── README.md ├── acorn_interpreter.js ├── blockly_compressed.js ├── blocks_compressed.js ├── javascript_compressed.js ├── media ├── 1x1.gif ├── click.mp3 ├── click.ogg ├── click.wav ├── delete.mp3 ├── delete.ogg ├── delete.wav ├── disconnect.mp3 ├── disconnect.ogg ├── disconnect.wav ├── handclosed.cur ├── handdelete.cur ├── handopen.cur ├── quote0.png ├── quote1.png ├── sprites.png └── sprites.svg ├── msg ├── js │ ├── ab.js │ ├── ar.js │ ├── az.js │ ├── ba.js │ ├── bcc.js │ ├── be-tarask.js │ ├── be.js │ ├── bg.js │ ├── bn.js │ ├── br.js │ ├── ca.js │ ├── cs.js │ ├── da.js │ ├── de.js │ ├── diq.js │ ├── el.js │ ├── en-gb.js │ ├── en.js │ ├── eo.js │ ├── es.js │ ├── et.js │ ├── fa.js │ ├── fi.js │ ├── fr.js │ ├── he.js │ ├── hi.js │ ├── hrx.js │ ├── hu.js │ ├── ia.js │ ├── id.js │ ├── is.js │ ├── it.js │ ├── ja.js │ ├── kab.js │ ├── ko.js │ ├── lb.js │ ├── lki.js │ ├── lrc.js │ ├── lt.js │ ├── lv.js │ ├── mk.js │ ├── ms.js │ ├── nb.js │ ├── nl.js │ ├── oc.js │ ├── pl.js │ ├── pms.js │ ├── pt-br.js │ ├── pt.js │ ├── ro.js │ ├── ru.js │ ├── sc.js │ ├── sd.js │ ├── shn.js │ ├── sk.js │ ├── sl.js │ ├── sq.js │ ├── sr.js │ ├── sv.js │ ├── ta.js │ ├── tcy.js │ ├── th.js │ ├── tl.js │ ├── tlh.js │ ├── tr.js │ ├── uk.js │ ├── vi.js │ ├── zh-hans.js │ └── zh-hant.js ├── json │ ├── ab.json │ ├── ar.json │ ├── az.json │ ├── ba.json │ ├── bcc.json │ ├── be-tarask.json │ ├── be.json │ ├── bg.json │ ├── bn.json │ ├── br.json │ ├── ca.json │ ├── constants.json │ ├── cs.json │ ├── da.json │ ├── de.json │ ├── diq.json │ ├── el.json │ ├── en-gb.json │ ├── en.json │ ├── eo.json │ ├── es.json │ ├── et.json │ ├── eu.json │ ├── fa.json │ ├── fi.json │ ├── fr.json │ ├── he.json │ ├── hi.json │ ├── hrx.json │ ├── hu.json │ ├── ia.json │ ├── id.json │ ├── is.json │ ├── it.json │ ├── ja.json │ ├── kab.json │ ├── ko.json │ ├── lb.json │ ├── lki.json │ ├── lrc.json │ ├── lt.json │ ├── lv.json │ ├── mk.json │ ├── ms.json │ ├── nb.json │ ├── nl.json │ ├── oc.json │ ├── pl.json │ ├── pms.json │ ├── pt-br.json │ ├── pt.json │ ├── qqq.json │ ├── ro.json │ ├── ru.json │ ├── sc.json │ ├── sd.json │ ├── shn.json │ ├── sk.json │ ├── sl.json │ ├── sq.json │ ├── sr.json │ ├── sv.json │ ├── synonyms.json │ ├── ta.json │ ├── tcy.json │ ├── th.json │ ├── tl.json │ ├── tlh.json │ ├── tr.json │ ├── uk.json │ ├── vi.json │ ├── zh-hans.json │ └── zh-hant.json └── messages.js ├── python_compressed.js ├── server.pem ├── simple_https_server.py ├── socket.io.slim.js └── src ├── blockly_1_hello_world └── index.html ├── blockly_2.1_run_js_with_interpreter └── index.html ├── blockly_2.2_custom_block_run_js_with_interpreter ├── index.html └── readme.md ├── blockly_2_generate_and_run_js └── index.html ├── blockly_3_1_generate_python └── index.html ├── blockly_3_2_custom_block_generate_python ├── index.html └── readme.md ├── blockly_3_3_custom_json_block_generate_python └── index.html ├── blockly_4_run_python_in_browser_simple ├── index.html ├── jquery.min.js ├── my_blocks.js ├── readme.md ├── skulpt-stdlib.js └── skulpt.min.js ├── blockly_5_run_python_in_browser_turtle_finish ├── embed-blocks-4a6a121b.js ├── embed-blocks-iframe-1162d752.js ├── embed-python-f3eb213f.js ├── index.html ├── jquery.min.js ├── my_blocks.js ├── readme.md ├── skulpt-stdlib.js └── skulpt.min.js ├── blockly_hello_world_with_togetherjs ├── index.html └── readme.md ├── blocks4edx ├── blocks.js ├── demo_xml.js ├── index.html └── storage.js ├── pxt-microbit_hello_world ├── pxt_doc.md └── readme.md ├── scratch-blocks_hello_world ├── readme.md ├── scratch-block-test │ ├── dist │ │ ├── index.html │ │ ├── media │ │ │ ├── 1x1.gif │ │ │ ├── click.mp3 │ │ │ ├── click.ogg │ │ │ ├── click.wav │ │ │ ├── delete.mp3 │ │ │ ├── delete.ogg │ │ │ ├── delete.wav │ │ │ ├── dropdown-arrow-dark.svg │ │ │ ├── dropdown-arrow.svg │ │ │ ├── extensions │ │ │ │ ├── music-block-icon.svg │ │ │ │ ├── pen-block-icon.svg │ │ │ │ └── wedo2-block-icon.svg │ │ │ ├── eyedropper.svg │ │ │ ├── green-flag.svg │ │ │ ├── handclosed.cur │ │ │ ├── handdelete.cur │ │ │ ├── handopen.cur │ │ │ ├── icons │ │ │ │ ├── arrow.svg │ │ │ │ ├── control_forever.svg │ │ │ │ ├── control_repeat.svg │ │ │ │ ├── control_stop.svg │ │ │ │ ├── control_wait.svg │ │ │ │ ├── event_broadcast_blue.svg │ │ │ │ ├── event_broadcast_coral.svg │ │ │ │ ├── event_broadcast_green.svg │ │ │ │ ├── event_broadcast_magenta.svg │ │ │ │ ├── event_broadcast_orange.svg │ │ │ │ ├── event_broadcast_purple.svg │ │ │ │ ├── event_when-broadcast-received_blue.svg │ │ │ │ ├── event_when-broadcast-received_coral.svg │ │ │ │ ├── event_when-broadcast-received_green.svg │ │ │ │ ├── event_when-broadcast-received_magenta.svg │ │ │ │ ├── event_when-broadcast-received_orange.svg │ │ │ │ ├── event_when-broadcast-received_purple.svg │ │ │ │ ├── event_whenflagclicked.svg │ │ │ │ ├── remove.svg │ │ │ │ ├── set-led_blue.svg │ │ │ │ ├── set-led_coral.svg │ │ │ │ ├── set-led_green.svg │ │ │ │ ├── set-led_magenta.svg │ │ │ │ ├── set-led_mystery.svg │ │ │ │ ├── set-led_orange.svg │ │ │ │ ├── set-led_purple.svg │ │ │ │ ├── set-led_white.svg │ │ │ │ ├── set-led_yellow.svg │ │ │ │ ├── wedo_motor-clockwise.svg │ │ │ │ ├── wedo_motor-counterclockwise.svg │ │ │ │ ├── wedo_motor-speed_fast.svg │ │ │ │ ├── wedo_motor-speed_med.svg │ │ │ │ ├── wedo_motor-speed_slow.svg │ │ │ │ ├── wedo_when-distance_close.svg │ │ │ │ ├── wedo_when-tilt-backward.svg │ │ │ │ ├── wedo_when-tilt-forward.svg │ │ │ │ ├── wedo_when-tilt-left.svg │ │ │ │ ├── wedo_when-tilt-right.svg │ │ │ │ └── wedo_when-tilt.svg │ │ │ ├── repeat.svg │ │ │ ├── rotate-left.svg │ │ │ ├── rotate-right.svg │ │ │ ├── sprites.png │ │ │ ├── sprites.svg │ │ │ ├── zoom-in.svg │ │ │ ├── zoom-out.svg │ │ │ └── zoom-reset.svg │ │ ├── python_compressed.js │ │ └── scratch-block-test.js │ ├── package.json │ ├── src │ │ ├── index.html │ │ ├── python_compressed.js │ │ └── scratch-block-test.js │ └── webpack.config.js └── scratch-block-test_note.md └── scratch3-adapter-4-blockly ├── index.html └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/README.md -------------------------------------------------------------------------------- /acorn_interpreter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/acorn_interpreter.js -------------------------------------------------------------------------------- /blockly_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/blockly_compressed.js -------------------------------------------------------------------------------- /blocks_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/blocks_compressed.js -------------------------------------------------------------------------------- /javascript_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/javascript_compressed.js -------------------------------------------------------------------------------- /media/1x1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/media/1x1.gif -------------------------------------------------------------------------------- /media/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/media/click.mp3 -------------------------------------------------------------------------------- /media/click.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/media/click.ogg -------------------------------------------------------------------------------- /media/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/media/click.wav -------------------------------------------------------------------------------- /media/delete.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/media/delete.mp3 -------------------------------------------------------------------------------- /media/delete.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/media/delete.ogg -------------------------------------------------------------------------------- /media/delete.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/media/delete.wav -------------------------------------------------------------------------------- /media/disconnect.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/media/disconnect.mp3 -------------------------------------------------------------------------------- /media/disconnect.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/media/disconnect.ogg -------------------------------------------------------------------------------- /media/disconnect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/media/disconnect.wav -------------------------------------------------------------------------------- /media/handclosed.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/media/handclosed.cur -------------------------------------------------------------------------------- /media/handdelete.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/media/handdelete.cur -------------------------------------------------------------------------------- /media/handopen.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/media/handopen.cur -------------------------------------------------------------------------------- /media/quote0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/media/quote0.png -------------------------------------------------------------------------------- /media/quote1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/media/quote1.png -------------------------------------------------------------------------------- /media/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/media/sprites.png -------------------------------------------------------------------------------- /media/sprites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/media/sprites.svg -------------------------------------------------------------------------------- /msg/js/ab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/ab.js -------------------------------------------------------------------------------- /msg/js/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/ar.js -------------------------------------------------------------------------------- /msg/js/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/az.js -------------------------------------------------------------------------------- /msg/js/ba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/ba.js -------------------------------------------------------------------------------- /msg/js/bcc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/bcc.js -------------------------------------------------------------------------------- /msg/js/be-tarask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/be-tarask.js -------------------------------------------------------------------------------- /msg/js/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/be.js -------------------------------------------------------------------------------- /msg/js/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/bg.js -------------------------------------------------------------------------------- /msg/js/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/bn.js -------------------------------------------------------------------------------- /msg/js/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/br.js -------------------------------------------------------------------------------- /msg/js/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/ca.js -------------------------------------------------------------------------------- /msg/js/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/cs.js -------------------------------------------------------------------------------- /msg/js/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/da.js -------------------------------------------------------------------------------- /msg/js/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/de.js -------------------------------------------------------------------------------- /msg/js/diq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/diq.js -------------------------------------------------------------------------------- /msg/js/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/el.js -------------------------------------------------------------------------------- /msg/js/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/en-gb.js -------------------------------------------------------------------------------- /msg/js/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/en.js -------------------------------------------------------------------------------- /msg/js/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/eo.js -------------------------------------------------------------------------------- /msg/js/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/es.js -------------------------------------------------------------------------------- /msg/js/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/et.js -------------------------------------------------------------------------------- /msg/js/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/fa.js -------------------------------------------------------------------------------- /msg/js/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/fi.js -------------------------------------------------------------------------------- /msg/js/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/fr.js -------------------------------------------------------------------------------- /msg/js/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/he.js -------------------------------------------------------------------------------- /msg/js/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/hi.js -------------------------------------------------------------------------------- /msg/js/hrx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/hrx.js -------------------------------------------------------------------------------- /msg/js/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/hu.js -------------------------------------------------------------------------------- /msg/js/ia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/ia.js -------------------------------------------------------------------------------- /msg/js/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/id.js -------------------------------------------------------------------------------- /msg/js/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/is.js -------------------------------------------------------------------------------- /msg/js/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/it.js -------------------------------------------------------------------------------- /msg/js/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/ja.js -------------------------------------------------------------------------------- /msg/js/kab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/kab.js -------------------------------------------------------------------------------- /msg/js/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/ko.js -------------------------------------------------------------------------------- /msg/js/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/lb.js -------------------------------------------------------------------------------- /msg/js/lki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/lki.js -------------------------------------------------------------------------------- /msg/js/lrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/lrc.js -------------------------------------------------------------------------------- /msg/js/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/lt.js -------------------------------------------------------------------------------- /msg/js/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/lv.js -------------------------------------------------------------------------------- /msg/js/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/mk.js -------------------------------------------------------------------------------- /msg/js/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/ms.js -------------------------------------------------------------------------------- /msg/js/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/nb.js -------------------------------------------------------------------------------- /msg/js/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/nl.js -------------------------------------------------------------------------------- /msg/js/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/oc.js -------------------------------------------------------------------------------- /msg/js/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/pl.js -------------------------------------------------------------------------------- /msg/js/pms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/pms.js -------------------------------------------------------------------------------- /msg/js/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/pt-br.js -------------------------------------------------------------------------------- /msg/js/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/pt.js -------------------------------------------------------------------------------- /msg/js/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/ro.js -------------------------------------------------------------------------------- /msg/js/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/ru.js -------------------------------------------------------------------------------- /msg/js/sc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/sc.js -------------------------------------------------------------------------------- /msg/js/sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/sd.js -------------------------------------------------------------------------------- /msg/js/shn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/shn.js -------------------------------------------------------------------------------- /msg/js/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/sk.js -------------------------------------------------------------------------------- /msg/js/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/sl.js -------------------------------------------------------------------------------- /msg/js/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/sq.js -------------------------------------------------------------------------------- /msg/js/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/sr.js -------------------------------------------------------------------------------- /msg/js/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/sv.js -------------------------------------------------------------------------------- /msg/js/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/ta.js -------------------------------------------------------------------------------- /msg/js/tcy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/tcy.js -------------------------------------------------------------------------------- /msg/js/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/th.js -------------------------------------------------------------------------------- /msg/js/tl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/tl.js -------------------------------------------------------------------------------- /msg/js/tlh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/tlh.js -------------------------------------------------------------------------------- /msg/js/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/tr.js -------------------------------------------------------------------------------- /msg/js/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/uk.js -------------------------------------------------------------------------------- /msg/js/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/vi.js -------------------------------------------------------------------------------- /msg/js/zh-hans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/zh-hans.js -------------------------------------------------------------------------------- /msg/js/zh-hant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/js/zh-hant.js -------------------------------------------------------------------------------- /msg/json/ab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/ab.json -------------------------------------------------------------------------------- /msg/json/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/ar.json -------------------------------------------------------------------------------- /msg/json/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/az.json -------------------------------------------------------------------------------- /msg/json/ba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/ba.json -------------------------------------------------------------------------------- /msg/json/bcc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/bcc.json -------------------------------------------------------------------------------- /msg/json/be-tarask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/be-tarask.json -------------------------------------------------------------------------------- /msg/json/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/be.json -------------------------------------------------------------------------------- /msg/json/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/bg.json -------------------------------------------------------------------------------- /msg/json/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/bn.json -------------------------------------------------------------------------------- /msg/json/br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/br.json -------------------------------------------------------------------------------- /msg/json/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/ca.json -------------------------------------------------------------------------------- /msg/json/constants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/constants.json -------------------------------------------------------------------------------- /msg/json/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/cs.json -------------------------------------------------------------------------------- /msg/json/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/da.json -------------------------------------------------------------------------------- /msg/json/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/de.json -------------------------------------------------------------------------------- /msg/json/diq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/diq.json -------------------------------------------------------------------------------- /msg/json/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/el.json -------------------------------------------------------------------------------- /msg/json/en-gb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/en-gb.json -------------------------------------------------------------------------------- /msg/json/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/en.json -------------------------------------------------------------------------------- /msg/json/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/eo.json -------------------------------------------------------------------------------- /msg/json/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/es.json -------------------------------------------------------------------------------- /msg/json/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/et.json -------------------------------------------------------------------------------- /msg/json/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/eu.json -------------------------------------------------------------------------------- /msg/json/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/fa.json -------------------------------------------------------------------------------- /msg/json/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/fi.json -------------------------------------------------------------------------------- /msg/json/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/fr.json -------------------------------------------------------------------------------- /msg/json/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/he.json -------------------------------------------------------------------------------- /msg/json/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/hi.json -------------------------------------------------------------------------------- /msg/json/hrx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/hrx.json -------------------------------------------------------------------------------- /msg/json/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/hu.json -------------------------------------------------------------------------------- /msg/json/ia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/ia.json -------------------------------------------------------------------------------- /msg/json/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/id.json -------------------------------------------------------------------------------- /msg/json/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/is.json -------------------------------------------------------------------------------- /msg/json/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/it.json -------------------------------------------------------------------------------- /msg/json/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/ja.json -------------------------------------------------------------------------------- /msg/json/kab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/kab.json -------------------------------------------------------------------------------- /msg/json/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/ko.json -------------------------------------------------------------------------------- /msg/json/lb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/lb.json -------------------------------------------------------------------------------- /msg/json/lki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/lki.json -------------------------------------------------------------------------------- /msg/json/lrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/lrc.json -------------------------------------------------------------------------------- /msg/json/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/lt.json -------------------------------------------------------------------------------- /msg/json/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/lv.json -------------------------------------------------------------------------------- /msg/json/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/mk.json -------------------------------------------------------------------------------- /msg/json/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/ms.json -------------------------------------------------------------------------------- /msg/json/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/nb.json -------------------------------------------------------------------------------- /msg/json/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/nl.json -------------------------------------------------------------------------------- /msg/json/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/oc.json -------------------------------------------------------------------------------- /msg/json/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/pl.json -------------------------------------------------------------------------------- /msg/json/pms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/pms.json -------------------------------------------------------------------------------- /msg/json/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/pt-br.json -------------------------------------------------------------------------------- /msg/json/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/pt.json -------------------------------------------------------------------------------- /msg/json/qqq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/qqq.json -------------------------------------------------------------------------------- /msg/json/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/ro.json -------------------------------------------------------------------------------- /msg/json/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/ru.json -------------------------------------------------------------------------------- /msg/json/sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/sc.json -------------------------------------------------------------------------------- /msg/json/sd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/sd.json -------------------------------------------------------------------------------- /msg/json/shn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/shn.json -------------------------------------------------------------------------------- /msg/json/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/sk.json -------------------------------------------------------------------------------- /msg/json/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/sl.json -------------------------------------------------------------------------------- /msg/json/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/sq.json -------------------------------------------------------------------------------- /msg/json/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/sr.json -------------------------------------------------------------------------------- /msg/json/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/sv.json -------------------------------------------------------------------------------- /msg/json/synonyms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/synonyms.json -------------------------------------------------------------------------------- /msg/json/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/ta.json -------------------------------------------------------------------------------- /msg/json/tcy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/tcy.json -------------------------------------------------------------------------------- /msg/json/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/th.json -------------------------------------------------------------------------------- /msg/json/tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/tl.json -------------------------------------------------------------------------------- /msg/json/tlh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/tlh.json -------------------------------------------------------------------------------- /msg/json/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/tr.json -------------------------------------------------------------------------------- /msg/json/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/uk.json -------------------------------------------------------------------------------- /msg/json/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/vi.json -------------------------------------------------------------------------------- /msg/json/zh-hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/zh-hans.json -------------------------------------------------------------------------------- /msg/json/zh-hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/json/zh-hant.json -------------------------------------------------------------------------------- /msg/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/msg/messages.js -------------------------------------------------------------------------------- /python_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/python_compressed.js -------------------------------------------------------------------------------- /server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/server.pem -------------------------------------------------------------------------------- /simple_https_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/simple_https_server.py -------------------------------------------------------------------------------- /socket.io.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/socket.io.slim.js -------------------------------------------------------------------------------- /src/blockly_1_hello_world/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_1_hello_world/index.html -------------------------------------------------------------------------------- /src/blockly_2.1_run_js_with_interpreter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_2.1_run_js_with_interpreter/index.html -------------------------------------------------------------------------------- /src/blockly_2.2_custom_block_run_js_with_interpreter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_2.2_custom_block_run_js_with_interpreter/index.html -------------------------------------------------------------------------------- /src/blockly_2.2_custom_block_run_js_with_interpreter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_2.2_custom_block_run_js_with_interpreter/readme.md -------------------------------------------------------------------------------- /src/blockly_2_generate_and_run_js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_2_generate_and_run_js/index.html -------------------------------------------------------------------------------- /src/blockly_3_1_generate_python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_3_1_generate_python/index.html -------------------------------------------------------------------------------- /src/blockly_3_2_custom_block_generate_python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_3_2_custom_block_generate_python/index.html -------------------------------------------------------------------------------- /src/blockly_3_2_custom_block_generate_python/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_3_2_custom_block_generate_python/readme.md -------------------------------------------------------------------------------- /src/blockly_3_3_custom_json_block_generate_python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_3_3_custom_json_block_generate_python/index.html -------------------------------------------------------------------------------- /src/blockly_4_run_python_in_browser_simple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_4_run_python_in_browser_simple/index.html -------------------------------------------------------------------------------- /src/blockly_4_run_python_in_browser_simple/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_4_run_python_in_browser_simple/jquery.min.js -------------------------------------------------------------------------------- /src/blockly_4_run_python_in_browser_simple/my_blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_4_run_python_in_browser_simple/my_blocks.js -------------------------------------------------------------------------------- /src/blockly_4_run_python_in_browser_simple/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_4_run_python_in_browser_simple/readme.md -------------------------------------------------------------------------------- /src/blockly_4_run_python_in_browser_simple/skulpt-stdlib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_4_run_python_in_browser_simple/skulpt-stdlib.js -------------------------------------------------------------------------------- /src/blockly_4_run_python_in_browser_simple/skulpt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_4_run_python_in_browser_simple/skulpt.min.js -------------------------------------------------------------------------------- /src/blockly_5_run_python_in_browser_turtle_finish/embed-blocks-4a6a121b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_5_run_python_in_browser_turtle_finish/embed-blocks-4a6a121b.js -------------------------------------------------------------------------------- /src/blockly_5_run_python_in_browser_turtle_finish/embed-blocks-iframe-1162d752.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_5_run_python_in_browser_turtle_finish/embed-blocks-iframe-1162d752.js -------------------------------------------------------------------------------- /src/blockly_5_run_python_in_browser_turtle_finish/embed-python-f3eb213f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_5_run_python_in_browser_turtle_finish/embed-python-f3eb213f.js -------------------------------------------------------------------------------- /src/blockly_5_run_python_in_browser_turtle_finish/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_5_run_python_in_browser_turtle_finish/index.html -------------------------------------------------------------------------------- /src/blockly_5_run_python_in_browser_turtle_finish/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_5_run_python_in_browser_turtle_finish/jquery.min.js -------------------------------------------------------------------------------- /src/blockly_5_run_python_in_browser_turtle_finish/my_blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_5_run_python_in_browser_turtle_finish/my_blocks.js -------------------------------------------------------------------------------- /src/blockly_5_run_python_in_browser_turtle_finish/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_5_run_python_in_browser_turtle_finish/readme.md -------------------------------------------------------------------------------- /src/blockly_5_run_python_in_browser_turtle_finish/skulpt-stdlib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_5_run_python_in_browser_turtle_finish/skulpt-stdlib.js -------------------------------------------------------------------------------- /src/blockly_5_run_python_in_browser_turtle_finish/skulpt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_5_run_python_in_browser_turtle_finish/skulpt.min.js -------------------------------------------------------------------------------- /src/blockly_hello_world_with_togetherjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_hello_world_with_togetherjs/index.html -------------------------------------------------------------------------------- /src/blockly_hello_world_with_togetherjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blockly_hello_world_with_togetherjs/readme.md -------------------------------------------------------------------------------- /src/blocks4edx/blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blocks4edx/blocks.js -------------------------------------------------------------------------------- /src/blocks4edx/demo_xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blocks4edx/demo_xml.js -------------------------------------------------------------------------------- /src/blocks4edx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blocks4edx/index.html -------------------------------------------------------------------------------- /src/blocks4edx/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/blocks4edx/storage.js -------------------------------------------------------------------------------- /src/pxt-microbit_hello_world/pxt_doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/pxt-microbit_hello_world/pxt_doc.md -------------------------------------------------------------------------------- /src/pxt-microbit_hello_world/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/pxt-microbit_hello_world/readme.md -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/readme.md -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/index.html -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/1x1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/1x1.gif -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/click.mp3 -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/click.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/click.ogg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/click.wav -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/delete.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/delete.mp3 -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/delete.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/delete.ogg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/delete.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/delete.wav -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/dropdown-arrow-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/dropdown-arrow-dark.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/dropdown-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/dropdown-arrow.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/extensions/music-block-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/extensions/music-block-icon.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/extensions/pen-block-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/extensions/pen-block-icon.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/extensions/wedo2-block-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/extensions/wedo2-block-icon.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/eyedropper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/eyedropper.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/green-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/green-flag.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/handclosed.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/handclosed.cur -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/handdelete.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/handdelete.cur -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/handopen.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/handopen.cur -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/arrow.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/control_forever.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/control_forever.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/control_repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/control_repeat.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/control_stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/control_stop.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/control_wait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/control_wait.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_broadcast_blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_broadcast_blue.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_broadcast_coral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_broadcast_coral.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_broadcast_green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_broadcast_green.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_broadcast_magenta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_broadcast_magenta.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_broadcast_orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_broadcast_orange.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_broadcast_purple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_broadcast_purple.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_when-broadcast-received_blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_when-broadcast-received_blue.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_when-broadcast-received_coral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_when-broadcast-received_coral.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_when-broadcast-received_green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_when-broadcast-received_green.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_when-broadcast-received_magenta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_when-broadcast-received_magenta.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_when-broadcast-received_orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_when-broadcast-received_orange.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_when-broadcast-received_purple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_when-broadcast-received_purple.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_whenflagclicked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/event_whenflagclicked.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/remove.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/set-led_blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/set-led_blue.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/set-led_coral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/set-led_coral.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/set-led_green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/set-led_green.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/set-led_magenta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/set-led_magenta.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/set-led_mystery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/set-led_mystery.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/set-led_orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/set-led_orange.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/set-led_purple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/set-led_purple.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/set-led_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/set-led_white.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/set-led_yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/set-led_yellow.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_motor-clockwise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_motor-clockwise.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_motor-counterclockwise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_motor-counterclockwise.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_motor-speed_fast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_motor-speed_fast.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_motor-speed_med.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_motor-speed_med.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_motor-speed_slow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_motor-speed_slow.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_when-distance_close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_when-distance_close.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_when-tilt-backward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_when-tilt-backward.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_when-tilt-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_when-tilt-forward.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_when-tilt-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_when-tilt-left.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_when-tilt-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_when-tilt-right.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_when-tilt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/icons/wedo_when-tilt.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/repeat.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/rotate-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/rotate-left.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/rotate-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/rotate-right.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/sprites.png -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/sprites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/sprites.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/zoom-in.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/zoom-out.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/media/zoom-reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/media/zoom-reset.svg -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/python_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/python_compressed.js -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/dist/scratch-block-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/dist/scratch-block-test.js -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/package.json -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/src/index.html -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/src/python_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/src/python_compressed.js -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/src/scratch-block-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/src/scratch-block-test.js -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test/webpack.config.js -------------------------------------------------------------------------------- /src/scratch-blocks_hello_world/scratch-block-test_note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch-blocks_hello_world/scratch-block-test_note.md -------------------------------------------------------------------------------- /src/scratch3-adapter-4-blockly/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch3-adapter-4-blockly/index.html -------------------------------------------------------------------------------- /src/scratch3-adapter-4-blockly/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwj718/blockly_dev/HEAD/src/scratch3-adapter-4-blockly/readme.md --------------------------------------------------------------------------------