├── js ├── mobile.js ├── material.js ├── repl.js ├── logic │ ├── logic.html │ ├── global.js │ └── init.js ├── images.js ├── broadcast.js └── ready.js ├── favicon.ico ├── favicon.png ├── test1.txt ├── icon_128.png ├── error ├── error.png ├── error_codes │ ├── e502.html │ ├── e503.html │ ├── e504.html │ ├── e404.html │ ├── e400.html │ ├── e408.html │ ├── e500.html │ ├── e401.html │ └── e403.html └── standard.css ├── images ├── cloud.png ├── web.png ├── paypal.png ├── cloud_128.png ├── cloud_flat.png ├── other │ └── none.jpg ├── cloud_white.png ├── cloud_flat_128.png ├── cloud_white_128.png ├── buttons │ ├── donate_small.png │ └── star_small.png └── svg │ └── load.svg ├── lib ├── codemirror │ ├── .travis.yml │ ├── bin │ │ ├── lint │ │ ├── authors.sh │ │ ├── source-highlight │ │ └── release │ ├── doc │ │ ├── logo.png │ │ └── yinyang.png │ ├── .gitignore │ ├── theme │ │ ├── ambiance-mobile.css │ │ ├── neat.css │ │ ├── elegant.css │ │ ├── neo.css │ │ ├── eclipse.css │ │ ├── bespin.css │ │ ├── isotope.css │ │ ├── hopscotch.css │ │ ├── railscasts.css │ │ ├── colorforth.css │ │ ├── cobalt.css │ │ ├── rubyblue.css │ │ ├── night.css │ │ ├── tomorrow-night-bright.css │ │ ├── monokai.css │ │ ├── the-matrix.css │ │ ├── yeti.css │ │ ├── blackboard.css │ │ └── abcdef.css │ ├── .gitattributes │ ├── .npmignore │ ├── addon │ │ ├── display │ │ │ ├── fullscreen.css │ │ │ ├── fullscreen.js │ │ │ └── autorefresh.js │ │ ├── search │ │ │ └── matchesonscrollbar.css │ │ ├── fold │ │ │ ├── foldgutter.css │ │ │ ├── indent-fold.js │ │ │ └── markdown-fold.js │ │ ├── dialog │ │ │ └── dialog.css │ │ ├── hint │ │ │ ├── show-hint.css │ │ │ └── anyword-hint.js │ │ ├── lint │ │ │ ├── yaml-lint.js │ │ │ ├── json-lint.js │ │ │ ├── css-lint.js │ │ │ ├── coffeescript-lint.js │ │ │ └── html-lint.js │ │ ├── mode │ │ │ └── multiplex_test.js │ │ ├── minimap │ │ │ └── minimap.css │ │ ├── edit │ │ │ ├── trailingspace.js │ │ │ └── continuelist.js │ │ ├── tern │ │ │ └── worker.js │ │ ├── runmode │ │ │ └── colorize.js │ │ └── scroll │ │ │ ├── simplescrollbars.css │ │ │ └── scrollpastend.js │ ├── mode │ │ ├── tiddlywiki │ │ │ └── tiddlywiki.css │ │ ├── ruby │ │ │ └── test.js │ │ ├── css │ │ │ ├── gss_test.js │ │ │ └── less_test.js │ │ ├── tiki │ │ │ └── tiki.css │ │ ├── rust │ │ │ ├── test.js │ │ │ └── index.html │ │ ├── diff │ │ │ └── diff.js │ │ ├── asciiarmor │ │ │ └── index.html │ │ ├── htmlembedded │ │ │ └── htmlembedded.js │ │ ├── ntriples │ │ │ └── index.html │ │ ├── twig │ │ │ └── index.html │ │ ├── spreadsheet │ │ │ └── index.html │ │ ├── http │ │ │ └── index.html │ │ ├── clike │ │ │ └── test.js │ │ ├── solr │ │ │ └── index.html │ │ ├── ecl │ │ │ └── index.html │ │ ├── z80 │ │ │ └── index.html │ │ ├── oz │ │ │ └── index.html │ │ ├── turtle │ │ │ └── index.html │ │ ├── pascal │ │ │ └── index.html │ │ ├── pig │ │ │ └── index.html │ │ ├── vbscript │ │ │ └── index.html │ │ ├── gherkin │ │ │ └── index.html │ │ ├── properties │ │ │ └── index.html │ │ ├── javascript │ │ │ └── typescript.html │ │ ├── sass │ │ │ └── index.html │ │ ├── perl │ │ │ └── index.html │ │ ├── elm │ │ │ └── index.html │ │ ├── idl │ │ │ └── index.html │ │ ├── dart │ │ │ └── index.html │ │ ├── xml │ │ │ └── test.js │ │ ├── jinja2 │ │ │ └── index.html │ │ ├── shell │ │ │ ├── test.js │ │ │ └── index.html │ │ ├── sparql │ │ │ └── index.html │ │ └── tornado │ │ │ └── index.html │ ├── test │ │ ├── lint.js │ │ ├── mode_test.css │ │ ├── run.js │ │ └── phantom_driver.js │ ├── package.json │ ├── LICENSE │ ├── demo │ │ ├── closetag.html │ │ ├── resize.html │ │ ├── matchtags.html │ │ ├── rulers.html │ │ ├── placeholder.html │ │ ├── marker.html │ │ ├── trailingspace.html │ │ ├── matchhighlighter.html │ │ ├── closebrackets.html │ │ ├── changemode.html │ │ ├── html5complete.html │ │ └── markselection.html │ └── README.md ├── devicons │ ├── devicons.eot │ ├── devicons.ttf │ └── devicons.woff ├── Font │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff ├── repl │ ├── index.html │ └── repl.js ├── picker │ ├── index.html │ └── color.css ├── keyboard │ ├── component.json │ ├── jwerty.enderBridge.js │ └── jwerty.canBridge.js ├── auto │ ├── signal.min.js │ ├── signal.js │ └── comment.min.js └── messenger │ └── js │ ├── messenger-theme-flat.js │ └── messenger-theme-future.js ├── fonts ├── Roboto-Bold.ttf ├── Roboto-Thin.ttf ├── more │ ├── Baron.otf │ ├── Baron_Black.otf │ ├── Baron_Bold.otf │ ├── Baron_Italic.otf │ ├── Baron_Black_Italic.otf │ └── Baron_Bold_Italic.otf ├── Roboto-Black.ttf ├── Roboto-Black.woff ├── Roboto-Bold.woff ├── Roboto-Italic.ttf ├── Roboto-Light.ttf ├── Roboto-Light.woff ├── Roboto-Medium.ttf ├── Roboto-Thin.woff ├── Roboto-Italic.woff ├── Roboto-Medium.woff ├── Roboto-Regular.ttf ├── Roboto-Regular.woff └── material │ └── fonts │ ├── Material-Design-Iconic-Font.eot │ ├── Material-Design-Iconic-Font.ttf │ └── Material-Design-Iconic-Font.woff ├── about ├── images │ ├── record.gif │ ├── code-gray.png │ ├── doc-black.png │ ├── doc-gray.png │ ├── eye-black.png │ ├── eye-gray.png │ ├── note-gray.png │ ├── cloud-black.png │ ├── cloud-gray.png │ ├── code-black.png │ ├── note-black.png │ ├── thumb-black.png │ ├── thumb-gray.png │ ├── web_record.gif │ ├── screen_recording_720.mp4 │ ├── briefcase.svg │ ├── cloud-check.svg │ ├── eye.svg │ ├── logo.svg │ └── thumbs-up.svg ├── lib │ └── fit.js └── css │ └── grid.css ├── mobile ├── mobile.js ├── mobile.html ├── global.js └── picker.js ├── .gitignore └── intro.txt /js/mobile.js: -------------------------------------------------------------------------------- 1 | //just mobile stuff -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/favicon.ico -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/favicon.png -------------------------------------------------------------------------------- /test1.txt: -------------------------------------------------------------------------------- 1 | ::ffff:107.0.95.254 2 | ::ffff:73.143.79.81 3 | ::ffff:73.143.79.81 4 | -------------------------------------------------------------------------------- /icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/icon_128.png -------------------------------------------------------------------------------- /error/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/error/error.png -------------------------------------------------------------------------------- /images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/images/cloud.png -------------------------------------------------------------------------------- /images/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/images/web.png -------------------------------------------------------------------------------- /lib/codemirror/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - stable 4 | sudo: false 5 | -------------------------------------------------------------------------------- /images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/images/paypal.png -------------------------------------------------------------------------------- /js/material.js: -------------------------------------------------------------------------------- 1 | //material design stuff 2 | //had things, but the wave pattern was not needed 3 | -------------------------------------------------------------------------------- /fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /fonts/more/Baron.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/more/Baron.otf -------------------------------------------------------------------------------- /images/cloud_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/images/cloud_128.png -------------------------------------------------------------------------------- /images/cloud_flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/images/cloud_flat.png -------------------------------------------------------------------------------- /images/other/none.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/images/other/none.jpg -------------------------------------------------------------------------------- /about/images/record.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/about/images/record.gif -------------------------------------------------------------------------------- /fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/Roboto-Black.woff -------------------------------------------------------------------------------- /fonts/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/Roboto-Bold.woff -------------------------------------------------------------------------------- /fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/Roboto-Light.woff -------------------------------------------------------------------------------- /fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/Roboto-Thin.woff -------------------------------------------------------------------------------- /images/cloud_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/images/cloud_white.png -------------------------------------------------------------------------------- /lib/codemirror/bin/lint: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | process.exit(require("../test/lint").ok ? 0 : 1); 4 | -------------------------------------------------------------------------------- /about/images/code-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/about/images/code-gray.png -------------------------------------------------------------------------------- /about/images/doc-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/about/images/doc-black.png -------------------------------------------------------------------------------- /about/images/doc-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/about/images/doc-gray.png -------------------------------------------------------------------------------- /about/images/eye-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/about/images/eye-black.png -------------------------------------------------------------------------------- /about/images/eye-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/about/images/eye-gray.png -------------------------------------------------------------------------------- /about/images/note-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/about/images/note-gray.png -------------------------------------------------------------------------------- /fonts/Roboto-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/Roboto-Italic.woff -------------------------------------------------------------------------------- /fonts/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/Roboto-Medium.woff -------------------------------------------------------------------------------- /fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/Roboto-Regular.woff -------------------------------------------------------------------------------- /fonts/more/Baron_Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/more/Baron_Black.otf -------------------------------------------------------------------------------- /fonts/more/Baron_Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/more/Baron_Bold.otf -------------------------------------------------------------------------------- /images/cloud_flat_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/images/cloud_flat_128.png -------------------------------------------------------------------------------- /images/cloud_white_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/images/cloud_white_128.png -------------------------------------------------------------------------------- /lib/devicons/devicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/lib/devicons/devicons.eot -------------------------------------------------------------------------------- /lib/devicons/devicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/lib/devicons/devicons.ttf -------------------------------------------------------------------------------- /lib/devicons/devicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/lib/devicons/devicons.woff -------------------------------------------------------------------------------- /about/images/cloud-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/about/images/cloud-black.png -------------------------------------------------------------------------------- /about/images/cloud-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/about/images/cloud-gray.png -------------------------------------------------------------------------------- /about/images/code-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/about/images/code-black.png -------------------------------------------------------------------------------- /about/images/note-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/about/images/note-black.png -------------------------------------------------------------------------------- /about/images/thumb-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/about/images/thumb-black.png -------------------------------------------------------------------------------- /about/images/thumb-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/about/images/thumb-gray.png -------------------------------------------------------------------------------- /about/images/web_record.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/about/images/web_record.gif -------------------------------------------------------------------------------- /fonts/more/Baron_Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/more/Baron_Italic.otf -------------------------------------------------------------------------------- /lib/codemirror/doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/lib/codemirror/doc/logo.png -------------------------------------------------------------------------------- /images/buttons/donate_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/images/buttons/donate_small.png -------------------------------------------------------------------------------- /images/buttons/star_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/images/buttons/star_small.png -------------------------------------------------------------------------------- /lib/Font/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/lib/Font/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /lib/codemirror/doc/yinyang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/lib/codemirror/doc/yinyang.png -------------------------------------------------------------------------------- /fonts/more/Baron_Black_Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/more/Baron_Black_Italic.otf -------------------------------------------------------------------------------- /fonts/more/Baron_Bold_Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/more/Baron_Bold_Italic.otf -------------------------------------------------------------------------------- /lib/codemirror/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /npm-debug.log 3 | /test*.html 4 | .tern-* 5 | *~ 6 | *.swp 7 | .idea 8 | *.iml 9 | -------------------------------------------------------------------------------- /about/images/screen_recording_720.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/about/images/screen_recording_720.mp4 -------------------------------------------------------------------------------- /lib/Font/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/lib/Font/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /lib/Font/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/lib/Font/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /lib/Font/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/lib/Font/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /lib/codemirror/theme/ambiance-mobile.css: -------------------------------------------------------------------------------- 1 | .cm-s-ambiance.CodeMirror { 2 | -webkit-box-shadow: none; 3 | -moz-box-shadow: none; 4 | box-shadow: none; 5 | } 6 | -------------------------------------------------------------------------------- /fonts/material/fonts/Material-Design-Iconic-Font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/material/fonts/Material-Design-Iconic-Font.eot -------------------------------------------------------------------------------- /fonts/material/fonts/Material-Design-Iconic-Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/material/fonts/Material-Design-Iconic-Font.ttf -------------------------------------------------------------------------------- /fonts/material/fonts/Material-Design-Iconic-Font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkaminsky11/codeyourcloud/HEAD/fonts/material/fonts/Material-Design-Iconic-Font.woff -------------------------------------------------------------------------------- /lib/codemirror/.gitattributes: -------------------------------------------------------------------------------- 1 | *.txt text 2 | *.js text 3 | *.html text 4 | *.md text 5 | *.json text 6 | *.yml text 7 | *.css text 8 | *.svg text 9 | -------------------------------------------------------------------------------- /lib/codemirror/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /demo 3 | /doc 4 | /test 5 | /test*.html 6 | /index.html 7 | /mode/*/*test.js 8 | /mode/*/*.html 9 | /mode/index.html 10 | .* 11 | -------------------------------------------------------------------------------- /lib/codemirror/addon/display/fullscreen.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-fullscreen { 2 | position: fixed; 3 | top: 0; left: 0; right: 0; bottom: 0; 4 | height: auto; 5 | z-index: 9; 6 | } 7 | -------------------------------------------------------------------------------- /lib/repl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /lib/codemirror/addon/search/matchesonscrollbar.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-search-match { 2 | background: gold; 3 | border-top: 1px solid orange; 4 | border-bottom: 1px solid orange; 5 | -moz-box-sizing: border-box; 6 | box-sizing: border-box; 7 | opacity: .5; 8 | } 9 | -------------------------------------------------------------------------------- /js/repl.js: -------------------------------------------------------------------------------- 1 | var repl = {}; 2 | repl.send = function(send){ 3 | repl.elem.contentWindow.postMessage(JSON.stringify(send), '*'); 4 | } 5 | repl.init = function(){ 6 | repl.elem = document.getElementById("repl"); 7 | } 8 | repl.run = function(text){ 9 | repl.send({ 10 | type: "run", 11 | data: text 12 | }); 13 | } -------------------------------------------------------------------------------- /lib/picker/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /lib/codemirror/mode/tiddlywiki/tiddlywiki.css: -------------------------------------------------------------------------------- 1 | span.cm-underlined { 2 | text-decoration: underline; 3 | } 4 | span.cm-strikethrough { 5 | text-decoration: line-through; 6 | } 7 | span.cm-brace { 8 | color: #170; 9 | font-weight: bold; 10 | } 11 | span.cm-table { 12 | color: blue; 13 | font-weight: bold; 14 | } 15 | -------------------------------------------------------------------------------- /lib/codemirror/bin/authors.sh: -------------------------------------------------------------------------------- 1 | # Combine existing list of authors with everyone known in git, sort, add header. 2 | tail --lines=+3 AUTHORS > AUTHORS.tmp 3 | git log --format='%aN' >> AUTHORS.tmp 4 | echo -e "List of CodeMirror contributors. Updated before every release.\n" > AUTHORS 5 | sort -u AUTHORS.tmp >> AUTHORS 6 | rm -f AUTHORS.tmp 7 | -------------------------------------------------------------------------------- /js/logic/logic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /mobile/mobile.js: -------------------------------------------------------------------------------- 1 | /* 2 | 1. link to websockets 3 | 2. check if logged in 4 | YES -> send to parent, handle it there 5 | a) send session info 6 | NO -> send to parent, handle it there 7 | 3. a change in title/text 8 | YES -> send it 9 | NO -> do nothing 10 | 4. collaborator change? 11 | YES -> send it 12 | NO -> do nothing 13 | 5. if asked for text 14 | a) get it 15 | b) send it 16 | 6. if asked for title 17 | a) get it 18 | b) send it 19 | */ 20 | -------------------------------------------------------------------------------- /lib/codemirror/test/lint.js: -------------------------------------------------------------------------------- 1 | var blint = require("blint"); 2 | 3 | ["mode", "lib", "addon", "keymap"].forEach(function(dir) { 4 | blint.checkDir(dir, { 5 | browser: true, 6 | allowedGlobals: ["CodeMirror", "define", "test", "requirejs"], 7 | blob: "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http:\/\/codemirror.net\/LICENSE\n\n" 8 | }); 9 | }); 10 | 11 | module.exports = {ok: blint.success()}; 12 | -------------------------------------------------------------------------------- /lib/codemirror/test/mode_test.css: -------------------------------------------------------------------------------- 1 | .mt-output .mt-token { 2 | border: 1px solid #ddd; 3 | white-space: pre; 4 | font-family: "Consolas", monospace; 5 | text-align: center; 6 | } 7 | 8 | .mt-output .mt-style { 9 | font-size: x-small; 10 | } 11 | 12 | .mt-output .mt-state { 13 | font-size: x-small; 14 | vertical-align: top; 15 | } 16 | 17 | .mt-output .mt-state-row { 18 | display: none; 19 | } 20 | 21 | .mt-state-unhide .mt-output .mt-state-row { 22 | display: table-row; 23 | } 24 | -------------------------------------------------------------------------------- /mobile/mobile.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |