utopia-wiki 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.github/workflows/development.yml +62 -0
- data/.gitignore +18 -0
- data/.rspec +2 -0
- data/.yarnrc +1 -0
- data/Gemfile +4 -0
- data/README.md +46 -0
- data/bake/utopia/wiki.rb +13 -0
- data/lib/components/.yarn-integrity +19 -0
- data/lib/components/jquery-litebox/README.md +66 -0
- data/lib/components/jquery-litebox/bower.json +27 -0
- data/lib/components/jquery-litebox/dist/jquery.litebox.css +23 -0
- data/lib/components/jquery-litebox/dist/jquery.litebox.gallery.css +48 -0
- data/lib/components/jquery-litebox/dist/jquery.litebox.js +30 -0
- data/lib/components/jquery-litebox/example/index.html +69 -0
- data/lib/components/jquery-litebox/example/jquery.min.js +4 -0
- data/lib/components/jquery-litebox/example/sample_images/large/IMG_3340.jpg +0 -0
- data/lib/components/jquery-litebox/example/sample_images/large/IMG_3341.jpg +0 -0
- data/lib/components/jquery-litebox/example/sample_images/large/IMG_3344.jpg +0 -0
- data/lib/components/jquery-litebox/example/sample_images/large/IMG_3351.jpg +0 -0
- data/lib/components/jquery-litebox/example/sample_images/medium/IMG_3340.jpg +0 -0
- data/lib/components/jquery-litebox/example/sample_images/medium/IMG_3341.jpg +0 -0
- data/lib/components/jquery-litebox/example/sample_images/medium/IMG_3344.jpg +0 -0
- data/lib/components/jquery-litebox/example/sample_images/medium/IMG_3351.jpg +0 -0
- data/lib/components/jquery-litebox/example/sample_images/small/IMG_3340.jpg +0 -0
- data/lib/components/jquery-litebox/example/sample_images/small/IMG_3341.jpg +0 -0
- data/lib/components/jquery-litebox/example/sample_images/small/IMG_3344.jpg +0 -0
- data/lib/components/jquery-litebox/example/sample_images/small/IMG_3351.jpg +0 -0
- data/lib/components/jquery-litebox/package.json +29 -0
- data/lib/components/jquery-syntax/Gemfile +5 -0
- data/lib/components/jquery-syntax/LICENSE.txt +19 -0
- data/lib/components/jquery-syntax/NOTES.txt +20 -0
- data/lib/components/jquery-syntax/README.md +95 -0
- data/lib/components/jquery-syntax/Rakefile +211 -0
- data/lib/components/jquery-syntax/bower.json +25 -0
- data/lib/components/jquery-syntax/config.ru +4 -0
- data/lib/components/jquery-syntax/dist/base/jquery.syntax.brush.apache.css +12 -0
- data/lib/components/jquery-syntax/dist/base/jquery.syntax.brush.applescript.css +5 -0
- data/lib/components/jquery-syntax/dist/base/jquery.syntax.brush.assembly.css +8 -0
- data/lib/components/jquery-syntax/dist/base/jquery.syntax.brush.bash-script.css +6 -0
- data/lib/components/jquery-syntax/dist/base/jquery.syntax.brush.bash.css +4 -0
- data/lib/components/jquery-syntax/dist/base/jquery.syntax.brush.clang.css +6 -0
- data/lib/components/jquery-syntax/dist/base/jquery.syntax.brush.css.css +14 -0
- data/lib/components/jquery-syntax/dist/base/jquery.syntax.brush.diff.css +16 -0
- data/lib/components/jquery-syntax/dist/base/jquery.syntax.brush.html.css +5 -0
- data/lib/components/jquery-syntax/dist/base/jquery.syntax.brush.ocaml.css +3 -0
- data/lib/components/jquery-syntax/dist/base/jquery.syntax.brush.protobuf.css +2 -0
- data/lib/components/jquery-syntax/dist/base/jquery.syntax.brush.python.css +6 -0
- data/lib/components/jquery-syntax/dist/base/jquery.syntax.brush.ruby.css +2 -0
- data/lib/components/jquery-syntax/dist/base/jquery.syntax.brush.xml.css +18 -0
- data/lib/components/jquery-syntax/dist/base/jquery.syntax.core.css +58 -0
- data/lib/components/jquery-syntax/dist/base/jquery.syntax.editor.css +6 -0
- data/lib/components/jquery-syntax/dist/base/theme.js +1 -0
- data/lib/components/jquery-syntax/dist/bright/jquery.syntax.core.css +27 -0
- data/lib/components/jquery-syntax/dist/bright/theme.js +1 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.apache.js +3 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.applescript.js +5 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.assembly.js +3 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.bash-script.js +4 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.bash.js +2 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.basic.js +5 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.clang.js +5 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.csharp.js +4 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.css.js +5 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.diff.js +2 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.go.js +3 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.haskell.js +3 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.html.js +4 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.io.js +3 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.java.js +4 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.javascript.js +3 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.kai.js +2 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.lisp.js +2 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.lua.js +3 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.nginx.js +2 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.ocaml.js +4 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.ooc.js +4 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.pascal.js +4 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.perl5.js +3 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.php-script.js +4 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.php.js +2 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.plain.js +2 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.protobuf.js +3 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.python.js +5 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.ruby.js +5 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.scala.js +4 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.smalltalk.js +2 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.sql.js +4 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.super-collider.js +3 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.swift.js +3 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.trenni.js +2 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.xml.js +4 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.brush.yaml.js +2 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.cache.js +7 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.core.js +34 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.editor.js +11 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.js +8 -0
- data/lib/components/jquery-syntax/dist/jquery.syntax.min.js +13 -0
- data/lib/components/jquery-syntax/dist/paper/jquery.syntax.core.css +31 -0
- data/lib/components/jquery-syntax/dist/paper/theme.js +1 -0
- data/lib/components/jquery-syntax/examples/ex.applescript.html +120 -0
- data/lib/components/jquery-syntax/examples/ex.asm.html +43 -0
- data/lib/components/jquery-syntax/examples/ex.bash.html +139 -0
- data/lib/components/jquery-syntax/examples/ex.clang.html +337 -0
- data/lib/components/jquery-syntax/examples/ex.css.html +48 -0
- data/lib/components/jquery-syntax/examples/ex.diff.html +1226 -0
- data/lib/components/jquery-syntax/examples/ex.editor.html +28 -0
- data/lib/components/jquery-syntax/examples/ex.html.html +134 -0
- data/lib/components/jquery-syntax/examples/ex.javascript.html +330 -0
- data/lib/components/jquery-syntax/examples/ex.ooc.html +119 -0
- data/lib/components/jquery-syntax/examples/ex.php.html +54 -0
- data/lib/components/jquery-syntax/examples/ex.python.html +1510 -0
- data/lib/components/jquery-syntax/examples/ex.ruby.html +358 -0
- data/lib/components/jquery-syntax/examples/ex.swift.html +90 -0
- data/lib/components/jquery-syntax/examples/index.css +18 -0
- data/lib/components/jquery-syntax/examples/jquery-1.6.min.js +16 -0
- data/lib/components/jquery-syntax/examples/tests.html +71 -0
- data/lib/components/jquery-syntax/examples/wrapping-flex.html +71 -0
- data/lib/components/jquery-syntax/examples/wrapping.html +181 -0
- data/lib/components/jquery-syntax/ext/closure/COPYING +202 -0
- data/lib/components/jquery-syntax/ext/closure/README +292 -0
- data/lib/components/jquery-syntax/ext/closure/compiler.jar +0 -0
- data/lib/components/jquery-syntax/ext/theme.rb +85 -0
- data/lib/components/jquery-syntax/install.yaml +9 -0
- data/lib/components/jquery-syntax/jQuery.Syntax.artx/Preview/preview.png +0 -0
- data/lib/components/jquery-syntax/jQuery.Syntax.artx/doc.thread +0 -0
- data/lib/components/jquery-syntax/package.json +31 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.apache.js +41 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.applescript.js +57 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.assembly.js +37 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.bash-script.js +67 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.bash.js +33 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.basic.js +51 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.clang.js +89 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.csharp.js +47 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.css.js +80 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.diff.js +24 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.go.js +47 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.haskell.js +45 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.html.js +66 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.io.js +45 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.java.js +45 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.javascript.js +42 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.kai.js +29 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.lisp.js +34 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.lua.js +44 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.nginx.js +30 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.ocaml.js +73 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.ooc.js +46 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.pascal.js +51 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.perl5.js +52 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.php-script.js +48 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.php.js +15 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.plain.js +10 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.protobuf.js +43 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.python.js +44 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.ruby.js +77 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.scala.js +44 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.smalltalk.js +29 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.sql.js +31 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.super-collider.js +57 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.swift.js +55 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.trenni.js +35 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.xml.js +50 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.brush.yaml.js +29 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.core.js +1114 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.editor.js +291 -0
- data/lib/components/jquery-syntax/source/jquery.syntax.js +258 -0
- data/lib/components/jquery-syntax/themes/base/jquery.syntax.brush.apache.sass +23 -0
- data/lib/components/jquery-syntax/themes/base/jquery.syntax.brush.applescript.sass +11 -0
- data/lib/components/jquery-syntax/themes/base/jquery.syntax.brush.assembly.sass +16 -0
- data/lib/components/jquery-syntax/themes/base/jquery.syntax.brush.bash-script.sass +14 -0
- data/lib/components/jquery-syntax/themes/base/jquery.syntax.brush.bash.sass +11 -0
- data/lib/components/jquery-syntax/themes/base/jquery.syntax.brush.clang.sass +12 -0
- data/lib/components/jquery-syntax/themes/base/jquery.syntax.brush.css.sass +25 -0
- data/lib/components/jquery-syntax/themes/base/jquery.syntax.brush.diff.sass +25 -0
- data/lib/components/jquery-syntax/themes/base/jquery.syntax.brush.html.sass +12 -0
- data/lib/components/jquery-syntax/themes/base/jquery.syntax.brush.ocaml.sass +8 -0
- data/lib/components/jquery-syntax/themes/base/jquery.syntax.brush.protobuf.sass +7 -0
- data/lib/components/jquery-syntax/themes/base/jquery.syntax.brush.python.sass +12 -0
- data/lib/components/jquery-syntax/themes/base/jquery.syntax.brush.ruby.sass +9 -0
- data/lib/components/jquery-syntax/themes/base/jquery.syntax.brush.xml.sass +30 -0
- data/lib/components/jquery-syntax/themes/base/jquery.syntax.core.sass +86 -0
- data/lib/components/jquery-syntax/themes/base/jquery.syntax.editor.sass +12 -0
- data/lib/components/jquery-syntax/themes/bright/_config.yaml +2 -0
- data/lib/components/jquery-syntax/themes/bright/jquery.syntax.core.sass +42 -0
- data/lib/components/jquery-syntax/themes/paper/_config.yaml +2 -0
- data/lib/components/jquery-syntax/themes/paper/jquery.syntax.core.sass +47 -0
- data/lib/components/jquery/AUTHORS.txt +327 -0
- data/lib/components/jquery/LICENSE.txt +20 -0
- data/lib/components/jquery/README.md +62 -0
- data/lib/components/jquery/bower.json +14 -0
- data/lib/components/jquery/dist/jquery.js +10872 -0
- data/lib/components/jquery/dist/jquery.min.js +2 -0
- data/lib/components/jquery/dist/jquery.min.map +1 -0
- data/lib/components/jquery/dist/jquery.slim.js +8777 -0
- data/lib/components/jquery/dist/jquery.slim.min.js +2 -0
- data/lib/components/jquery/dist/jquery.slim.min.map +1 -0
- data/lib/components/jquery/external/sizzle/LICENSE.txt +36 -0
- data/lib/components/jquery/external/sizzle/dist/sizzle.js +2478 -0
- data/lib/components/jquery/external/sizzle/dist/sizzle.min.js +3 -0
- data/lib/components/jquery/external/sizzle/dist/sizzle.min.map +1 -0
- data/lib/components/jquery/package.json +117 -0
- data/lib/components/jquery/src/ajax.js +873 -0
- data/lib/components/jquery/src/ajax/jsonp.js +103 -0
- data/lib/components/jquery/src/ajax/load.js +77 -0
- data/lib/components/jquery/src/ajax/script.js +74 -0
- data/lib/components/jquery/src/ajax/var/location.js +5 -0
- data/lib/components/jquery/src/ajax/var/nonce.js +5 -0
- data/lib/components/jquery/src/ajax/var/rquery.js +5 -0
- data/lib/components/jquery/src/ajax/xhr.js +170 -0
- data/lib/components/jquery/src/attributes.js +13 -0
- data/lib/components/jquery/src/attributes/attr.js +141 -0
- data/lib/components/jquery/src/attributes/classes.js +186 -0
- data/lib/components/jquery/src/attributes/prop.js +143 -0
- data/lib/components/jquery/src/attributes/support.js +33 -0
- data/lib/components/jquery/src/attributes/val.js +191 -0
- data/lib/components/jquery/src/callbacks.js +236 -0
- data/lib/components/jquery/src/core.js +400 -0
- data/lib/components/jquery/src/core/DOMEval.js +43 -0
- data/lib/components/jquery/src/core/access.js +72 -0
- data/lib/components/jquery/src/core/camelCase.js +23 -0
- data/lib/components/jquery/src/core/init.js +129 -0
- data/lib/components/jquery/src/core/isAttached.js +26 -0
- data/lib/components/jquery/src/core/nodeName.js +13 -0
- data/lib/components/jquery/src/core/parseHTML.js +65 -0
- data/lib/components/jquery/src/core/parseXML.js +30 -0
- data/lib/components/jquery/src/core/ready-no-deferred.js +97 -0
- data/lib/components/jquery/src/core/ready.js +86 -0
- data/lib/components/jquery/src/core/readyException.js +13 -0
- data/lib/components/jquery/src/core/stripAndCollapse.js +14 -0
- data/lib/components/jquery/src/core/support.js +20 -0
- data/lib/components/jquery/src/core/toType.js +20 -0
- data/lib/components/jquery/src/core/var/rsingleTag.js +7 -0
- data/lib/components/jquery/src/css.js +494 -0
- data/lib/components/jquery/src/css/addGetHookIf.js +26 -0
- data/lib/components/jquery/src/css/adjustCSS.js +74 -0
- data/lib/components/jquery/src/css/curCSS.js +65 -0
- data/lib/components/jquery/src/css/finalPropName.js +42 -0
- data/lib/components/jquery/src/css/hiddenVisibleSelectors.js +15 -0
- data/lib/components/jquery/src/css/showHide.js +105 -0
- data/lib/components/jquery/src/css/support.js +133 -0
- data/lib/components/jquery/src/css/var/cssExpand.js +5 -0
- data/lib/components/jquery/src/css/var/getStyles.js +17 -0
- data/lib/components/jquery/src/css/var/isHiddenWithinTree.js +34 -0
- data/lib/components/jquery/src/css/var/rboxStyle.js +7 -0
- data/lib/components/jquery/src/css/var/rnumnonpx.js +7 -0
- data/lib/components/jquery/src/css/var/swap.js +26 -0
- data/lib/components/jquery/src/data.js +180 -0
- data/lib/components/jquery/src/data/Data.js +162 -0
- data/lib/components/jquery/src/data/var/acceptData.js +19 -0
- data/lib/components/jquery/src/data/var/dataPriv.js +7 -0
- data/lib/components/jquery/src/data/var/dataUser.js +7 -0
- data/lib/components/jquery/src/deferred.js +399 -0
- data/lib/components/jquery/src/deferred/exceptionHook.js +21 -0
- data/lib/components/jquery/src/deprecated.js +87 -0
- data/lib/components/jquery/src/deprecated/ajax-event-alias.js +22 -0
- data/lib/components/jquery/src/deprecated/event.js +48 -0
- data/lib/components/jquery/src/dimensions.js +57 -0
- data/lib/components/jquery/src/effects.js +701 -0
- data/lib/components/jquery/src/effects/Tween.js +125 -0
- data/lib/components/jquery/src/effects/animatedSelector.js +15 -0
- data/lib/components/jquery/src/event.js +892 -0
- data/lib/components/jquery/src/event/focusin.js +58 -0
- data/lib/components/jquery/src/event/support.js +11 -0
- data/lib/components/jquery/src/event/trigger.js +201 -0
- data/lib/components/jquery/src/exports/amd.js +26 -0
- data/lib/components/jquery/src/exports/global.js +34 -0
- data/lib/components/jquery/src/jquery.js +41 -0
- data/lib/components/jquery/src/manipulation.js +480 -0
- data/lib/components/jquery/src/manipulation/_evalUrl.js +32 -0
- data/lib/components/jquery/src/manipulation/buildFragment.js +106 -0
- data/lib/components/jquery/src/manipulation/getAll.js +32 -0
- data/lib/components/jquery/src/manipulation/setGlobalEval.js +22 -0
- data/lib/components/jquery/src/manipulation/support.js +41 -0
- data/lib/components/jquery/src/manipulation/var/rscriptType.js +5 -0
- data/lib/components/jquery/src/manipulation/var/rtagName.js +8 -0
- data/lib/components/jquery/src/manipulation/wrapMap.js +30 -0
- data/lib/components/jquery/src/offset.js +238 -0
- data/lib/components/jquery/src/queue.js +145 -0
- data/lib/components/jquery/src/queue/delay.js +24 -0
- data/lib/components/jquery/src/selector-native.js +241 -0
- data/lib/components/jquery/src/selector-sizzle.js +19 -0
- data/lib/components/jquery/src/selector.js +3 -0
- data/lib/components/jquery/src/serialize.js +136 -0
- data/lib/components/jquery/src/traversing.js +198 -0
- data/lib/components/jquery/src/traversing/findFilter.js +97 -0
- data/lib/components/jquery/src/traversing/var/dir.js +22 -0
- data/lib/components/jquery/src/traversing/var/rneedsContext.js +8 -0
- data/lib/components/jquery/src/traversing/var/siblings.js +17 -0
- data/lib/components/jquery/src/var/ObjectFunctionString.js +7 -0
- data/lib/components/jquery/src/var/arr.js +5 -0
- data/lib/components/jquery/src/var/class2type.js +6 -0
- data/lib/components/jquery/src/var/document.js +5 -0
- data/lib/components/jquery/src/var/documentElement.js +7 -0
- data/lib/components/jquery/src/var/flat.js +16 -0
- data/lib/components/jquery/src/var/fnToString.js +7 -0
- data/lib/components/jquery/src/var/getProto.js +5 -0
- data/lib/components/jquery/src/var/hasOwn.js +7 -0
- data/lib/components/jquery/src/var/indexOf.js +7 -0
- data/lib/components/jquery/src/var/isFunction.js +13 -0
- data/lib/components/jquery/src/var/isWindow.js +8 -0
- data/lib/components/jquery/src/var/pnum.js +5 -0
- data/lib/components/jquery/src/var/push.js +7 -0
- data/lib/components/jquery/src/var/rcheckableType.js +5 -0
- data/lib/components/jquery/src/var/rcssNum.js +9 -0
- data/lib/components/jquery/src/var/rnothtmlwhite.js +8 -0
- data/lib/components/jquery/src/var/slice.js +7 -0
- data/lib/components/jquery/src/var/support.js +6 -0
- data/lib/components/jquery/src/var/toString.js +7 -0
- data/lib/components/jquery/src/wrap.js +78 -0
- data/lib/utopia/wiki.rb +80 -0
- data/lib/utopia/wiki/version.rb +27 -0
- data/package.json +6 -0
- data/pages/_editor.xnode +21 -0
- data/pages/_heading.xnode +2 -0
- data/pages/_listing.xnode +23 -0
- data/pages/_navigation.xnode +33 -0
- data/pages/_page.xnode +32 -0
- data/pages/_thumbnail.xnode +8 -0
- data/pages/controller.rb +77 -0
- data/pages/create.xnode +15 -0
- data/pages/edit.xnode +10 -0
- data/pages/errors/exception.xnode +5 -0
- data/pages/errors/file-not-found.xnode +5 -0
- data/pages/links.yaml +2 -0
- data/pages/show.xnode +15 -0
- data/public/.nojekyll +0 -0
- data/public/_components/jquery-litebox/jquery.litebox.css +23 -0
- data/public/_components/jquery-litebox/jquery.litebox.gallery.css +48 -0
- data/public/_components/jquery-litebox/jquery.litebox.js +30 -0
- data/public/_components/jquery-syntax/base/jquery.syntax.brush.apache.css +12 -0
- data/public/_components/jquery-syntax/base/jquery.syntax.brush.applescript.css +5 -0
- data/public/_components/jquery-syntax/base/jquery.syntax.brush.assembly.css +8 -0
- data/public/_components/jquery-syntax/base/jquery.syntax.brush.bash-script.css +6 -0
- data/public/_components/jquery-syntax/base/jquery.syntax.brush.bash.css +4 -0
- data/public/_components/jquery-syntax/base/jquery.syntax.brush.clang.css +6 -0
- data/public/_components/jquery-syntax/base/jquery.syntax.brush.css.css +14 -0
- data/public/_components/jquery-syntax/base/jquery.syntax.brush.diff.css +16 -0
- data/public/_components/jquery-syntax/base/jquery.syntax.brush.html.css +5 -0
- data/public/_components/jquery-syntax/base/jquery.syntax.brush.ocaml.css +3 -0
- data/public/_components/jquery-syntax/base/jquery.syntax.brush.protobuf.css +2 -0
- data/public/_components/jquery-syntax/base/jquery.syntax.brush.python.css +6 -0
- data/public/_components/jquery-syntax/base/jquery.syntax.brush.ruby.css +2 -0
- data/public/_components/jquery-syntax/base/jquery.syntax.brush.xml.css +18 -0
- data/public/_components/jquery-syntax/base/jquery.syntax.core.css +58 -0
- data/public/_components/jquery-syntax/base/jquery.syntax.editor.css +6 -0
- data/public/_components/jquery-syntax/base/theme.js +1 -0
- data/public/_components/jquery-syntax/bright/jquery.syntax.core.css +27 -0
- data/public/_components/jquery-syntax/bright/theme.js +1 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.apache.js +3 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.applescript.js +5 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.assembly.js +3 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.bash-script.js +4 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.bash.js +2 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.basic.js +5 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.clang.js +5 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.csharp.js +4 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.css.js +5 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.diff.js +2 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.go.js +3 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.haskell.js +3 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.html.js +4 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.io.js +3 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.java.js +4 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.javascript.js +3 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.kai.js +2 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.lisp.js +2 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.lua.js +3 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.nginx.js +2 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.ocaml.js +4 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.ooc.js +4 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.pascal.js +4 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.perl5.js +3 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.php-script.js +4 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.php.js +2 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.plain.js +2 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.protobuf.js +3 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.python.js +5 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.ruby.js +5 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.scala.js +4 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.smalltalk.js +2 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.sql.js +4 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.super-collider.js +3 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.swift.js +3 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.trenni.js +2 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.xml.js +4 -0
- data/public/_components/jquery-syntax/jquery.syntax.brush.yaml.js +2 -0
- data/public/_components/jquery-syntax/jquery.syntax.cache.js +7 -0
- data/public/_components/jquery-syntax/jquery.syntax.core.js +34 -0
- data/public/_components/jquery-syntax/jquery.syntax.editor.js +11 -0
- data/public/_components/jquery-syntax/jquery.syntax.js +8 -0
- data/public/_components/jquery-syntax/jquery.syntax.min.js +13 -0
- data/public/_components/jquery-syntax/paper/jquery.syntax.core.css +31 -0
- data/public/_components/jquery-syntax/paper/theme.js +1 -0
- data/public/_components/jquery/jquery.js +10872 -0
- data/public/_components/jquery/jquery.min.js +2 -0
- data/public/_components/jquery/jquery.min.map +1 -0
- data/public/_components/jquery/jquery.slim.js +8777 -0
- data/public/_components/jquery/jquery.slim.min.js +2 -0
- data/public/_components/jquery/jquery.slim.min.map +1 -0
- data/public/_static/icon.png +0 -0
- data/public/_static/site.css +191 -0
- data/utopia-wiki.gemspec +39 -0
- data/wiki/Gemfile +10 -0
- data/wiki/config.ru +7 -0
- data/wiki/pages/_logos/Async.png +0 -0
- data/wiki/pages/_logos/Falcon.png +0 -0
- data/wiki/pages/_logos/Utopia.png +0 -0
- data/wiki/pages/index.en.md +62 -0
- data/wiki/pages/index.md +57 -0
- data/wiki/pages/links.yaml +2 -0
- data/wiki/pages/usage/merging/index.md +3 -0
- data/yarn.lock +22 -0
- metadata +675 -0
@@ -0,0 +1,23 @@
|
|
1
|
+
// This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
|
2
|
+
// Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
|
3
|
+
// See <jquery.syntax.js> for licensing details.
|
4
|
+
|
5
|
+
.syntax-theme-base
|
6
|
+
.apache
|
7
|
+
.tag
|
8
|
+
color: #00c
|
9
|
+
|
10
|
+
.tag-name
|
11
|
+
color: #00f
|
12
|
+
|
13
|
+
.tag-name
|
14
|
+
font-weight: bold
|
15
|
+
|
16
|
+
@media (prefers-color-scheme: dark)
|
17
|
+
.syntax-theme-base
|
18
|
+
.apache
|
19
|
+
.tag
|
20
|
+
color: lighten(#00c, 30%)
|
21
|
+
|
22
|
+
.tag-name
|
23
|
+
color: lighten(#00f, 30%)
|
@@ -0,0 +1,11 @@
|
|
1
|
+
// This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
|
2
|
+
// Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
|
3
|
+
// See <jquery.syntax.js> for licensing details.
|
4
|
+
|
5
|
+
.syntax-theme-base
|
6
|
+
.applescript
|
7
|
+
font-family: Geneva, Helvetica, sans-serif
|
8
|
+
|
9
|
+
.keyword
|
10
|
+
color: #00f
|
11
|
+
font-weight: bold
|
@@ -0,0 +1,16 @@
|
|
1
|
+
// This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
|
2
|
+
// Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
|
3
|
+
// See <jquery.syntax.js> for licensing details.
|
4
|
+
|
5
|
+
.syntax-theme-base
|
6
|
+
.assembly
|
7
|
+
.register
|
8
|
+
color: #3caa20
|
9
|
+
font-style: italic
|
10
|
+
|
11
|
+
.label
|
12
|
+
font-weight: bold
|
13
|
+
color: #2a85b3
|
14
|
+
|
15
|
+
.directive
|
16
|
+
color: #828a3d
|
@@ -0,0 +1,14 @@
|
|
1
|
+
// This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
|
2
|
+
// Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
|
3
|
+
// See <jquery.syntax.js> for licensing details.
|
4
|
+
|
5
|
+
.syntax-theme-base
|
6
|
+
.bash-script
|
7
|
+
.function
|
8
|
+
font-weight: bold
|
9
|
+
|
10
|
+
.option
|
11
|
+
color: #03f
|
12
|
+
|
13
|
+
.env
|
14
|
+
font-style: italic
|
@@ -0,0 +1,11 @@
|
|
1
|
+
// This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
|
2
|
+
// Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
|
3
|
+
// See <jquery.syntax.js> for licensing details.
|
4
|
+
|
5
|
+
.syntax-theme-base
|
6
|
+
.bash
|
7
|
+
.prompt
|
8
|
+
color: #558
|
9
|
+
|
10
|
+
.stderr
|
11
|
+
color: red
|
@@ -0,0 +1,12 @@
|
|
1
|
+
// This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
|
2
|
+
// Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
|
3
|
+
// See <jquery.syntax.js> for licensing details.
|
4
|
+
|
5
|
+
.syntax-theme-base
|
6
|
+
.preprocessor
|
7
|
+
color: #63381f
|
8
|
+
|
9
|
+
@media (prefers-color-scheme: dark)
|
10
|
+
.syntax-theme-base
|
11
|
+
.preprocessor
|
12
|
+
color: lighten(#63381f, 30%)
|
@@ -0,0 +1,25 @@
|
|
1
|
+
// This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
|
2
|
+
// Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
|
3
|
+
// See <jquery.syntax.js> for licensing details.
|
4
|
+
|
5
|
+
.syntax-theme-base
|
6
|
+
.css
|
7
|
+
.selector
|
8
|
+
color: #458
|
9
|
+
font-weight: bold
|
10
|
+
|
11
|
+
.property
|
12
|
+
color: teal
|
13
|
+
|
14
|
+
.value
|
15
|
+
|
16
|
+
.color-box
|
17
|
+
position: relative
|
18
|
+
|
19
|
+
.sample
|
20
|
+
border: 1px solid #000
|
21
|
+
position: absolute
|
22
|
+
left: 0.2em
|
23
|
+
right: 0.2em
|
24
|
+
top: 0.2em
|
25
|
+
bottom: 0.2em
|
@@ -0,0 +1,25 @@
|
|
1
|
+
// This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
|
2
|
+
// Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
|
3
|
+
// See <jquery.syntax.js> for licensing details.
|
4
|
+
|
5
|
+
.syntax-theme-base
|
6
|
+
.add
|
7
|
+
color: green
|
8
|
+
|
9
|
+
.del
|
10
|
+
color: red
|
11
|
+
|
12
|
+
.insert
|
13
|
+
color: green
|
14
|
+
.insert-line
|
15
|
+
background-color: #cfc !important
|
16
|
+
|
17
|
+
.remove
|
18
|
+
color: red
|
19
|
+
.remove-line
|
20
|
+
background-color: #fcc !important
|
21
|
+
|
22
|
+
.offset
|
23
|
+
color: blue
|
24
|
+
.offset-line
|
25
|
+
background-color: #ccf !important
|
@@ -0,0 +1,12 @@
|
|
1
|
+
// This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
|
2
|
+
// Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
|
3
|
+
// See <jquery.syntax.js> for licensing details.
|
4
|
+
|
5
|
+
.syntax-theme-base
|
6
|
+
.html
|
7
|
+
.doctype
|
8
|
+
font-weight: bold
|
9
|
+
color: #938
|
10
|
+
|
11
|
+
.javascript, .css
|
12
|
+
font-style: italic
|
@@ -0,0 +1,8 @@
|
|
1
|
+
// This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
|
2
|
+
// Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
|
3
|
+
// See <jquery.syntax.js> for licensing details.
|
4
|
+
|
5
|
+
.syntax .ocaml
|
6
|
+
.operator
|
7
|
+
color: #06C
|
8
|
+
font-weight: bold
|
@@ -0,0 +1,7 @@
|
|
1
|
+
// This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
|
2
|
+
// Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
|
3
|
+
// See <jquery.syntax.js> for licensing details.
|
4
|
+
|
5
|
+
.syntax .protobuf
|
6
|
+
.variable
|
7
|
+
font-weight: bold
|
@@ -0,0 +1,12 @@
|
|
1
|
+
// This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
|
2
|
+
// Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
|
3
|
+
// See <jquery.syntax.js> for licensing details.
|
4
|
+
|
5
|
+
.syntax-theme-base
|
6
|
+
.python
|
7
|
+
.decorator
|
8
|
+
color: #ffb600
|
9
|
+
font-weight: bold
|
10
|
+
.builtin
|
11
|
+
color: #33f
|
12
|
+
font-style: italic
|
@@ -0,0 +1,9 @@
|
|
1
|
+
// This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
|
2
|
+
// Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
|
3
|
+
// See <jquery.syntax.js> for licensing details.
|
4
|
+
|
5
|
+
// This small hack ensures that string interpolations are displayed correctly
|
6
|
+
.syntax-theme-base
|
7
|
+
.ruby
|
8
|
+
.string .ruby
|
9
|
+
color: #808080
|
@@ -0,0 +1,30 @@
|
|
1
|
+
// This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
|
2
|
+
// Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
|
3
|
+
// See <jquery.syntax.js> for licensing details.
|
4
|
+
|
5
|
+
.syntax-theme-base
|
6
|
+
.xml
|
7
|
+
.cdata-content
|
8
|
+
color: #046
|
9
|
+
border-radius: 0.5em
|
10
|
+
|
11
|
+
.xml-tag, .cdata
|
12
|
+
color: #00c
|
13
|
+
|
14
|
+
.tag-name, .cdata-tag
|
15
|
+
color: #00f
|
16
|
+
font-weight: bold
|
17
|
+
|
18
|
+
.namespace
|
19
|
+
color: #00c
|
20
|
+
|
21
|
+
.attribute
|
22
|
+
color: #00c
|
23
|
+
|
24
|
+
.instruction
|
25
|
+
color: #00c
|
26
|
+
|
27
|
+
.entity, .percent-escape
|
28
|
+
color: #666
|
29
|
+
background-color: #ddd
|
30
|
+
border-radius: 0.5em
|
@@ -0,0 +1,86 @@
|
|
1
|
+
// This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
|
2
|
+
// Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
|
3
|
+
// See <jquery.syntax.js> for licensing details.
|
4
|
+
|
5
|
+
pre code.syntax-theme-base
|
6
|
+
display: block
|
7
|
+
|
8
|
+
> span
|
9
|
+
display: flex
|
10
|
+
|
11
|
+
.indent
|
12
|
+
flex-grow: 0
|
13
|
+
flex-shrink: 0
|
14
|
+
|
15
|
+
.text
|
16
|
+
white-space: pre-wrap
|
17
|
+
padding-left: 2ch
|
18
|
+
text-indent: -2ch
|
19
|
+
|
20
|
+
.syntax-theme-base
|
21
|
+
a
|
22
|
+
text-decoration: none
|
23
|
+
color: inherit
|
24
|
+
|
25
|
+
.function
|
26
|
+
color: #33f
|
27
|
+
|
28
|
+
.keyword, .access, .option
|
29
|
+
color: darken(#a90d91, 10%)
|
30
|
+
|
31
|
+
.type
|
32
|
+
color: #3239D6
|
33
|
+
|
34
|
+
.comment
|
35
|
+
color: #6ac
|
36
|
+
|
37
|
+
.constant
|
38
|
+
color: #1c00ce
|
39
|
+
|
40
|
+
.string, .symbol
|
41
|
+
color: #c41a15
|
42
|
+
|
43
|
+
.string .escape
|
44
|
+
color: #f99
|
45
|
+
|
46
|
+
.operator
|
47
|
+
color: black
|
48
|
+
|
49
|
+
.href
|
50
|
+
color: #0e0eff
|
51
|
+
text-decoration: underline
|
52
|
+
|
53
|
+
.variable
|
54
|
+
color: #466997
|
55
|
+
|
56
|
+
.highlight
|
57
|
+
background-color: opacify(#fdfdba, 0.5)
|
58
|
+
|
59
|
+
@media (prefers-color-scheme: dark)
|
60
|
+
.syntax-theme-base
|
61
|
+
.operator
|
62
|
+
color: white
|
63
|
+
|
64
|
+
.function
|
65
|
+
color: #c59de7
|
66
|
+
|
67
|
+
.keyword, .access, .option
|
68
|
+
color: darken(#98c6ff, 20%)
|
69
|
+
|
70
|
+
.type
|
71
|
+
color: #37a4ff
|
72
|
+
|
73
|
+
.comment
|
74
|
+
color: #849fca
|
75
|
+
|
76
|
+
.constant
|
77
|
+
color: lighten(#9d7c31, 15%)
|
78
|
+
|
79
|
+
.string, .symbol
|
80
|
+
color: lighten(#e43c3a, 15%)
|
81
|
+
|
82
|
+
.string .escape
|
83
|
+
color: #f99
|
84
|
+
|
85
|
+
.variable
|
86
|
+
color: #6e6dff
|
@@ -0,0 +1,12 @@
|
|
1
|
+
// This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
|
2
|
+
// Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
|
3
|
+
// See <jquery.syntax.js> for licensing details.
|
4
|
+
|
5
|
+
.syntax-container.syntax-theme-base
|
6
|
+
div.editor.syntax
|
7
|
+
padding: 0.2em !important
|
8
|
+
margin: 0 !important
|
9
|
+
white-space: pre
|
10
|
+
|
11
|
+
div.editor.syntax:focus
|
12
|
+
outline: none
|
@@ -0,0 +1,42 @@
|
|
1
|
+
// This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
|
2
|
+
// Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
|
3
|
+
// See <jquery.syntax.js> for licensing details.
|
4
|
+
|
5
|
+
.syntax-container.syntax-theme-bright
|
6
|
+
.syntax
|
7
|
+
font-family: Menlo, Monaco, Consolas, monospace
|
8
|
+
line-height: 1.5em
|
9
|
+
|
10
|
+
.function
|
11
|
+
color: #33f
|
12
|
+
|
13
|
+
.keyword
|
14
|
+
color: #3c3
|
15
|
+
|
16
|
+
.access
|
17
|
+
color: #ffb600
|
18
|
+
font-weight: bold
|
19
|
+
|
20
|
+
.type
|
21
|
+
color: #191
|
22
|
+
font-weight: bold
|
23
|
+
|
24
|
+
.comment
|
25
|
+
color: #6ac
|
26
|
+
font-style: italic
|
27
|
+
|
28
|
+
.string, .constant
|
29
|
+
color: #f33
|
30
|
+
|
31
|
+
.string .escape
|
32
|
+
color: #f99
|
33
|
+
|
34
|
+
.operator
|
35
|
+
color: #c00
|
36
|
+
|
37
|
+
.href
|
38
|
+
color: #00f
|
39
|
+
text-decoration: underline
|
40
|
+
|
41
|
+
.variable
|
42
|
+
color: #22c
|
@@ -0,0 +1,47 @@
|
|
1
|
+
// This file is part of the "jQuery.Syntax" project, and is distributed under the MIT License.
|
2
|
+
// Copyright (c) 2011 Samuel G. D. Williams. <http://www.oriontransfer.co.nz>
|
3
|
+
// See <jquery.syntax.js> for licensing details.
|
4
|
+
|
5
|
+
code.syntax-theme-paper
|
6
|
+
font-family: 'Bitstream Vera Sans Mono', 'Courier', monospace
|
7
|
+
line-height: 1.5em
|
8
|
+
|
9
|
+
.function
|
10
|
+
color: #33f
|
11
|
+
|
12
|
+
.keyword
|
13
|
+
color: #cb4b16
|
14
|
+
|
15
|
+
.access
|
16
|
+
color: #ffb600
|
17
|
+
font-weight: bold
|
18
|
+
|
19
|
+
.type
|
20
|
+
color: #268bd2
|
21
|
+
|
22
|
+
.comment
|
23
|
+
color: #998
|
24
|
+
font-style: italic
|
25
|
+
|
26
|
+
.string
|
27
|
+
color: #2aa198
|
28
|
+
|
29
|
+
.string .escape
|
30
|
+
color: #2ab1a8
|
31
|
+
|
32
|
+
.operator
|
33
|
+
color: #268bd2
|
34
|
+
|
35
|
+
.href
|
36
|
+
color: #00f
|
37
|
+
text-decoration: underline
|
38
|
+
|
39
|
+
.variable
|
40
|
+
color: #b58900
|
41
|
+
|
42
|
+
.constant
|
43
|
+
color: #099
|
44
|
+
|
45
|
+
pre code.syntax-theme-paper
|
46
|
+
> span:nth-child(odd)
|
47
|
+
background-color: rgba(0, 0, 0, 0.05)
|
@@ -0,0 +1,327 @@
|
|
1
|
+
Authors ordered by first contribution.
|
2
|
+
|
3
|
+
John Resig <jeresig@gmail.com>
|
4
|
+
Gilles van den Hoven <gilles0181@gmail.com>
|
5
|
+
Michael Geary <mike@geary.com>
|
6
|
+
Stefan Petre <stefan.petre@gmail.com>
|
7
|
+
Yehuda Katz <wycats@gmail.com>
|
8
|
+
Corey Jewett <cj@syntheticplayground.com>
|
9
|
+
Klaus Hartl <klaus.hartl@gmail.com>
|
10
|
+
Franck Marcia <franck.marcia@gmail.com>
|
11
|
+
Jörn Zaefferer <joern.zaefferer@gmail.com>
|
12
|
+
Paul Bakaus <paul.bakaus@gmail.com>
|
13
|
+
Brandon Aaron <brandon.aaron@gmail.com>
|
14
|
+
Mike Alsup <malsup@gmail.com>
|
15
|
+
Dave Methvin <dave.methvin@gmail.com>
|
16
|
+
Ed Engelhardt <edengelhardt@gmail.com>
|
17
|
+
Sean Catchpole <littlecooldude@gmail.com>
|
18
|
+
Paul Mclanahan <pmclanahan@gmail.com>
|
19
|
+
David Serduke <davidserduke@gmail.com>
|
20
|
+
Richard D. Worth <rdworth@gmail.com>
|
21
|
+
Scott González <scott.gonzalez@gmail.com>
|
22
|
+
Ariel Flesler <aflesler@gmail.com>
|
23
|
+
Jon Evans <jon@springyweb.com>
|
24
|
+
TJ Holowaychuk <tj@vision-media.ca>
|
25
|
+
Michael Bensoussan <mickey@seesmic.com>
|
26
|
+
Robert Katić <robert.katic@gmail.com>
|
27
|
+
Louis-Rémi Babé <lrbabe@gmail.com>
|
28
|
+
Earle Castledine <mrspeaker@gmail.com>
|
29
|
+
Damian Janowski <damian.janowski@gmail.com>
|
30
|
+
Rich Dougherty <rich@rd.gen.nz>
|
31
|
+
Kim Dalsgaard <kim@kimdalsgaard.com>
|
32
|
+
Andrea Giammarchi <andrea.giammarchi@gmail.com>
|
33
|
+
Mark Gibson <jollytoad@gmail.com>
|
34
|
+
Karl Swedberg <kswedberg@gmail.com>
|
35
|
+
Justin Meyer <justinbmeyer@gmail.com>
|
36
|
+
Ben Alman <cowboy@rj3.net>
|
37
|
+
James Padolsey <cla@padolsey.net>
|
38
|
+
David Petersen <public@petersendidit.com>
|
39
|
+
Batiste Bieler <batiste.bieler@gmail.com>
|
40
|
+
Alexander Farkas <info@corrupt-system.de>
|
41
|
+
Rick Waldron <waldron.rick@gmail.com>
|
42
|
+
Filipe Fortes <filipe@fortes.com>
|
43
|
+
Neeraj Singh <neerajdotname@gmail.com>
|
44
|
+
Paul Irish <paul.irish@gmail.com>
|
45
|
+
Iraê Carvalho <irae@irae.pro.br>
|
46
|
+
Matt Curry <matt@pseudocoder.com>
|
47
|
+
Michael Monteleone <michael@michaelmonteleone.net>
|
48
|
+
Noah Sloan <noah.sloan@gmail.com>
|
49
|
+
Tom Viner <github@viner.tv>
|
50
|
+
Douglas Neiner <doug@dougneiner.com>
|
51
|
+
Adam J. Sontag <ajpiano@ajpiano.com>
|
52
|
+
Dave Reed <dareed@microsoft.com>
|
53
|
+
Ralph Whitbeck <ralph.whitbeck@gmail.com>
|
54
|
+
Carl Fürstenberg <azatoth@gmail.com>
|
55
|
+
Jacob Wright <jacwright@gmail.com>
|
56
|
+
J. Ryan Stinnett <jryans@gmail.com>
|
57
|
+
unknown <Igen005@.upcorp.ad.uprr.com>
|
58
|
+
temp01 <temp01irc@gmail.com>
|
59
|
+
Heungsub Lee <h@subl.ee>
|
60
|
+
Colin Snover <github.com@zetafleet.com>
|
61
|
+
Ryan W Tenney <ryan@10e.us>
|
62
|
+
Pinhook <contact@pinhooklabs.com>
|
63
|
+
Ron Otten <r.j.g.otten@gmail.com>
|
64
|
+
Jephte Clain <Jephte.Clain@univ-reunion.fr>
|
65
|
+
Anton Matzneller <obhvsbypqghgc@gmail.com>
|
66
|
+
Alex Sexton <AlexSexton@gmail.com>
|
67
|
+
Dan Heberden <danheberden@gmail.com>
|
68
|
+
Henri Wiechers <hwiechers@gmail.com>
|
69
|
+
Russell Holbrook <russell.holbrook@patch.com>
|
70
|
+
Julian Aubourg <aubourg.julian@gmail.com>
|
71
|
+
Gianni Alessandro Chiappetta <gianni@runlevel6.org>
|
72
|
+
Scott Jehl <scottjehl@gmail.com>
|
73
|
+
James Burke <jrburke@gmail.com>
|
74
|
+
Jonas Pfenniger <jonas@pfenniger.name>
|
75
|
+
Xavi Ramirez <xavi.rmz@gmail.com>
|
76
|
+
Jared Grippe <jared@deadlyicon.com>
|
77
|
+
Sylvester Keil <sylvester@keil.or.at>
|
78
|
+
Brandon Sterne <bsterne@mozilla.com>
|
79
|
+
Mathias Bynens <mathias@qiwi.be>
|
80
|
+
Timmy Willison <4timmywil@gmail.com>
|
81
|
+
Corey Frang <gnarf37@gmail.com>
|
82
|
+
Digitalxero <digitalxero>
|
83
|
+
Anton Kovalyov <anton@kovalyov.net>
|
84
|
+
David Murdoch <david@davidmurdoch.com>
|
85
|
+
Josh Varner <josh.varner@gmail.com>
|
86
|
+
Charles McNulty <cmcnulty@kznf.com>
|
87
|
+
Jordan Boesch <jboesch26@gmail.com>
|
88
|
+
Jess Thrysoee <jess@thrysoee.dk>
|
89
|
+
Michael Murray <m@murz.net>
|
90
|
+
Lee Carpenter <elcarpie@gmail.com>
|
91
|
+
Alexis Abril <me@alexisabril.com>
|
92
|
+
Rob Morgan <robbym@gmail.com>
|
93
|
+
John Firebaugh <john_firebaugh@bigfix.com>
|
94
|
+
Sam Bisbee <sam@sbisbee.com>
|
95
|
+
Gilmore Davidson <gilmoreorless@gmail.com>
|
96
|
+
Brian Brennan <me@brianlovesthings.com>
|
97
|
+
Xavier Montillet <xavierm02.net@gmail.com>
|
98
|
+
Daniel Pihlstrom <sciolist.se@gmail.com>
|
99
|
+
Sahab Yazdani <sahab.yazdani+github@gmail.com>
|
100
|
+
avaly <github-com@agachi.name>
|
101
|
+
Scott Hughes <hi@scott-hughes.me>
|
102
|
+
Mike Sherov <mike.sherov@gmail.com>
|
103
|
+
Greg Hazel <ghazel@gmail.com>
|
104
|
+
Schalk Neethling <schalk@ossreleasefeed.com>
|
105
|
+
Denis Knauf <Denis.Knauf@gmail.com>
|
106
|
+
Timo Tijhof <krinklemail@gmail.com>
|
107
|
+
Steen Nielsen <swinedk@gmail.com>
|
108
|
+
Anton Ryzhov <anton@ryzhov.me>
|
109
|
+
Shi Chuan <shichuanr@gmail.com>
|
110
|
+
Berker Peksag <berker.peksag@gmail.com>
|
111
|
+
Toby Brain <tobyb@freshview.com>
|
112
|
+
Matt Mueller <mattmuelle@gmail.com>
|
113
|
+
Justin <drakefjustin@gmail.com>
|
114
|
+
Daniel Herman <daniel.c.herman@gmail.com>
|
115
|
+
Oleg Gaidarenko <markelog@gmail.com>
|
116
|
+
Richard Gibson <richard.gibson@gmail.com>
|
117
|
+
Rafaël Blais Masson <rafbmasson@gmail.com>
|
118
|
+
cmc3cn <59194618@qq.com>
|
119
|
+
Joe Presbrey <presbrey@gmail.com>
|
120
|
+
Sindre Sorhus <sindresorhus@gmail.com>
|
121
|
+
Arne de Bree <arne@bukkie.nl>
|
122
|
+
Vladislav Zarakovsky <vlad.zar@gmail.com>
|
123
|
+
Andrew E Monat <amonat@gmail.com>
|
124
|
+
Oskari <admin@o-programs.com>
|
125
|
+
Joao Henrique de Andrade Bruni <joaohbruni@yahoo.com.br>
|
126
|
+
tsinha <tsinha@Anthonys-MacBook-Pro.local>
|
127
|
+
Matt Farmer <matt@frmr.me>
|
128
|
+
Trey Hunner <treyhunner@gmail.com>
|
129
|
+
Jason Moon <jmoon@socialcast.com>
|
130
|
+
Jeffery To <jeffery.to@gmail.com>
|
131
|
+
Kris Borchers <kris.borchers@gmail.com>
|
132
|
+
Vladimir Zhuravlev <private.face@gmail.com>
|
133
|
+
Jacob Thornton <jacobthornton@gmail.com>
|
134
|
+
Chad Killingsworth <chadkillingsworth@missouristate.edu>
|
135
|
+
Nowres Rafid <nowres.rafed@gmail.com>
|
136
|
+
David Benjamin <davidben@mit.edu>
|
137
|
+
Uri Gilad <antishok@gmail.com>
|
138
|
+
Chris Faulkner <thefaulkner@gmail.com>
|
139
|
+
Elijah Manor <elijah.manor@gmail.com>
|
140
|
+
Daniel Chatfield <chatfielddaniel@gmail.com>
|
141
|
+
Nikita Govorov <nikita.govorov@gmail.com>
|
142
|
+
Wesley Walser <waw325@gmail.com>
|
143
|
+
Mike Pennisi <mike@mikepennisi.com>
|
144
|
+
Markus Staab <markus.staab@redaxo.de>
|
145
|
+
Dave Riddle <david@joyvuu.com>
|
146
|
+
Callum Macrae <callum@lynxphp.com>
|
147
|
+
Benjamin Truyman <bentruyman@gmail.com>
|
148
|
+
James Huston <james@jameshuston.net>
|
149
|
+
Erick Ruiz de Chávez <erickrdch@gmail.com>
|
150
|
+
David Bonner <dbonner@cogolabs.com>
|
151
|
+
Akintayo Akinwunmi <aakinwunmi@judge.com>
|
152
|
+
MORGAN <morgan@morgangraphics.com>
|
153
|
+
Ismail Khair <ismail.khair@gmail.com>
|
154
|
+
Carl Danley <carldanley@gmail.com>
|
155
|
+
Mike Petrovich <michael.c.petrovich@gmail.com>
|
156
|
+
Greg Lavallee <greglavallee@wapolabs.com>
|
157
|
+
Daniel Gálvez <dgalvez@editablething.com>
|
158
|
+
Sai Lung Wong <sai.wong@huffingtonpost.com>
|
159
|
+
Tom H Fuertes <TomFuertes@gmail.com>
|
160
|
+
Roland Eckl <eckl.roland@googlemail.com>
|
161
|
+
Jay Merrifield <fracmak@gmail.com>
|
162
|
+
Allen J Schmidt Jr <cobrasoft@gmail.com>
|
163
|
+
Jonathan Sampson <jjdsampson@gmail.com>
|
164
|
+
Marcel Greter <marcel.greter@ocbnet.ch>
|
165
|
+
Matthias Jäggli <matthias.jaeggli@gmail.com>
|
166
|
+
David Fox <dfoxinator@gmail.com>
|
167
|
+
Yiming He <yiminghe@gmail.com>
|
168
|
+
Devin Cooper <cooper.semantics@gmail.com>
|
169
|
+
Paul Ramos <paul.b.ramos@gmail.com>
|
170
|
+
Rod Vagg <rod@vagg.org>
|
171
|
+
Bennett Sorbo <bsorbo@gmail.com>
|
172
|
+
Sebastian Burkhard <sebi.burkhard@gmail.com>
|
173
|
+
Zachary Adam Kaplan <razic@viralkitty.com>
|
174
|
+
nanto_vi <nanto@moon.email.ne.jp>
|
175
|
+
nanto <nanto@moon.email.ne.jp>
|
176
|
+
Danil Somsikov <danilasomsikov@gmail.com>
|
177
|
+
Ryunosuke SATO <tricknotes.rs@gmail.com>
|
178
|
+
Jean Boussier <jean.boussier@gmail.com>
|
179
|
+
Adam Coulombe <me@adam.co>
|
180
|
+
Andrew Plummer <plummer.andrew@gmail.com>
|
181
|
+
Mark Raddatz <mraddatz@gmail.com>
|
182
|
+
Isaac Z. Schlueter <i@izs.me>
|
183
|
+
Karl Sieburg <ksieburg@yahoo.com>
|
184
|
+
Pascal Borreli <pascal@borreli.com>
|
185
|
+
Nguyen Phuc Lam <ruado1987@gmail.com>
|
186
|
+
Dmitry Gusev <dmitry.gusev@gmail.com>
|
187
|
+
Michał Gołębiowski-Owczarek <m.goleb@gmail.com>
|
188
|
+
Li Xudong <istonelee@gmail.com>
|
189
|
+
Steven Benner <admin@stevenbenner.com>
|
190
|
+
Tom H Fuertes <tomfuertes@gmail.com>
|
191
|
+
Renato Oliveira dos Santos <ros3@cin.ufpe.br>
|
192
|
+
ros3cin <ros3@cin.ufpe.br>
|
193
|
+
Jason Bedard <jason+jquery@jbedard.ca>
|
194
|
+
Kyle Robinson Young <kyle@dontkry.com>
|
195
|
+
Chris Talkington <chris@talkingtontech.com>
|
196
|
+
Eddie Monge <eddie@eddiemonge.com>
|
197
|
+
Terry Jones <terry@jon.es>
|
198
|
+
Jason Merino <jasonmerino@gmail.com>
|
199
|
+
Jeremy Dunck <jdunck@gmail.com>
|
200
|
+
Chris Price <price.c@gmail.com>
|
201
|
+
Guy Bedford <guybedford@gmail.com>
|
202
|
+
Amey Sakhadeo <me@ameyms.com>
|
203
|
+
Mike Sidorov <mikes.ekb@gmail.com>
|
204
|
+
Anthony Ryan <anthonyryan1@gmail.com>
|
205
|
+
Dominik D. Geyer <dominik.geyer@gmail.com>
|
206
|
+
George Kats <katsgeorgeek@gmail.com>
|
207
|
+
Lihan Li <frankieteardrop@gmail.com>
|
208
|
+
Ronny Springer <springer.ronny@gmail.com>
|
209
|
+
Chris Antaki <ChrisAntaki@gmail.com>
|
210
|
+
Marian Sollmann <marian.sollmann@cargomedia.ch>
|
211
|
+
njhamann <njhamann@gmail.com>
|
212
|
+
Ilya Kantor <iliakan@gmail.com>
|
213
|
+
David Hong <d.hong@me.com>
|
214
|
+
John Paul <john@johnkpaul.com>
|
215
|
+
Jakob Stoeck <jakob@pokermania.de>
|
216
|
+
Christopher Jones <chris@cjqed.com>
|
217
|
+
Forbes Lindesay <forbes@lindesay.co.uk>
|
218
|
+
S. Andrew Sheppard <andrew@wq.io>
|
219
|
+
Leonardo Balter <leonardo.balter@gmail.com>
|
220
|
+
Roman Reiß <me@silverwind.io>
|
221
|
+
Benjy Cui <benjytrys@gmail.com>
|
222
|
+
Rodrigo Rosenfeld Rosas <rr.rosas@gmail.com>
|
223
|
+
John Hoven <hovenj@gmail.com>
|
224
|
+
Philip Jägenstedt <philip@foolip.org>
|
225
|
+
Christian Kosmowski <ksmwsk@gmail.com>
|
226
|
+
Liang Peng <poppinlp@gmail.com>
|
227
|
+
TJ VanToll <tj.vantoll@gmail.com>
|
228
|
+
Senya Pugach <upisfree@outlook.com>
|
229
|
+
Aurelio De Rosa <aurelioderosa@gmail.com>
|
230
|
+
Nazar Mokrynskyi <nazar@mokrynskyi.com>
|
231
|
+
Amit Merchant <bullredeyes@gmail.com>
|
232
|
+
Jason Bedard <jason+github@jbedard.ca>
|
233
|
+
Arthur Verschaeve <contact@arthurverschaeve.be>
|
234
|
+
Dan Hart <danhart@notonthehighstreet.com>
|
235
|
+
Bin Xin <rhyzix@gmail.com>
|
236
|
+
David Corbacho <davidcorbacho@gmail.com>
|
237
|
+
Veaceslav Grimalschi <grimalschi@yandex.ru>
|
238
|
+
Daniel Husar <dano.husar@gmail.com>
|
239
|
+
Frederic Hemberger <mail@frederic-hemberger.de>
|
240
|
+
Ben Toews <mastahyeti@gmail.com>
|
241
|
+
Aditya Raghavan <araghavan3@gmail.com>
|
242
|
+
Victor Homyakov <vkhomyackov@gmail.com>
|
243
|
+
Shivaji Varma <contact@shivajivarma.com>
|
244
|
+
Nicolas HENRY <icewil@gmail.com>
|
245
|
+
Anne-Gaelle Colom <coloma@westminster.ac.uk>
|
246
|
+
George Mauer <gmauer@gmail.com>
|
247
|
+
Leonardo Braga <leonardo.braga@gmail.com>
|
248
|
+
Stephen Edgar <stephen@netweb.com.au>
|
249
|
+
Thomas Tortorini <thomastortorini@gmail.com>
|
250
|
+
Winston Howes <winstonhowes@gmail.com>
|
251
|
+
Jon Hester <jon.d.hester@gmail.com>
|
252
|
+
Alexander O'Mara <me@alexomara.com>
|
253
|
+
Bastian Buchholz <buchholz.bastian@googlemail.com>
|
254
|
+
Arthur Stolyar <nekr.fabula@gmail.com>
|
255
|
+
Calvin Metcalf <calvin.metcalf@gmail.com>
|
256
|
+
Mu Haibao <mhbseal@163.com>
|
257
|
+
Richard McDaniel <rm0026@uah.edu>
|
258
|
+
Chris Rebert <github@rebertia.com>
|
259
|
+
Gabriel Schulhof <gabriel.schulhof@intel.com>
|
260
|
+
Gilad Peleg <giladp007@gmail.com>
|
261
|
+
Martin Naumann <martin@geekonaut.de>
|
262
|
+
Marek Lewandowski <m.lewandowski@cksource.com>
|
263
|
+
Bruno Pérel <brunoperel@gmail.com>
|
264
|
+
Reed Loden <reed@reedloden.com>
|
265
|
+
Daniel Nill <daniellnill@gmail.com>
|
266
|
+
Yongwoo Jeon <yongwoo.jeon@navercorp.com>
|
267
|
+
Sean Henderson <seanh.za@gmail.com>
|
268
|
+
Richard Kraaijenhagen <stdin+git@riichard.com>
|
269
|
+
Connor Atherton <c.liam.atherton@gmail.com>
|
270
|
+
Gary Ye <garysye@gmail.com>
|
271
|
+
Christian Grete <webmaster@christiangrete.com>
|
272
|
+
Liza Ramo <liza.h.ramo@gmail.com>
|
273
|
+
Julian Alexander Murillo <julian.alexander.murillo@gmail.com>
|
274
|
+
Joelle Fleurantin <joasqueeniebee@gmail.com>
|
275
|
+
Jae Sung Park <alberto.park@gmail.com>
|
276
|
+
Jun Sun <klsforever@gmail.com>
|
277
|
+
Josh Soref <apache@soref.com>
|
278
|
+
Henry Wong <henryw4k@gmail.com>
|
279
|
+
Jon Dufresne <jon.dufresne@gmail.com>
|
280
|
+
Martijn W. van der Lee <martijn@vanderlee.com>
|
281
|
+
Devin Wilson <dwilson6.github@gmail.com>
|
282
|
+
Steve Mao <maochenyan@gmail.com>
|
283
|
+
Zack Hall <zackhall@outlook.com>
|
284
|
+
Bernhard M. Wiedemann <jquerybmw@lsmod.de>
|
285
|
+
Todor Prikumov <tono_pr@abv.bg>
|
286
|
+
Jha Naman <createnaman@gmail.com>
|
287
|
+
William Robinet <william.robinet@conostix.com>
|
288
|
+
Alexander Lisianoi <all3fox@gmail.com>
|
289
|
+
Vitaliy Terziev <vitaliyterziev@gmail.com>
|
290
|
+
Joe Trumbull <trumbull.j@gmail.com>
|
291
|
+
Alexander K <xpyro@ya.ru>
|
292
|
+
Damian Senn <jquery@topaxi.codes>
|
293
|
+
Ralin Chimev <ralin.chimev@gmail.com>
|
294
|
+
Felipe Sateler <fsateler@gmail.com>
|
295
|
+
Christophe Tafani-Dereeper <christophetd@hotmail.fr>
|
296
|
+
Manoj Kumar <nithmanoj@gmail.com>
|
297
|
+
David Broder-Rodgers <broder93@gmail.com>
|
298
|
+
Alex Louden <alex@louden.com>
|
299
|
+
Alex Padilla <alexonezero@outlook.com>
|
300
|
+
南漂一卒 <shiy007@qq.com>
|
301
|
+
karan-96 <karanbatra96@gmail.com>
|
302
|
+
Boom Lee <teabyii@gmail.com>
|
303
|
+
Andreas Solleder <asol@num42.de>
|
304
|
+
CDAGaming <cstack2011@yahoo.com>
|
305
|
+
Pierre Spring <pierre@nelm.io>
|
306
|
+
Shashanka Nataraj <shashankan.10@gmail.com>
|
307
|
+
Erik Lax <erik@datahack.se>
|
308
|
+
Matan Kotler-Berkowitz <205matan@gmail.com>
|
309
|
+
Jordan Beland <jordan.beland@gmail.com>
|
310
|
+
Henry Zhu <hi@henryzoo.com>
|
311
|
+
Saptak Sengupta <saptak013@gmail.com>
|
312
|
+
Nilton Cesar <niltoncms@gmail.com>
|
313
|
+
basil.belokon <basil.belokon@gmail.com>
|
314
|
+
tmybr11 <tomas.perone@gmail.com>
|
315
|
+
Luis Emilio Velasco Sanchez <emibloque@gmail.com>
|
316
|
+
Ed S <ejsanders@gmail.com>
|
317
|
+
Bert Zhang <enbo@users.noreply.github.com>
|
318
|
+
Andrei Fangli <andrei_fangli@outlook.com>
|
319
|
+
Marja Hölttä <marja.holtta@gmail.com>
|
320
|
+
abnud1 <ahmad13932013@hotmail.com>
|
321
|
+
buddh4 <mail@jharrer.de>
|
322
|
+
Pat O'Callaghan <patocallaghan@gmail.com>
|
323
|
+
Ahmed.S.ElAfifi <ahmed.s.elafifi@gmail.com>
|
324
|
+
Wonseop Kim <wonseop.kim@samsung.com>
|
325
|
+
Christian Oliff <christianoliff@pm.me>
|
326
|
+
Christian Wenz <christian@wenz.org>
|
327
|
+
Sean Robinson <sean.robinson@scottsdalecc.edu>
|