├── .gitignore ├── LICENSE ├── README ├── TODO ├── ball.html ├── ballbounce.html ├── ballmove.html ├── bricks.html ├── color.html ├── farbtastic ├── CHANGELOG.html ├── LICENSE.txt ├── README.html ├── demo1.html ├── demo2.html ├── farbtastic.css ├── farbtastic.js ├── marker.png ├── mask.png └── wheel.png ├── final.html ├── jquery-1.2.6.js ├── keyboard.html ├── mouse.html ├── paddle.html ├── presentation ├── index-osf.html ├── pix │ ├── .DS_Store │ ├── Breakout2600.png │ ├── S501.jpg │ ├── S502.jpg │ ├── S503.jpg │ ├── S504.jpg │ ├── breakout_cover.jpg │ ├── iphone_home.gif │ ├── mememe01.png │ ├── mememe02.png │ ├── mememe03.png │ ├── mememe04.png │ ├── mememe05.png │ └── s5filemap.png └── ui │ ├── .DS_Store │ ├── bg-shade.png │ ├── default │ ├── .DS_Store │ ├── blank.gif │ ├── bodybg.gif │ ├── framing.css │ ├── iepngfix.htc │ ├── notes.css │ ├── opera.css │ ├── outline.css │ ├── pretty.css │ ├── print.css │ ├── s5-core.css │ ├── slides.css │ └── slides.js │ └── s5-notes.html ├── rectangle.html └── tutorial ├── .gitignore ├── LICENSE ├── TODO ├── chapters ├── ball.yaml ├── bounce.yaml ├── bricks.yaml ├── coda.yaml ├── color.yaml ├── finish.yaml ├── index.yaml ├── keyboard.yaml ├── library.yaml ├── mouse.yaml ├── move.yaml └── paddle.yaml ├── js ├── CodeMirror-2.11 │ ├── LICENSE │ ├── README.md │ ├── css │ │ ├── baboon.png │ │ ├── baboon_vector.svg │ │ └── docs.css │ ├── demo │ │ └── complete.js │ ├── lib │ │ ├── codemirror.css │ │ ├── codemirror.js │ │ ├── overlay.js │ │ └── runmode.js │ ├── mode │ │ ├── clike │ │ │ └── clike.js │ │ ├── css │ │ │ └── css.js │ │ ├── diff │ │ │ ├── diff.css │ │ │ └── diff.js │ │ ├── haskell │ │ │ └── haskell.js │ │ ├── htmlmixed │ │ │ └── htmlmixed.js │ │ ├── javascript │ │ │ └── javascript.js │ │ ├── lua │ │ │ └── lua.js │ │ ├── php │ │ │ └── php.js │ │ ├── plsql │ │ │ └── plsql.js │ │ ├── python │ │ │ ├── LICENSE.txt │ │ │ └── python.js │ │ ├── rst │ │ │ ├── rst.css │ │ │ └── rst.js │ │ ├── scheme │ │ │ └── scheme.js │ │ ├── smalltalk │ │ │ └── smalltalk.js │ │ ├── stex │ │ │ └── stex.js │ │ ├── xml │ │ │ └── xml.js │ │ └── yaml │ │ │ └── yaml.js │ ├── test │ │ └── test.js │ └── theme │ │ ├── default.css │ │ ├── elegant.css │ │ ├── neat.css │ │ └── night.css ├── jquery-1.7.1.min.js └── jquery-ui │ ├── css │ └── smoothness │ │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ │ └── jquery-ui-1.8.17.custom.css │ ├── development-bundle │ ├── AUTHORS.txt │ ├── GPL-LICENSE.txt │ ├── MIT-LICENSE.txt │ ├── demos │ │ ├── demos.css │ │ ├── images │ │ │ ├── calendar.gif │ │ │ ├── demo-config-on-tile.gif │ │ │ ├── demo-config-on.gif │ │ │ ├── demo-spindown-closed.gif │ │ │ ├── demo-spindown-open.gif │ │ │ ├── icon-docs-info.gif │ │ │ └── pbar-ani.gif │ │ ├── position │ │ │ └── images │ │ │ │ ├── earth.jpg │ │ │ │ ├── flight.jpg │ │ │ │ └── rocket.jpg │ │ └── tabs │ │ │ └── ajax │ │ │ ├── content3-slow.php │ │ │ └── content4-broken.php │ ├── external │ │ ├── jquery.bgiframe-2.1.2.js │ │ ├── jquery.cookie.js │ │ ├── jquery.metadata.js │ │ ├── qunit.css │ │ └── qunit.js │ ├── jquery-1.7.1.js │ ├── themes │ │ ├── base │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── jquery.ui.all.css │ │ │ ├── jquery.ui.base.css │ │ │ ├── jquery.ui.core.css │ │ │ ├── jquery.ui.tabs.css │ │ │ └── jquery.ui.theme.css │ │ └── smoothness │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── jquery-ui-1.8.17.custom.css │ │ │ ├── jquery.ui.all.css │ │ │ ├── jquery.ui.base.css │ │ │ ├── jquery.ui.core.css │ │ │ ├── jquery.ui.tabs.css │ │ │ └── jquery.ui.theme.css │ ├── ui │ │ ├── jquery-ui-1.8.17.custom.js │ │ ├── jquery.ui.core.js │ │ ├── jquery.ui.mouse.js │ │ ├── jquery.ui.position.js │ │ ├── jquery.ui.tabs.js │ │ ├── jquery.ui.widget.js │ │ └── minified │ │ │ ├── jquery.ui.core.min.js │ │ │ ├── jquery.ui.mouse.min.js │ │ │ ├── jquery.ui.position.min.js │ │ │ ├── jquery.ui.tabs.min.js │ │ │ └── jquery.ui.widget.min.js │ └── version.txt │ ├── jquery-ui-1.8.17.custom.zip │ └── js │ ├── jquery-1.7.1.min.js │ └── jquery-ui-1.8.17.custom.min.js ├── make.py └── templates └── template.mak /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/TODO -------------------------------------------------------------------------------- /ball.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/ball.html -------------------------------------------------------------------------------- /ballbounce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/ballbounce.html -------------------------------------------------------------------------------- /ballmove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/ballmove.html -------------------------------------------------------------------------------- /bricks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/bricks.html -------------------------------------------------------------------------------- /color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/color.html -------------------------------------------------------------------------------- /farbtastic/CHANGELOG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/farbtastic/CHANGELOG.html -------------------------------------------------------------------------------- /farbtastic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/farbtastic/LICENSE.txt -------------------------------------------------------------------------------- /farbtastic/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/farbtastic/README.html -------------------------------------------------------------------------------- /farbtastic/demo1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/farbtastic/demo1.html -------------------------------------------------------------------------------- /farbtastic/demo2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/farbtastic/demo2.html -------------------------------------------------------------------------------- /farbtastic/farbtastic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/farbtastic/farbtastic.css -------------------------------------------------------------------------------- /farbtastic/farbtastic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/farbtastic/farbtastic.js -------------------------------------------------------------------------------- /farbtastic/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/farbtastic/marker.png -------------------------------------------------------------------------------- /farbtastic/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/farbtastic/mask.png -------------------------------------------------------------------------------- /farbtastic/wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/farbtastic/wheel.png -------------------------------------------------------------------------------- /final.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/final.html -------------------------------------------------------------------------------- /jquery-1.2.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/jquery-1.2.6.js -------------------------------------------------------------------------------- /keyboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/keyboard.html -------------------------------------------------------------------------------- /mouse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/mouse.html -------------------------------------------------------------------------------- /paddle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/paddle.html -------------------------------------------------------------------------------- /presentation/index-osf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/index-osf.html -------------------------------------------------------------------------------- /presentation/pix/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/pix/.DS_Store -------------------------------------------------------------------------------- /presentation/pix/Breakout2600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/pix/Breakout2600.png -------------------------------------------------------------------------------- /presentation/pix/S501.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/pix/S501.jpg -------------------------------------------------------------------------------- /presentation/pix/S502.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/pix/S502.jpg -------------------------------------------------------------------------------- /presentation/pix/S503.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/pix/S503.jpg -------------------------------------------------------------------------------- /presentation/pix/S504.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/pix/S504.jpg -------------------------------------------------------------------------------- /presentation/pix/breakout_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/pix/breakout_cover.jpg -------------------------------------------------------------------------------- /presentation/pix/iphone_home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/pix/iphone_home.gif -------------------------------------------------------------------------------- /presentation/pix/mememe01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/pix/mememe01.png -------------------------------------------------------------------------------- /presentation/pix/mememe02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/pix/mememe02.png -------------------------------------------------------------------------------- /presentation/pix/mememe03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/pix/mememe03.png -------------------------------------------------------------------------------- /presentation/pix/mememe04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/pix/mememe04.png -------------------------------------------------------------------------------- /presentation/pix/mememe05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/pix/mememe05.png -------------------------------------------------------------------------------- /presentation/pix/s5filemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/pix/s5filemap.png -------------------------------------------------------------------------------- /presentation/ui/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/ui/.DS_Store -------------------------------------------------------------------------------- /presentation/ui/bg-shade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/ui/bg-shade.png -------------------------------------------------------------------------------- /presentation/ui/default/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/ui/default/.DS_Store -------------------------------------------------------------------------------- /presentation/ui/default/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/ui/default/blank.gif -------------------------------------------------------------------------------- /presentation/ui/default/bodybg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/ui/default/bodybg.gif -------------------------------------------------------------------------------- /presentation/ui/default/framing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/ui/default/framing.css -------------------------------------------------------------------------------- /presentation/ui/default/iepngfix.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/ui/default/iepngfix.htc -------------------------------------------------------------------------------- /presentation/ui/default/notes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/ui/default/notes.css -------------------------------------------------------------------------------- /presentation/ui/default/opera.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/ui/default/opera.css -------------------------------------------------------------------------------- /presentation/ui/default/outline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/ui/default/outline.css -------------------------------------------------------------------------------- /presentation/ui/default/pretty.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/ui/default/pretty.css -------------------------------------------------------------------------------- /presentation/ui/default/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/ui/default/print.css -------------------------------------------------------------------------------- /presentation/ui/default/s5-core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/ui/default/s5-core.css -------------------------------------------------------------------------------- /presentation/ui/default/slides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/ui/default/slides.css -------------------------------------------------------------------------------- /presentation/ui/default/slides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/ui/default/slides.js -------------------------------------------------------------------------------- /presentation/ui/s5-notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/presentation/ui/s5-notes.html -------------------------------------------------------------------------------- /rectangle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/rectangle.html -------------------------------------------------------------------------------- /tutorial/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | cruft 3 | -------------------------------------------------------------------------------- /tutorial/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/LICENSE -------------------------------------------------------------------------------- /tutorial/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/TODO -------------------------------------------------------------------------------- /tutorial/chapters/ball.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/chapters/ball.yaml -------------------------------------------------------------------------------- /tutorial/chapters/bounce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/chapters/bounce.yaml -------------------------------------------------------------------------------- /tutorial/chapters/bricks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/chapters/bricks.yaml -------------------------------------------------------------------------------- /tutorial/chapters/coda.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/chapters/coda.yaml -------------------------------------------------------------------------------- /tutorial/chapters/color.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/chapters/color.yaml -------------------------------------------------------------------------------- /tutorial/chapters/finish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/chapters/finish.yaml -------------------------------------------------------------------------------- /tutorial/chapters/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/chapters/index.yaml -------------------------------------------------------------------------------- /tutorial/chapters/keyboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/chapters/keyboard.yaml -------------------------------------------------------------------------------- /tutorial/chapters/library.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/chapters/library.yaml -------------------------------------------------------------------------------- /tutorial/chapters/mouse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/chapters/mouse.yaml -------------------------------------------------------------------------------- /tutorial/chapters/move.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/chapters/move.yaml -------------------------------------------------------------------------------- /tutorial/chapters/paddle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/chapters/paddle.yaml -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/LICENSE -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/README.md -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/css/baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/css/baboon.png -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/css/baboon_vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/css/baboon_vector.svg -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/css/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/css/docs.css -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/demo/complete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/demo/complete.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/lib/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/lib/codemirror.css -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/lib/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/lib/codemirror.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/lib/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/lib/overlay.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/lib/runmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/lib/runmode.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/mode/clike/clike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/mode/clike/clike.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/mode/css/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/mode/css/css.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/mode/diff/diff.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/mode/diff/diff.css -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/mode/diff/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/mode/diff/diff.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/mode/haskell/haskell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/mode/haskell/haskell.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/mode/htmlmixed/htmlmixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/mode/htmlmixed/htmlmixed.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/mode/javascript/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/mode/javascript/javascript.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/mode/lua/lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/mode/lua/lua.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/mode/php/php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/mode/php/php.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/mode/plsql/plsql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/mode/plsql/plsql.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/mode/python/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/mode/python/LICENSE.txt -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/mode/python/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/mode/python/python.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/mode/rst/rst.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/mode/rst/rst.css -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/mode/rst/rst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/mode/rst/rst.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/mode/scheme/scheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/mode/scheme/scheme.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/mode/smalltalk/smalltalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/mode/smalltalk/smalltalk.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/mode/stex/stex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/mode/stex/stex.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/mode/xml/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/mode/xml/xml.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/mode/yaml/yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/mode/yaml/yaml.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/test/test.js -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/theme/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/theme/default.css -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/theme/elegant.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/theme/elegant.css -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/theme/neat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/theme/neat.css -------------------------------------------------------------------------------- /tutorial/js/CodeMirror-2.11/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/CodeMirror-2.11/theme/night.css -------------------------------------------------------------------------------- /tutorial/js/jquery-1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-1.7.1.min.js -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/css/smoothness/jquery-ui-1.8.17.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/css/smoothness/jquery-ui-1.8.17.custom.css -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/AUTHORS.txt -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/GPL-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/GPL-LICENSE.txt -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/MIT-LICENSE.txt -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/demos/demos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/demos/demos.css -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/demos/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/demos/images/calendar.gif -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/demos/images/demo-config-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/demos/images/demo-config-on.gif -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/demos/images/icon-docs-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/demos/images/icon-docs-info.gif -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/demos/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/demos/images/pbar-ani.gif -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/demos/position/images/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/demos/position/images/earth.jpg -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/demos/position/images/flight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/demos/position/images/flight.jpg -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/demos/position/images/rocket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/demos/position/images/rocket.jpg -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/demos/tabs/ajax/content3-slow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/demos/tabs/ajax/content3-slow.php -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/demos/tabs/ajax/content4-broken.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/external/jquery.bgiframe-2.1.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/external/jquery.bgiframe-2.1.2.js -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/external/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/external/jquery.cookie.js -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/external/jquery.metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/external/jquery.metadata.js -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/external/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/external/qunit.css -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/external/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/external/qunit.js -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/jquery-1.7.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/jquery-1.7.1.js -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/base/jquery.ui.all.css -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/base/jquery.ui.base.css -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/base/jquery.ui.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/base/jquery.ui.core.css -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/base/jquery.ui.tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/base/jquery.ui.tabs.css -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/smoothness/jquery-ui-1.8.17.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/smoothness/jquery-ui-1.8.17.custom.css -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/smoothness/jquery.ui.all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/smoothness/jquery.ui.all.css -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/smoothness/jquery.ui.base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/smoothness/jquery.ui.base.css -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/smoothness/jquery.ui.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/smoothness/jquery.ui.core.css -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/smoothness/jquery.ui.tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/smoothness/jquery.ui.tabs.css -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/themes/smoothness/jquery.ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/themes/smoothness/jquery.ui.theme.css -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/ui/jquery-ui-1.8.17.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/ui/jquery-ui-1.8.17.custom.js -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/ui/jquery.ui.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/ui/jquery.ui.core.js -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/ui/jquery.ui.mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/ui/jquery.ui.mouse.js -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/ui/jquery.ui.position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/ui/jquery.ui.position.js -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/ui/jquery.ui.tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/ui/jquery.ui.tabs.js -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/ui/jquery.ui.widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/ui/jquery.ui.widget.js -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/ui/minified/jquery.ui.core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/ui/minified/jquery.ui.core.min.js -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/ui/minified/jquery.ui.mouse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/ui/minified/jquery.ui.mouse.min.js -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/ui/minified/jquery.ui.position.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/ui/minified/jquery.ui.position.min.js -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/ui/minified/jquery.ui.tabs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/ui/minified/jquery.ui.tabs.min.js -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/ui/minified/jquery.ui.widget.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/development-bundle/ui/minified/jquery.ui.widget.min.js -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/development-bundle/version.txt: -------------------------------------------------------------------------------- 1 | 1.8.17 2 | -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/jquery-ui-1.8.17.custom.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/jquery-ui-1.8.17.custom.zip -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/js/jquery-1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/js/jquery-1.7.1.min.js -------------------------------------------------------------------------------- /tutorial/js/jquery-ui/js/jquery-ui-1.8.17.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/js/jquery-ui/js/jquery-ui-1.8.17.custom.min.js -------------------------------------------------------------------------------- /tutorial/make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/make.py -------------------------------------------------------------------------------- /tutorial/templates/template.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llimllib/refresh-canvas/HEAD/tutorial/templates/template.mak --------------------------------------------------------------------------------