├── .braids ├── .gitignore ├── Capfile ├── LICENSE ├── README.md ├── console.js ├── db ├── cleanup.js ├── export.js └── slug.js ├── designs ├── invalid.tsv ├── nko.eps ├── nko.key ├── nko.pdf ├── nko.vdesigner │ ├── QuickLook │ │ ├── Preview.pdf │ │ └── Thumbnail.jpg │ └── VectorDesigner └── noise.pxm ├── lib ├── coffee │ └── lib │ │ ├── coffee-script │ │ ├── .gitignore │ │ ├── Cakefile │ │ ├── LICENSE │ │ ├── README │ │ ├── Rakefile │ │ ├── bin │ │ │ ├── cake │ │ │ └── coffee │ │ ├── documentation │ │ │ ├── coffee │ │ │ │ ├── aliases.coffee │ │ │ │ ├── array_comprehensions.coffee │ │ │ │ ├── assignment.coffee │ │ │ │ ├── block_comment.coffee │ │ │ │ ├── cake_tasks.coffee │ │ │ │ ├── classes.coffee │ │ │ │ ├── comparisons.coffee │ │ │ │ ├── conditionals.coffee │ │ │ │ ├── embedded.coffee │ │ │ │ ├── existence.coffee │ │ │ │ ├── expressions.coffee │ │ │ │ ├── expressions_assignment.coffee │ │ │ │ ├── expressions_comprehension.coffee │ │ │ │ ├── expressions_try.coffee │ │ │ │ ├── fat_arrow.coffee │ │ │ │ ├── functions.coffee │ │ │ │ ├── heredocs.coffee │ │ │ │ ├── interpolation.coffee │ │ │ │ ├── interpolation_expression.coffee │ │ │ │ ├── multiple_return_values.coffee │ │ │ │ ├── object_comprehensions.coffee │ │ │ │ ├── object_extraction.coffee │ │ │ │ ├── objects_and_arrays.coffee │ │ │ │ ├── objects_reserved.coffee │ │ │ │ ├── overview.coffee │ │ │ │ ├── parallel_assignment.coffee │ │ │ │ ├── patterns_and_splats.coffee │ │ │ │ ├── prototypes.coffee │ │ │ │ ├── range_comprehensions.coffee │ │ │ │ ├── scope.coffee │ │ │ │ ├── slices.coffee │ │ │ │ ├── soaks.coffee │ │ │ │ ├── splats.coffee │ │ │ │ ├── splices.coffee │ │ │ │ ├── strings.coffee │ │ │ │ ├── switch.coffee │ │ │ │ ├── try.coffee │ │ │ │ └── while.coffee │ │ │ ├── css │ │ │ │ ├── docs.css │ │ │ │ └── idle.css │ │ │ ├── docs │ │ │ │ ├── cake.html │ │ │ │ ├── coffee-script.html │ │ │ │ ├── command.html │ │ │ │ ├── docco.css │ │ │ │ ├── grammar.html │ │ │ │ ├── helpers.html │ │ │ │ ├── index.html │ │ │ │ ├── lexer.html │ │ │ │ ├── nodes.html │ │ │ │ ├── optparse.html │ │ │ │ ├── repl.html │ │ │ │ ├── rewriter.html │ │ │ │ ├── scope.html │ │ │ │ └── underscore.html │ │ │ ├── images │ │ │ │ ├── favicon.ico │ │ │ │ └── logo.png │ │ │ ├── index.html.erb │ │ │ └── js │ │ │ │ ├── aliases.js │ │ │ │ ├── array_comprehensions.js │ │ │ │ ├── assignment.js │ │ │ │ ├── block_comment.js │ │ │ │ ├── cake_tasks.js │ │ │ │ ├── classes.js │ │ │ │ ├── comparisons.js │ │ │ │ ├── conditionals.js │ │ │ │ ├── embedded.js │ │ │ │ ├── existence.js │ │ │ │ ├── expressions.js │ │ │ │ ├── expressions_assignment.js │ │ │ │ ├── expressions_comprehension.js │ │ │ │ ├── expressions_try.js │ │ │ │ ├── fat_arrow.js │ │ │ │ ├── functions.js │ │ │ │ ├── heredocs.js │ │ │ │ ├── interpolation.js │ │ │ │ ├── interpolation_expression.js │ │ │ │ ├── multiple_return_values.js │ │ │ │ ├── object_comprehensions.js │ │ │ │ ├── object_extraction.js │ │ │ │ ├── objects_and_arrays.js │ │ │ │ ├── objects_reserved.js │ │ │ │ ├── overview.js │ │ │ │ ├── parallel_assignment.js │ │ │ │ ├── patterns_and_splats.js │ │ │ │ ├── prototypes.js │ │ │ │ ├── range_comprehensions.js │ │ │ │ ├── scope.js │ │ │ │ ├── slices.js │ │ │ │ ├── soaks.js │ │ │ │ ├── splats.js │ │ │ │ ├── splices.js │ │ │ │ ├── strings.js │ │ │ │ ├── switch.js │ │ │ │ ├── try.js │ │ │ │ └── while.js │ │ ├── examples │ │ │ ├── beautiful_code │ │ │ │ ├── binary_search.coffee │ │ │ │ ├── quicksort_runtime.coffee │ │ │ │ └── regular_expression_matcher.coffee │ │ │ ├── blocks.coffee │ │ │ ├── code.coffee │ │ │ ├── computer_science │ │ │ │ ├── README │ │ │ │ ├── binary_search.coffee │ │ │ │ ├── bubble_sort.coffee │ │ │ │ ├── linked_list.coffee │ │ │ │ ├── luhn_algorithm.coffee │ │ │ │ ├── merge_sort.coffee │ │ │ │ └── selection_sort.coffee │ │ │ ├── poignant.coffee │ │ │ ├── potion.coffee │ │ │ ├── underscore.coffee │ │ │ └── web_server.coffee │ │ ├── extras │ │ │ ├── EXTRAS │ │ │ └── coffee-script.js │ │ ├── index.html │ │ ├── lib │ │ │ ├── cake.js │ │ │ ├── coffee-script.js │ │ │ ├── command.js │ │ │ ├── grammar.js │ │ │ ├── helpers.js │ │ │ ├── index.js │ │ │ ├── lexer.js │ │ │ ├── nodes.js │ │ │ ├── optparse.js │ │ │ ├── parser.js │ │ │ ├── repl.js │ │ │ ├── rewriter.js │ │ │ ├── scope.js │ │ │ └── utilities.js │ │ ├── package.json │ │ ├── src │ │ │ ├── cake.coffee │ │ │ ├── coffee-script.coffee │ │ │ ├── command.coffee │ │ │ ├── grammar.coffee │ │ │ ├── helpers.coffee │ │ │ ├── index.coffee │ │ │ ├── lexer.coffee │ │ │ ├── nodes.coffee │ │ │ ├── optparse.coffee │ │ │ ├── repl.coffee │ │ │ ├── rewriter.coffee │ │ │ └── scope.coffee │ │ └── test │ │ │ ├── test_arguments.coffee │ │ │ ├── test_assignment.coffee │ │ │ ├── test_blocks.coffee │ │ │ ├── test_break.coffee │ │ │ ├── test_chaining.coffee │ │ │ ├── test_classes.coffee │ │ │ ├── test_comments.coffee │ │ │ ├── test_compilation.coffee │ │ │ ├── test_compound_assignment.coffee │ │ │ ├── test_comprehensions.coffee │ │ │ ├── test_existence.coffee │ │ │ ├── test_expressions.coffee │ │ │ ├── test_functions.coffee │ │ │ ├── test_heredocs.coffee │ │ │ ├── test_if.coffee │ │ │ ├── test_importing.coffee │ │ │ ├── test_literals.coffee │ │ │ ├── test_module.coffee │ │ │ ├── test_operations.coffee │ │ │ ├── test_option_parser.coffee │ │ │ ├── test_pattern_matching.coffee │ │ │ ├── test_ranges_slices_and_splices.coffee │ │ │ ├── test_regexp_interpolation.coffee │ │ │ ├── test_regexps.coffee │ │ │ ├── test_returns.coffee │ │ │ ├── test_splats.coffee │ │ │ ├── test_string_interpolation.coffee │ │ │ ├── test_switch.coffee │ │ │ ├── test_try_catch.coffee │ │ │ └── test_while.coffee │ │ ├── coffee-test.coffee │ │ └── coffee.js ├── connect │ ├── .gitignore │ ├── .gitmodules │ ├── History.md │ ├── Makefile │ ├── README.md │ ├── benchmarks │ │ ├── graph │ │ ├── hello-world │ │ │ ├── connect.js │ │ │ ├── node.js │ │ │ ├── rack.thin.ru │ │ │ └── sinatra.thin.ru │ │ ├── public │ │ │ └── jquery.js │ │ ├── run │ │ └── static │ │ │ ├── connect.js │ │ │ ├── node.js │ │ │ └── sinatra.thin.ru │ ├── docs │ │ ├── api.html │ │ ├── bodyDecoder.1 │ │ ├── bodyDecoder.html │ │ ├── bodyDecoder.md │ │ ├── compiler.1 │ │ ├── compiler.html │ │ ├── compiler.md │ │ ├── conditionalGet.1 │ │ ├── conditionalGet.html │ │ ├── conditionalGet.md │ │ ├── cookieDecoder.1 │ │ ├── cookieDecoder.html │ │ ├── cookieDecoder.md │ │ ├── errorHandler.1 │ │ ├── errorHandler.html │ │ ├── errorHandler.md │ │ ├── format.1 │ │ ├── format.html │ │ ├── format.md │ │ ├── index.1 │ │ ├── index.html │ │ ├── index.md │ │ ├── jsonrpc.1 │ │ ├── jsonrpc.html │ │ ├── jsonrpc.md │ │ ├── layout │ │ │ ├── api.foot.html │ │ │ └── api.head.html │ │ ├── lint.1 │ │ ├── lint.html │ │ ├── lint.md │ │ ├── logger.1 │ │ ├── logger.html │ │ ├── logger.md │ │ ├── methodOverride.1 │ │ ├── methodOverride.html │ │ ├── methodOverride.md │ │ ├── router.1 │ │ ├── router.html │ │ ├── router.md │ │ ├── session.1 │ │ ├── session.html │ │ ├── session.md │ │ ├── staticProvider.1 │ │ ├── staticProvider.html │ │ └── staticProvider.md │ ├── examples │ │ ├── embedding │ │ │ ├── app.js │ │ │ └── server.js │ │ ├── error │ │ │ └── app.js │ │ ├── hello-world │ │ │ └── app.js │ │ ├── jsonrpc │ │ │ └── app.js │ │ ├── less │ │ │ ├── app.js │ │ │ └── public │ │ │ │ ├── index.html │ │ │ │ └── style.less │ │ ├── lint │ │ │ └── app.js │ │ ├── multitouch │ │ │ ├── app.js │ │ │ └── public │ │ │ │ ├── client.js │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── raphael.js │ │ │ │ └── style.css │ │ ├── router │ │ │ └── app.js │ │ ├── sass │ │ │ ├── app.js │ │ │ └── public │ │ │ │ ├── index.html │ │ │ │ └── style.sass │ │ ├── session │ │ │ └── app.js │ │ ├── stack-middleware │ │ │ ├── app.js │ │ │ ├── hello.js │ │ │ └── world.js │ │ ├── static │ │ │ ├── app.js │ │ │ └── public │ │ │ │ └── style.css │ │ ├── url-rewrite │ │ │ └── app.js │ │ └── vhost │ │ │ └── app.js │ ├── install.sh │ ├── lib │ │ └── connect │ │ │ ├── index.js │ │ │ ├── middleware │ │ │ ├── bodyDecoder.js │ │ │ ├── cache.js │ │ │ ├── cacheManifest.js │ │ │ ├── compiler.js │ │ │ ├── conditionalGet.js │ │ │ ├── cookieDecoder.js │ │ │ ├── errorHandler.js │ │ │ ├── favicon.js │ │ │ ├── format.js │ │ │ ├── gzip-compress.js │ │ │ ├── gzip-proc.js │ │ │ ├── gzip.js │ │ │ ├── jsonrpc.js │ │ │ ├── lint.js │ │ │ ├── logger.js │ │ │ ├── methodOverride.js │ │ │ ├── pubsub.js │ │ │ ├── repl.js │ │ │ ├── router.js │ │ │ ├── session.js │ │ │ ├── session │ │ │ │ ├── memory.js │ │ │ │ ├── session.js │ │ │ │ └── store.js │ │ │ ├── staticProvider.js │ │ │ └── vhost.js │ │ │ ├── public │ │ │ ├── error.html │ │ │ ├── favicon.ico │ │ │ └── style.css │ │ │ ├── response.js │ │ │ └── utils.js │ ├── package.json │ ├── support │ │ └── highlight.js │ └── test │ │ ├── bodyDecoder.test.js │ │ ├── compiler.test.js │ │ ├── connect.test.js │ │ ├── cookieDecoder.test.js │ │ ├── errorHandler.test.js │ │ ├── favicon.test.js │ │ ├── filters │ │ └── uppercase.js │ │ ├── fixtures │ │ ├── foo.bar.baz.sass │ │ ├── index.html │ │ ├── some text.txt │ │ ├── style.less │ │ ├── style.sass │ │ └── user.json │ │ ├── format.test.js │ │ ├── gzip.test.js │ │ ├── helpers │ │ ├── http.js │ │ └── index.js │ │ ├── jsonrpc.test.js │ │ ├── logger.test.js │ │ ├── methodOverride.test.js │ │ ├── providers │ │ └── echo.js │ │ ├── router.test.js │ │ ├── session.test.js │ │ ├── static.test.js │ │ ├── utils.test.js │ │ └── vhost.test.js ├── express │ ├── .gitignore │ ├── .gitmodules │ ├── History.md │ ├── Makefile │ ├── Readme.md │ ├── bin │ │ └── express │ ├── docs │ │ ├── api.html │ │ ├── contrib.1 │ │ ├── contrib.html │ │ ├── contrib.md │ │ ├── executable.1 │ │ ├── executable.html │ │ ├── executable.md │ │ ├── guide.1 │ │ ├── guide.html │ │ ├── guide.md │ │ ├── images │ │ │ ├── bg.jpg │ │ │ ├── bg.tile.jpg │ │ │ ├── logo.png │ │ │ └── top.png │ │ ├── index.1 │ │ ├── index.html │ │ ├── index.md │ │ ├── layout │ │ │ ├── foot.html │ │ │ └── head.html │ │ ├── migrate.1 │ │ ├── migrate.html │ │ └── migrate.md │ ├── examples │ │ ├── blog │ │ │ ├── app.js │ │ │ ├── blog │ │ │ │ ├── index.js │ │ │ │ ├── posts.json │ │ │ │ └── views │ │ │ │ │ ├── index.ejs │ │ │ │ │ ├── layout.ejs │ │ │ │ │ ├── partials │ │ │ │ │ └── post.ejs │ │ │ │ │ └── post.ejs │ │ │ ├── contact.js │ │ │ └── main.js │ │ ├── ejs │ │ │ ├── app.js │ │ │ └── views │ │ │ │ ├── layout.ejs │ │ │ │ ├── partials │ │ │ │ └── user.ejs │ │ │ │ └── users.ejs │ │ ├── error │ │ │ └── app.js │ │ ├── flash │ │ │ ├── app.js │ │ │ └── views │ │ │ │ ├── index.ejs │ │ │ │ ├── layout.ejs │ │ │ │ └── partials │ │ │ │ └── messages.ejs │ │ ├── form │ │ │ └── app.js │ │ ├── format │ │ │ └── app.js │ │ ├── github │ │ │ ├── app.js │ │ │ ├── public │ │ │ │ └── style.css │ │ │ └── views │ │ │ │ ├── index.jade │ │ │ │ ├── layout.jade │ │ │ │ └── partials │ │ │ │ └── repo.jade │ │ ├── helloworld │ │ │ └── app.js │ │ ├── jade │ │ │ ├── app.js │ │ │ ├── public │ │ │ │ └── stylesheets │ │ │ │ │ ├── style.css │ │ │ │ │ └── style.sass │ │ │ └── views │ │ │ │ ├── layout.jade │ │ │ │ ├── partials │ │ │ │ └── user.jade │ │ │ │ └── users.jade │ │ ├── multipart │ │ │ └── app.js │ │ ├── pages │ │ │ ├── app.js │ │ │ └── views │ │ │ │ ├── 404.jade │ │ │ │ ├── 500.jade │ │ │ │ ├── index.jade │ │ │ │ └── layout.jade │ │ ├── resource │ │ │ └── app.js │ │ └── session │ │ │ └── app.js │ ├── index.js │ ├── install.sh │ ├── lib │ │ ├── express │ │ │ ├── index.js │ │ │ ├── request.js │ │ │ ├── response.js │ │ │ ├── server.js │ │ │ ├── utils.js │ │ │ └── view.js │ │ └── support │ │ │ ├── class │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── benchmark.js │ │ │ ├── lib │ │ │ │ └── class.js │ │ │ ├── seed.yml │ │ │ └── spec │ │ │ │ ├── lib │ │ │ │ ├── images │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── hr.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── sprites.bg.png │ │ │ │ │ ├── sprites.png │ │ │ │ │ └── vr.png │ │ │ │ ├── jspec.css │ │ │ │ ├── jspec.growl.js │ │ │ │ ├── jspec.jquery.js │ │ │ │ ├── jspec.js │ │ │ │ ├── jspec.shell.js │ │ │ │ ├── jspec.timers.js │ │ │ │ └── jspec.xhr.js │ │ │ │ ├── node.js │ │ │ │ └── unit │ │ │ │ ├── spec.helper.js │ │ │ │ └── spec.js │ │ │ ├── ext │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── benchmarks │ │ │ │ ├── array.js │ │ │ │ ├── bm.js │ │ │ │ ├── date.js │ │ │ │ ├── object.js │ │ │ │ └── printf.js │ │ │ ├── examples │ │ │ │ └── simple.js │ │ │ ├── lib │ │ │ │ ├── ext.js │ │ │ │ └── ext │ │ │ │ │ ├── base64.js │ │ │ │ │ ├── core_ext.js │ │ │ │ │ ├── core_ext │ │ │ │ │ ├── array.js │ │ │ │ │ ├── array │ │ │ │ │ │ ├── collections.js │ │ │ │ │ │ ├── enumerable.js │ │ │ │ │ │ └── extensions.js │ │ │ │ │ ├── date.js │ │ │ │ │ ├── date │ │ │ │ │ │ ├── extensions.js │ │ │ │ │ │ └── parser.js │ │ │ │ │ ├── error.js │ │ │ │ │ ├── function.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── object.js │ │ │ │ │ ├── object │ │ │ │ │ │ └── extensions.js │ │ │ │ │ ├── regexp.js │ │ │ │ │ ├── string.js │ │ │ │ │ └── string │ │ │ │ │ │ ├── extensions.js │ │ │ │ │ │ └── inflections.js │ │ │ │ │ ├── md5.js │ │ │ │ │ └── printf.js │ │ │ ├── seed.yml │ │ │ └── spec │ │ │ │ ├── lib │ │ │ │ ├── images │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── hr.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── sprites.bg.png │ │ │ │ │ ├── sprites.png │ │ │ │ │ └── vr.png │ │ │ │ ├── jspec.css │ │ │ │ ├── jspec.growl.js │ │ │ │ ├── jspec.jquery.js │ │ │ │ ├── jspec.js │ │ │ │ ├── jspec.nodejs.js │ │ │ │ ├── jspec.shell.js │ │ │ │ ├── jspec.timers.js │ │ │ │ └── jspec.xhr.js │ │ │ │ ├── node.js │ │ │ │ └── unit │ │ │ │ ├── base64.spec.js │ │ │ │ ├── core_ext │ │ │ │ ├── array │ │ │ │ │ ├── collections.spec.js │ │ │ │ │ ├── enumerable.spec.js │ │ │ │ │ └── extensions.spec.js │ │ │ │ ├── date │ │ │ │ │ ├── extensions.spec.js │ │ │ │ │ └── parser.spec.js │ │ │ │ ├── error.spec.js │ │ │ │ ├── function.spec.js │ │ │ │ ├── number.spec.js │ │ │ │ ├── object │ │ │ │ │ └── extensions.spec.js │ │ │ │ ├── regexp.spec.js │ │ │ │ └── string │ │ │ │ │ ├── extensions.spec.js │ │ │ │ │ └── inflections.spec.js │ │ │ │ ├── md5.spec.js │ │ │ │ └── printf.spec.js │ │ │ ├── haml │ │ │ ├── .gitmodules │ │ │ ├── .ignore │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── benchmarks │ │ │ │ ├── page.haml │ │ │ │ └── run.js │ │ │ ├── examples │ │ │ │ ├── example.js │ │ │ │ └── page.haml │ │ │ ├── lib │ │ │ │ └── haml.js │ │ │ ├── package.json │ │ │ ├── seed.yml │ │ │ └── spec │ │ │ │ ├── fixtures │ │ │ │ ├── class.haml │ │ │ │ ├── class.html │ │ │ │ ├── classes.haml │ │ │ │ ├── classes.html │ │ │ │ ├── code.each.haml │ │ │ │ ├── code.each.html │ │ │ │ ├── code.each.index.haml │ │ │ │ ├── code.each.index.html │ │ │ │ ├── code.each.non-enumerable.haml │ │ │ │ ├── code.each.non-enumerable.html │ │ │ │ ├── code.escape.haml │ │ │ │ ├── code.escape.html │ │ │ │ ├── code.haml │ │ │ │ ├── code.html │ │ │ │ ├── code.if.haml │ │ │ │ ├── code.if.html │ │ │ │ ├── code.nested.haml │ │ │ │ ├── code.nested.html │ │ │ │ ├── comment.block.conditional.haml │ │ │ │ ├── comment.block.conditional.html │ │ │ │ ├── comment.block.haml │ │ │ │ ├── comment.block.html │ │ │ │ ├── comment.haml │ │ │ │ ├── comment.html │ │ │ │ ├── comment.tag.haml │ │ │ │ ├── comment.tag.html │ │ │ │ ├── comment.text.complex.haml │ │ │ │ ├── comment.text.complex.html │ │ │ │ ├── comment.text.haml │ │ │ │ ├── comment.text.html │ │ │ │ ├── context.haml │ │ │ │ ├── context.html │ │ │ │ ├── cr.haml │ │ │ │ ├── cr.html │ │ │ │ ├── crlf.haml │ │ │ │ ├── crlf.html │ │ │ │ ├── doctype.haml │ │ │ │ ├── doctype.html │ │ │ │ ├── doctype.xml.case.haml │ │ │ │ ├── doctype.xml.case.html │ │ │ │ ├── doctype.xml.haml │ │ │ │ ├── doctype.xml.html │ │ │ │ ├── error.haml │ │ │ │ ├── escape.haml │ │ │ │ ├── escape.html │ │ │ │ ├── feed.haml │ │ │ │ ├── feed.xml │ │ │ │ ├── filter.cdata.haml │ │ │ │ ├── filter.cdata.html │ │ │ │ ├── filter.cdata.whitespace.haml │ │ │ │ ├── filter.cdata.whitespace.html │ │ │ │ ├── filter.javascript.haml │ │ │ │ ├── filter.javascript.html │ │ │ │ ├── filter.plain.haml │ │ │ │ ├── filter.plain.html │ │ │ │ ├── html.haml │ │ │ │ ├── html.html │ │ │ │ ├── id.haml │ │ │ │ ├── id.html │ │ │ │ ├── issue.#10.haml │ │ │ │ ├── issue.#10.html │ │ │ │ ├── issue.#8.haml │ │ │ │ ├── issue.#8.html │ │ │ │ ├── literals.haml │ │ │ │ ├── literals.html │ │ │ │ ├── namespace.haml │ │ │ │ ├── namespace.tag.haml │ │ │ │ ├── namespace.tag.html │ │ │ │ ├── namespace.xml │ │ │ │ ├── nesting.complex.haml │ │ │ │ ├── nesting.complex.html │ │ │ │ ├── nesting.simple.haml │ │ │ │ ├── nesting.simple.html │ │ │ │ ├── newlines.haml │ │ │ │ ├── newlines.html │ │ │ │ ├── tag.attrs.bools.haml │ │ │ │ ├── tag.attrs.bools.html │ │ │ │ ├── tag.attrs.escape.haml │ │ │ │ ├── tag.attrs.escape.html │ │ │ │ ├── tag.attrs.haml │ │ │ │ ├── tag.attrs.html │ │ │ │ ├── tag.class.haml │ │ │ │ ├── tag.class.html │ │ │ │ ├── tag.classes.haml │ │ │ │ ├── tag.classes.html │ │ │ │ ├── tag.code.haml │ │ │ │ ├── tag.code.html │ │ │ │ ├── tag.code.no-escape.haml │ │ │ │ ├── tag.code.no-escape.html │ │ │ │ ├── tag.complex.haml │ │ │ │ ├── tag.complex.html │ │ │ │ ├── tag.empty.haml │ │ │ │ ├── tag.empty.html │ │ │ │ ├── tag.escape.haml │ │ │ │ ├── tag.escape.html │ │ │ │ ├── tag.self-close.haml │ │ │ │ ├── tag.self-close.html │ │ │ │ ├── tag.simple.haml │ │ │ │ ├── tag.simple.html │ │ │ │ ├── tag.text.block.complex.haml │ │ │ │ ├── tag.text.block.complex.html │ │ │ │ ├── tag.text.block.haml │ │ │ │ ├── tag.text.block.html │ │ │ │ ├── tag.text.haml │ │ │ │ ├── tag.text.html │ │ │ │ ├── trailing-indent.haml │ │ │ │ └── trailing-indent.html │ │ │ │ ├── lib │ │ │ │ ├── images │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── hr.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── sprites.bg.png │ │ │ │ │ ├── sprites.png │ │ │ │ │ └── vr.png │ │ │ │ ├── jspec.css │ │ │ │ ├── jspec.growl.js │ │ │ │ ├── jspec.jquery.js │ │ │ │ ├── jspec.js │ │ │ │ ├── jspec.nodejs.js │ │ │ │ ├── jspec.shell.js │ │ │ │ ├── jspec.timers.js │ │ │ │ └── jspec.xhr.js │ │ │ │ ├── node.js │ │ │ │ └── unit │ │ │ │ ├── spec.helper.js │ │ │ │ └── spec.js │ │ │ ├── multipart │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── multipart.js │ │ │ │ ├── old.js │ │ │ │ ├── parse.js │ │ │ │ ├── utils.js │ │ │ │ └── write.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── fixture.js │ │ │ │ ├── parse.js │ │ │ │ └── writer.js │ │ │ └── sass │ │ │ ├── .gitignore │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ └── sass.js │ │ │ ├── package.json │ │ │ ├── seed.yml │ │ │ └── spec │ │ │ ├── fixtures │ │ │ ├── collect.sass │ │ │ ├── comment.css │ │ │ ├── comment.sass │ │ │ ├── continuation.css │ │ │ ├── continuation.sass │ │ │ ├── literal.css │ │ │ ├── literal.sass │ │ │ ├── mixin.css │ │ │ ├── mixin.sass │ │ │ ├── mixin.undefined.sass │ │ │ ├── properties.css │ │ │ ├── properties.expand.css │ │ │ ├── properties.expand.sass │ │ │ ├── properties.invalid.sass │ │ │ ├── properties.nested.css │ │ │ ├── properties.nested.invalid.sass │ │ │ ├── properties.nested.sass │ │ │ ├── properties.sass │ │ │ ├── selectors.css │ │ │ ├── selectors.sass │ │ │ ├── variables.alternate.css │ │ │ ├── variables.alternate.sass │ │ │ ├── variables.css │ │ │ ├── variables.regular.css │ │ │ ├── variables.regular.sass │ │ │ └── variables.sass │ │ │ ├── lib │ │ │ ├── images │ │ │ │ ├── bg.png │ │ │ │ ├── hr.png │ │ │ │ ├── loading.gif │ │ │ │ ├── sprites.bg.png │ │ │ │ ├── sprites.png │ │ │ │ └── vr.png │ │ │ ├── jspec.css │ │ │ ├── jspec.growl.js │ │ │ ├── jspec.jquery.js │ │ │ ├── jspec.js │ │ │ ├── jspec.nodejs.js │ │ │ ├── jspec.shell.js │ │ │ ├── jspec.timers.js │ │ │ └── jspec.xhr.js │ │ │ ├── node.js │ │ │ └── spec.core.js │ ├── package.json │ ├── support │ │ ├── jade │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── CNAME │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── api.html │ │ │ ├── benchmark.js │ │ │ ├── bin │ │ │ │ └── jade │ │ │ ├── examples │ │ │ │ ├── interpolation.jade │ │ │ │ ├── iteration.jade │ │ │ │ ├── layout.jade │ │ │ │ ├── markdown.jade │ │ │ │ ├── run.js │ │ │ │ ├── users.jade │ │ │ │ └── whitespace.jade │ │ │ ├── lib │ │ │ │ └── jade.js │ │ │ ├── package.json │ │ │ ├── support │ │ │ │ └── markdown │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.markdown │ │ │ │ │ ├── lib │ │ │ │ │ └── markdown.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── seed.yml │ │ │ │ │ └── test │ │ │ │ │ ├── features.t.js │ │ │ │ │ ├── features │ │ │ │ │ ├── blockquotes │ │ │ │ │ │ ├── contains_code.json │ │ │ │ │ │ ├── contains_code.text │ │ │ │ │ │ ├── lazy_wrapping.json │ │ │ │ │ │ ├── lazy_wrapping.text │ │ │ │ │ │ ├── leading_paras.json │ │ │ │ │ │ ├── leading_paras.text │ │ │ │ │ │ ├── nested.json │ │ │ │ │ │ ├── nested.text │ │ │ │ │ │ ├── simple.json │ │ │ │ │ │ ├── simple.text │ │ │ │ │ │ ├── spaceless.json │ │ │ │ │ │ └── spaceless.text │ │ │ │ │ ├── code │ │ │ │ │ │ ├── blank_lines.json │ │ │ │ │ │ ├── blank_lines.text │ │ │ │ │ │ ├── block.json │ │ │ │ │ │ ├── block.text │ │ │ │ │ │ ├── embedded_backtick.json │ │ │ │ │ │ ├── embedded_backtick.text │ │ │ │ │ │ ├── horizontal_rules.json │ │ │ │ │ │ ├── horizontal_rules.text │ │ │ │ │ │ ├── inline.json │ │ │ │ │ │ ├── inline.text │ │ │ │ │ │ ├── inline_multiline.json │ │ │ │ │ │ ├── inline_multiline.text │ │ │ │ │ │ ├── trailing_para.json │ │ │ │ │ │ └── trailing_para.text │ │ │ │ │ ├── definition_lists │ │ │ │ │ │ ├── inline.json │ │ │ │ │ │ ├── inline.text │ │ │ │ │ │ ├── long.json │ │ │ │ │ │ ├── long.text │ │ │ │ │ │ ├── multiple_definitions.json │ │ │ │ │ │ ├── multiple_definitions.text │ │ │ │ │ │ ├── multiple_terms.json │ │ │ │ │ │ ├── multiple_terms.text │ │ │ │ │ │ ├── tight.json │ │ │ │ │ │ └── tight.text │ │ │ │ │ ├── emphasis │ │ │ │ │ │ ├── multiple_lines.json │ │ │ │ │ │ ├── multiple_lines.text │ │ │ │ │ │ ├── nested.json │ │ │ │ │ │ ├── nested.text │ │ │ │ │ │ ├── simple.json │ │ │ │ │ │ └── simple.text │ │ │ │ │ ├── headers │ │ │ │ │ │ ├── atx.json │ │ │ │ │ │ ├── atx.text │ │ │ │ │ │ ├── atx_closing_hashes.json │ │ │ │ │ │ ├── atx_closing_hashes.text │ │ │ │ │ │ ├── setext.json │ │ │ │ │ │ ├── setext.text │ │ │ │ │ │ ├── trailing_paras.json │ │ │ │ │ │ └── trailing_paras.text │ │ │ │ │ ├── horizontal_rules │ │ │ │ │ │ ├── abutting_blocks.json │ │ │ │ │ │ ├── abutting_blocks.text │ │ │ │ │ │ ├── dashes.json │ │ │ │ │ │ ├── dashes.text │ │ │ │ │ │ ├── leading_spaces.json │ │ │ │ │ │ ├── leading_spaces.text │ │ │ │ │ │ ├── long.json │ │ │ │ │ │ ├── long.text │ │ │ │ │ │ ├── long_loose.json │ │ │ │ │ │ ├── long_loose.text │ │ │ │ │ │ ├── loose_dashes.json │ │ │ │ │ │ ├── loose_dashes.text │ │ │ │ │ │ ├── loose_stars.json │ │ │ │ │ │ ├── loose_stars.text │ │ │ │ │ │ ├── loose_underscores.json │ │ │ │ │ │ ├── loose_underscores.text │ │ │ │ │ │ ├── stars.json │ │ │ │ │ │ ├── stars.text │ │ │ │ │ │ ├── underscores.json │ │ │ │ │ │ └── underscores.text │ │ │ │ │ ├── images │ │ │ │ │ │ ├── basic.json │ │ │ │ │ │ ├── basic.text │ │ │ │ │ │ ├── crotcheted_url.json │ │ │ │ │ │ ├── crotcheted_url.text │ │ │ │ │ │ ├── crotcheted_url_with_title.json │ │ │ │ │ │ ├── crotcheted_url_with_title.text │ │ │ │ │ │ ├── empty.json │ │ │ │ │ │ ├── empty.text │ │ │ │ │ │ ├── spaces_round_title.json │ │ │ │ │ │ ├── spaces_round_title.text │ │ │ │ │ │ ├── title.json │ │ │ │ │ │ └── title.text │ │ │ │ │ ├── linebreaks │ │ │ │ │ │ ├── simple.json │ │ │ │ │ │ └── simple.text │ │ │ │ │ ├── links │ │ │ │ │ │ ├── autolink_email.json │ │ │ │ │ │ ├── autolink_email.text │ │ │ │ │ │ ├── autolink_in_code.json │ │ │ │ │ │ ├── autolink_in_code.text │ │ │ │ │ │ ├── autolink_url.json │ │ │ │ │ │ ├── autolink_url.text │ │ │ │ │ │ ├── case_insensitive.json │ │ │ │ │ │ ├── case_insensitive.text │ │ │ │ │ │ ├── implicit.json │ │ │ │ │ │ ├── implicit.text │ │ │ │ │ │ ├── inline.json │ │ │ │ │ │ ├── inline.text │ │ │ │ │ │ ├── inline_with_newline.json │ │ │ │ │ │ ├── inline_with_newline.text │ │ │ │ │ │ ├── inline_with_title.json │ │ │ │ │ │ ├── inline_with_title.text │ │ │ │ │ │ ├── missing_references.json │ │ │ │ │ │ ├── missing_references.text │ │ │ │ │ │ ├── parens_escaped_inline.json │ │ │ │ │ │ ├── parens_escaped_inline.text │ │ │ │ │ │ ├── parens_inline.json │ │ │ │ │ │ ├── parens_inline.text │ │ │ │ │ │ ├── parens_reference.json │ │ │ │ │ │ ├── parens_reference.text │ │ │ │ │ │ ├── ref_reuse.json │ │ │ │ │ │ ├── ref_reuse.text │ │ │ │ │ │ ├── reference.json │ │ │ │ │ │ ├── reference.text │ │ │ │ │ │ ├── reference_with_space.json │ │ │ │ │ │ └── reference_with_space.text │ │ │ │ │ ├── lists │ │ │ │ │ │ ├── bullet_types.json │ │ │ │ │ │ ├── bullet_types.text │ │ │ │ │ │ ├── hr_abutting.json │ │ │ │ │ │ ├── hr_abutting.text │ │ │ │ │ │ ├── hr_inside.json │ │ │ │ │ │ ├── hr_inside.text │ │ │ │ │ │ ├── lazy_wrapping.json │ │ │ │ │ │ ├── lazy_wrapping.text │ │ │ │ │ │ ├── leading_whitespace.json │ │ │ │ │ │ ├── leading_whitespace.text │ │ │ │ │ │ ├── loose.json │ │ │ │ │ │ ├── loose.text │ │ │ │ │ │ ├── loose_with_inline.json │ │ │ │ │ │ ├── loose_with_inline.text │ │ │ │ │ │ ├── multiline_inline.json │ │ │ │ │ │ ├── multiline_inline.text │ │ │ │ │ │ ├── nested.json │ │ │ │ │ │ ├── nested.text │ │ │ │ │ │ ├── numeric.json │ │ │ │ │ │ ├── numeric.text │ │ │ │ │ │ ├── tight.json │ │ │ │ │ │ └── tight.text │ │ │ │ │ └── meta │ │ │ │ │ │ ├── attribute.json │ │ │ │ │ │ ├── attribute.text │ │ │ │ │ │ ├── class.json │ │ │ │ │ │ ├── class.text │ │ │ │ │ │ ├── code.json │ │ │ │ │ │ ├── code.text │ │ │ │ │ │ ├── document.json │ │ │ │ │ │ ├── document.text │ │ │ │ │ │ ├── id.json │ │ │ │ │ │ ├── id.text │ │ │ │ │ │ ├── inline.json │ │ │ │ │ │ ├── inline.text │ │ │ │ │ │ ├── inner_whitespace.json │ │ │ │ │ │ ├── inner_whitespace.text │ │ │ │ │ │ ├── leading_whitespace.json │ │ │ │ │ │ ├── leading_whitespace.text │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ ├── list.text │ │ │ │ │ │ ├── multiple_classes.json │ │ │ │ │ │ ├── multiple_classes.text │ │ │ │ │ │ ├── quoted.json │ │ │ │ │ │ └── quoted.text │ │ │ │ │ ├── fixtures │ │ │ │ │ ├── Markdown-from-MDTest1.1.mdtest │ │ │ │ │ │ ├── Amps_and_angle_encoding.json │ │ │ │ │ │ ├── Amps_and_angle_encoding.text │ │ │ │ │ │ ├── Amps_and_angle_encoding.xhtml │ │ │ │ │ │ ├── Auto_links.json │ │ │ │ │ │ ├── Auto_links.text │ │ │ │ │ │ ├── Auto_links.xhtml │ │ │ │ │ │ ├── Backslash_escapes.json │ │ │ │ │ │ ├── Backslash_escapes.text │ │ │ │ │ │ ├── Backslash_escapes.xhtml │ │ │ │ │ │ ├── Blockquotes_with_code_blocks.json │ │ │ │ │ │ ├── Blockquotes_with_code_blocks.text │ │ │ │ │ │ ├── Blockquotes_with_code_blocks.xhtml │ │ │ │ │ │ ├── Code_Blocks.json │ │ │ │ │ │ ├── Code_Blocks.text │ │ │ │ │ │ ├── Code_Blocks.xhtml │ │ │ │ │ │ ├── Code_Spans.json │ │ │ │ │ │ ├── Code_Spans.text │ │ │ │ │ │ ├── Code_Spans.xhtml │ │ │ │ │ │ ├── Hard-wrapped_paragraphs_with_list-like_lines.json │ │ │ │ │ │ ├── Hard-wrapped_paragraphs_with_list-like_lines.text │ │ │ │ │ │ ├── Hard-wrapped_paragraphs_with_list-like_lines.xhtml │ │ │ │ │ │ ├── Horizontal_rules.json │ │ │ │ │ │ ├── Horizontal_rules.text │ │ │ │ │ │ ├── Horizontal_rules.xhtml │ │ │ │ │ │ ├── Images.json │ │ │ │ │ │ ├── Images.text │ │ │ │ │ │ ├── Images.xhtml │ │ │ │ │ │ ├── Inline_HTML_(Advanced).json │ │ │ │ │ │ ├── Inline_HTML_(Advanced).text │ │ │ │ │ │ ├── Inline_HTML_(Advanced).xhtml │ │ │ │ │ │ ├── Inline_HTML_(Simple).html │ │ │ │ │ │ ├── Inline_HTML_(Simple).json │ │ │ │ │ │ ├── Inline_HTML_(Simple).text │ │ │ │ │ │ ├── Inline_HTML_comments.html │ │ │ │ │ │ ├── Inline_HTML_comments.json │ │ │ │ │ │ ├── Inline_HTML_comments.text │ │ │ │ │ │ ├── Links_inline_style.json │ │ │ │ │ │ ├── Links_inline_style.text │ │ │ │ │ │ ├── Links_inline_style.xhtml │ │ │ │ │ │ ├── Links_reference_style.json │ │ │ │ │ │ ├── Links_reference_style.text │ │ │ │ │ │ ├── Links_reference_style.xhtml │ │ │ │ │ │ ├── Links_shortcut_references.json │ │ │ │ │ │ ├── Links_shortcut_references.text │ │ │ │ │ │ ├── Links_shortcut_references.xhtml │ │ │ │ │ │ ├── Literal_quotes_in_titles.json │ │ │ │ │ │ ├── Literal_quotes_in_titles.text │ │ │ │ │ │ ├── Literal_quotes_in_titles.xhtml │ │ │ │ │ │ ├── Markdown_Documentation_-_Basics.json │ │ │ │ │ │ ├── Markdown_Documentation_-_Basics.text │ │ │ │ │ │ ├── Markdown_Documentation_-_Basics.xhtml │ │ │ │ │ │ ├── Markdown_Documentation_-_Syntax.json │ │ │ │ │ │ ├── Markdown_Documentation_-_Syntax.text │ │ │ │ │ │ ├── Markdown_Documentation_-_Syntax.xhtml │ │ │ │ │ │ ├── Nested_blockquotes.json │ │ │ │ │ │ ├── Nested_blockquotes.text │ │ │ │ │ │ ├── Nested_blockquotes.xhtml │ │ │ │ │ │ ├── Ordered_and_unordered_lists.json │ │ │ │ │ │ ├── Ordered_and_unordered_lists.text │ │ │ │ │ │ ├── Ordered_and_unordered_lists.xhtml │ │ │ │ │ │ ├── Strong_and_em_together.json │ │ │ │ │ │ ├── Strong_and_em_together.text │ │ │ │ │ │ ├── Strong_and_em_together.xhtml │ │ │ │ │ │ ├── Tabs.json │ │ │ │ │ │ ├── Tabs.text │ │ │ │ │ │ ├── Tabs.xhtml │ │ │ │ │ │ ├── Tidyness.json │ │ │ │ │ │ ├── Tidyness.text │ │ │ │ │ │ └── Tidyness.xhtml │ │ │ │ │ ├── PHP_Markdown-from-MDTest1.1.mdtest │ │ │ │ │ │ ├── Backslash_escapes.json │ │ │ │ │ │ ├── Backslash_escapes.text │ │ │ │ │ │ ├── Backslash_escapes.xhtml │ │ │ │ │ │ ├── Code_Spans.json │ │ │ │ │ │ ├── Code_Spans.text │ │ │ │ │ │ ├── Code_Spans.xhtml │ │ │ │ │ │ ├── Code_block_in_a_list_item.json │ │ │ │ │ │ ├── Code_block_in_a_list_item.text │ │ │ │ │ │ ├── Code_block_in_a_list_item.xhtml │ │ │ │ │ │ ├── Email_auto_links.json │ │ │ │ │ │ ├── Email_auto_links.text │ │ │ │ │ │ ├── Email_auto_links.xhtml │ │ │ │ │ │ ├── Emphasis.json │ │ │ │ │ │ ├── Emphasis.text │ │ │ │ │ │ ├── Emphasis.xhtml │ │ │ │ │ │ ├── Headers.json │ │ │ │ │ │ ├── Headers.text │ │ │ │ │ │ ├── Headers.xhtml │ │ │ │ │ │ ├── Horizontal_Rules.json │ │ │ │ │ │ ├── Horizontal_Rules.text │ │ │ │ │ │ ├── Horizontal_Rules.xhtml │ │ │ │ │ │ ├── Inline_HTML_(Simple).html │ │ │ │ │ │ ├── Inline_HTML_(Simple).json │ │ │ │ │ │ ├── Inline_HTML_(Simple).text │ │ │ │ │ │ ├── Inline_HTML_(Span).json │ │ │ │ │ │ ├── Inline_HTML_(Span).text │ │ │ │ │ │ ├── Inline_HTML_(Span).xhtml │ │ │ │ │ │ ├── Inline_HTML_comments.html │ │ │ │ │ │ ├── Inline_HTML_comments.json │ │ │ │ │ │ ├── Inline_HTML_comments.text │ │ │ │ │ │ ├── Ins_and_del.json │ │ │ │ │ │ ├── Ins_and_del.text │ │ │ │ │ │ ├── Ins_and_del.xhtml │ │ │ │ │ │ ├── Links_inline_style.json │ │ │ │ │ │ ├── Links_inline_style.text │ │ │ │ │ │ ├── Links_inline_style.xhtml │ │ │ │ │ │ ├── MD5_Hashes.json │ │ │ │ │ │ ├── MD5_Hashes.text │ │ │ │ │ │ ├── MD5_Hashes.xhtml │ │ │ │ │ │ ├── Nesting.json │ │ │ │ │ │ ├── Nesting.text │ │ │ │ │ │ ├── Nesting.xhtml │ │ │ │ │ │ ├── PHP-Specific_Bugs.json │ │ │ │ │ │ ├── PHP-Specific_Bugs.text │ │ │ │ │ │ ├── PHP-Specific_Bugs.xhtml │ │ │ │ │ │ ├── Parens_in_URL.json │ │ │ │ │ │ ├── Parens_in_URL.text │ │ │ │ │ │ ├── Parens_in_URL.xhtml │ │ │ │ │ │ ├── Tight_blocks.json │ │ │ │ │ │ ├── Tight_blocks.text │ │ │ │ │ │ └── Tight_blocks.xhtml │ │ │ │ │ ├── README │ │ │ │ │ ├── Text-Markdown.mdtest │ │ │ │ │ │ ├── CoreDumps5.8.json │ │ │ │ │ │ ├── CoreDumps5.8.text │ │ │ │ │ │ ├── CoreDumps5.8.xhtml │ │ │ │ │ │ ├── Emphasis.json │ │ │ │ │ │ ├── Emphasis.text │ │ │ │ │ │ ├── Emphasis.xhtml │ │ │ │ │ │ ├── HTML-Comment-encoding.json │ │ │ │ │ │ ├── HTML-Comment-encoding.text │ │ │ │ │ │ ├── HTML-Comment-encoding.xhtml │ │ │ │ │ │ ├── HTML5-attributes.html │ │ │ │ │ │ ├── HTML5-attributes.json │ │ │ │ │ │ ├── HTML5-attributes.text │ │ │ │ │ │ ├── Links_brackets.json │ │ │ │ │ │ ├── Links_brackets.text │ │ │ │ │ │ ├── Links_brackets.xhtml │ │ │ │ │ │ ├── Links_multiline_bugs_1.html │ │ │ │ │ │ ├── Links_multiline_bugs_1.json │ │ │ │ │ │ ├── Links_multiline_bugs_1.text │ │ │ │ │ │ ├── Links_multiline_bugs_2.html │ │ │ │ │ │ ├── Links_multiline_bugs_2.json │ │ │ │ │ │ ├── Links_multiline_bugs_2.text │ │ │ │ │ │ ├── Links_reference_style.json │ │ │ │ │ │ ├── Links_reference_style.text │ │ │ │ │ │ ├── Links_reference_style.xhtml │ │ │ │ │ │ ├── Lists-multilevel-md5-edgecase.json │ │ │ │ │ │ ├── Lists-multilevel-md5-edgecase.text │ │ │ │ │ │ ├── Lists-multilevel-md5-edgecase.xhtml │ │ │ │ │ │ ├── PHP-ASP_tags.json │ │ │ │ │ │ ├── PHP-ASP_tags.text │ │ │ │ │ │ ├── PHP-ASP_tags.xhtml │ │ │ │ │ │ ├── Unicode.json │ │ │ │ │ │ ├── Unicode.text │ │ │ │ │ │ └── Unicode.xhtml │ │ │ │ │ ├── docs-maruku-unittest │ │ │ │ │ │ ├── abbreviations.html │ │ │ │ │ │ ├── abbreviations.json │ │ │ │ │ │ ├── abbreviations.text │ │ │ │ │ │ ├── alt.html │ │ │ │ │ │ ├── alt.json │ │ │ │ │ │ ├── alt.text │ │ │ │ │ │ ├── blank.html │ │ │ │ │ │ ├── blank.json │ │ │ │ │ │ ├── blank.text │ │ │ │ │ │ ├── blanks_in_code.html │ │ │ │ │ │ ├── blanks_in_code.json │ │ │ │ │ │ ├── blanks_in_code.text │ │ │ │ │ │ ├── bug_def.html │ │ │ │ │ │ ├── bug_def.json │ │ │ │ │ │ ├── bug_def.text │ │ │ │ │ │ ├── bug_table.html │ │ │ │ │ │ ├── bug_table.json │ │ │ │ │ │ ├── bug_table.text │ │ │ │ │ │ ├── code.html │ │ │ │ │ │ ├── code.json │ │ │ │ │ │ ├── code.text │ │ │ │ │ │ ├── code2.html │ │ │ │ │ │ ├── code2.json │ │ │ │ │ │ ├── code2.text │ │ │ │ │ │ ├── code3.html │ │ │ │ │ │ ├── code3.json │ │ │ │ │ │ ├── code3.text │ │ │ │ │ │ ├── convert.pl │ │ │ │ │ │ ├── data_loss.html │ │ │ │ │ │ ├── data_loss.json │ │ │ │ │ │ ├── data_loss.text │ │ │ │ │ │ ├── easy.html │ │ │ │ │ │ ├── easy.json │ │ │ │ │ │ ├── easy.text │ │ │ │ │ │ ├── email.html │ │ │ │ │ │ ├── email.json │ │ │ │ │ │ ├── email.text │ │ │ │ │ │ ├── entities.html │ │ │ │ │ │ ├── entities.json │ │ │ │ │ │ ├── entities.text │ │ │ │ │ │ ├── escaping.html │ │ │ │ │ │ ├── escaping.json │ │ │ │ │ │ ├── escaping.text │ │ │ │ │ │ ├── extra_dl.html │ │ │ │ │ │ ├── extra_dl.json │ │ │ │ │ │ ├── extra_dl.text │ │ │ │ │ │ ├── extra_header_id.html │ │ │ │ │ │ ├── extra_header_id.json │ │ │ │ │ │ ├── extra_header_id.text │ │ │ │ │ │ ├── extra_table1.html │ │ │ │ │ │ ├── extra_table1.json │ │ │ │ │ │ ├── extra_table1.text │ │ │ │ │ │ ├── footnotes.html │ │ │ │ │ │ ├── footnotes.json │ │ │ │ │ │ ├── footnotes.text │ │ │ │ │ │ ├── headers.html │ │ │ │ │ │ ├── headers.json │ │ │ │ │ │ ├── headers.text │ │ │ │ │ │ ├── hex_entities.html │ │ │ │ │ │ ├── hex_entities.json │ │ │ │ │ │ ├── hex_entities.text │ │ │ │ │ │ ├── hrule.html │ │ │ │ │ │ ├── hrule.json │ │ │ │ │ │ ├── hrule.text │ │ │ │ │ │ ├── html2.html │ │ │ │ │ │ ├── html2.json │ │ │ │ │ │ ├── html2.text │ │ │ │ │ │ ├── html3.html │ │ │ │ │ │ ├── html3.json │ │ │ │ │ │ ├── html3.text │ │ │ │ │ │ ├── html4.html │ │ │ │ │ │ ├── html4.json │ │ │ │ │ │ ├── html4.text │ │ │ │ │ │ ├── html5.html │ │ │ │ │ │ ├── html5.json │ │ │ │ │ │ ├── html5.text │ │ │ │ │ │ ├── ie.html │ │ │ │ │ │ ├── ie.json │ │ │ │ │ │ ├── ie.text │ │ │ │ │ │ ├── images.html │ │ │ │ │ │ ├── images.json │ │ │ │ │ │ ├── images.text │ │ │ │ │ │ ├── images2.html │ │ │ │ │ │ ├── images2.json │ │ │ │ │ │ ├── images2.text │ │ │ │ │ │ ├── inline_html.html │ │ │ │ │ │ ├── inline_html.json │ │ │ │ │ │ ├── inline_html.text │ │ │ │ │ │ ├── inline_html2.html │ │ │ │ │ │ ├── inline_html2.json │ │ │ │ │ │ ├── inline_html2.text │ │ │ │ │ │ ├── links.html │ │ │ │ │ │ ├── links.json │ │ │ │ │ │ ├── links.text │ │ │ │ │ │ ├── list1.html │ │ │ │ │ │ ├── list1.json │ │ │ │ │ │ ├── list1.text │ │ │ │ │ │ ├── list2.html │ │ │ │ │ │ ├── list2.json │ │ │ │ │ │ ├── list2.text │ │ │ │ │ │ ├── list3.html │ │ │ │ │ │ ├── list3.json │ │ │ │ │ │ ├── list3.text │ │ │ │ │ │ ├── list4.html │ │ │ │ │ │ ├── list4.json │ │ │ │ │ │ ├── list4.text │ │ │ │ │ │ ├── lists.html │ │ │ │ │ │ ├── lists.json │ │ │ │ │ │ ├── lists.text │ │ │ │ │ │ ├── lists11.html │ │ │ │ │ │ ├── lists11.json │ │ │ │ │ │ ├── lists11.text │ │ │ │ │ │ ├── lists6.html │ │ │ │ │ │ ├── lists6.json │ │ │ │ │ │ ├── lists6.text │ │ │ │ │ │ ├── lists7.html │ │ │ │ │ │ ├── lists7.json │ │ │ │ │ │ ├── lists7.text │ │ │ │ │ │ ├── lists7b.html │ │ │ │ │ │ ├── lists7b.json │ │ │ │ │ │ ├── lists7b.text │ │ │ │ │ │ ├── lists8.html │ │ │ │ │ │ ├── lists8.json │ │ │ │ │ │ ├── lists8.text │ │ │ │ │ │ ├── lists9.html │ │ │ │ │ │ ├── lists9.json │ │ │ │ │ │ ├── lists9.text │ │ │ │ │ │ ├── lists_after_paragraph.html │ │ │ │ │ │ ├── lists_after_paragraph.json │ │ │ │ │ │ ├── lists_after_paragraph.text │ │ │ │ │ │ ├── lists_ol.html │ │ │ │ │ │ ├── lists_ol.json │ │ │ │ │ │ ├── lists_ol.text │ │ │ │ │ │ ├── loss.html │ │ │ │ │ │ ├── loss.json │ │ │ │ │ │ ├── loss.text │ │ │ │ │ │ ├── misc_sw.html │ │ │ │ │ │ ├── misc_sw.json │ │ │ │ │ │ ├── misc_sw.text │ │ │ │ │ │ ├── olist.html │ │ │ │ │ │ ├── olist.json │ │ │ │ │ │ ├── olist.text │ │ │ │ │ │ ├── one.html │ │ │ │ │ │ ├── one.json │ │ │ │ │ │ ├── one.text │ │ │ │ │ │ ├── paragraph.html │ │ │ │ │ │ ├── paragraph.json │ │ │ │ │ │ ├── paragraph.text │ │ │ │ │ │ ├── paragraphs.html │ │ │ │ │ │ ├── paragraphs.json │ │ │ │ │ │ ├── paragraphs.text │ │ │ │ │ │ ├── smartypants.html │ │ │ │ │ │ ├── smartypants.json │ │ │ │ │ │ ├── smartypants.text │ │ │ │ │ │ ├── syntax_hl.html │ │ │ │ │ │ ├── syntax_hl.json │ │ │ │ │ │ ├── syntax_hl.text │ │ │ │ │ │ ├── table_attributes.html │ │ │ │ │ │ ├── table_attributes.json │ │ │ │ │ │ ├── table_attributes.text │ │ │ │ │ │ ├── test.html │ │ │ │ │ │ ├── test.json │ │ │ │ │ │ ├── test.text │ │ │ │ │ │ ├── wrapping.html │ │ │ │ │ │ ├── wrapping.json │ │ │ │ │ │ ├── wrapping.text │ │ │ │ │ │ ├── xml.html │ │ │ │ │ │ ├── xml.json │ │ │ │ │ │ ├── xml.text │ │ │ │ │ │ ├── xml2.html │ │ │ │ │ │ ├── xml2.json │ │ │ │ │ │ ├── xml2.text │ │ │ │ │ │ ├── xml3.html │ │ │ │ │ │ ├── xml3.json │ │ │ │ │ │ ├── xml3.text │ │ │ │ │ │ ├── xml_instruction.html │ │ │ │ │ │ ├── xml_instruction.json │ │ │ │ │ │ └── xml_instruction.text │ │ │ │ │ ├── docs-php-markdown-extra │ │ │ │ │ │ ├── Abbr.html │ │ │ │ │ │ ├── Abbr.json │ │ │ │ │ │ ├── Abbr.text │ │ │ │ │ │ ├── Definition_Lists.html │ │ │ │ │ │ ├── Definition_Lists.json │ │ │ │ │ │ ├── Definition_Lists.text │ │ │ │ │ │ ├── Emphasis.html │ │ │ │ │ │ ├── Emphasis.json │ │ │ │ │ │ ├── Emphasis.text │ │ │ │ │ │ ├── Footnotes.html │ │ │ │ │ │ ├── Footnotes.json │ │ │ │ │ │ ├── Footnotes.text │ │ │ │ │ │ ├── Inline_HTML_with_Markdown_content.html │ │ │ │ │ │ ├── Inline_HTML_with_Markdown_content.json │ │ │ │ │ │ ├── Inline_HTML_with_Markdown_content.text │ │ │ │ │ │ ├── Tables.html │ │ │ │ │ │ ├── Tables.json │ │ │ │ │ │ └── Tables.text │ │ │ │ │ ├── docs-php-markdown-todo │ │ │ │ │ │ ├── Email_auto_links.html │ │ │ │ │ │ ├── Email_auto_links.json │ │ │ │ │ │ ├── Email_auto_links.text │ │ │ │ │ │ ├── Emphasis.html │ │ │ │ │ │ ├── Emphasis.json │ │ │ │ │ │ ├── Emphasis.text │ │ │ │ │ │ ├── Inline_HTML_(Span).html │ │ │ │ │ │ ├── Inline_HTML_(Span).json │ │ │ │ │ │ ├── Inline_HTML_(Span).text │ │ │ │ │ │ ├── Ins_and_del.json │ │ │ │ │ │ ├── Ins_and_del.text │ │ │ │ │ │ ├── Ins_and_del.xhtml │ │ │ │ │ │ ├── Links_inline_style.html │ │ │ │ │ │ ├── Links_inline_style.json │ │ │ │ │ │ ├── Links_inline_style.text │ │ │ │ │ │ ├── Nesting.html │ │ │ │ │ │ ├── Nesting.json │ │ │ │ │ │ ├── Nesting.text │ │ │ │ │ │ ├── Parens_in_URL.html │ │ │ │ │ │ ├── Parens_in_URL.json │ │ │ │ │ │ └── Parens_in_URL.text │ │ │ │ │ ├── docs-php-markdown │ │ │ │ │ │ ├── Backslash_escapes.html │ │ │ │ │ │ ├── Backslash_escapes.json │ │ │ │ │ │ ├── Backslash_escapes.text │ │ │ │ │ │ ├── Code_Spans.html │ │ │ │ │ │ ├── Code_Spans.json │ │ │ │ │ │ ├── Code_Spans.text │ │ │ │ │ │ ├── Code_block_in_a_list_item.html │ │ │ │ │ │ ├── Code_block_in_a_list_item.json │ │ │ │ │ │ ├── Code_block_in_a_list_item.text │ │ │ │ │ │ ├── Headers.html │ │ │ │ │ │ ├── Headers.json │ │ │ │ │ │ ├── Headers.text │ │ │ │ │ │ ├── Images_(Untitled).html │ │ │ │ │ │ ├── Images_(Untitled).json │ │ │ │ │ │ ├── Images_(Untitled).text │ │ │ │ │ │ ├── Inline_HTML_(Simple).html │ │ │ │ │ │ ├── Inline_HTML_(Simple).json │ │ │ │ │ │ ├── Inline_HTML_(Simple).text │ │ │ │ │ │ ├── Inline_HTML_comments.html │ │ │ │ │ │ ├── Inline_HTML_comments.json │ │ │ │ │ │ ├── Inline_HTML_comments.text │ │ │ │ │ │ ├── PHP-Specific_Bugs.html │ │ │ │ │ │ ├── PHP-Specific_Bugs.json │ │ │ │ │ │ ├── PHP-Specific_Bugs.text │ │ │ │ │ │ ├── Tight_blocks.html │ │ │ │ │ │ ├── Tight_blocks.json │ │ │ │ │ │ └── Tight_blocks.text │ │ │ │ │ └── docs-pythonmarkdown2-tm-cases-pass │ │ │ │ │ │ ├── auto_link.html │ │ │ │ │ │ ├── auto_link.json │ │ │ │ │ │ ├── auto_link.text │ │ │ │ │ │ ├── auto_link_safe_mode.html │ │ │ │ │ │ ├── auto_link_safe_mode.json │ │ │ │ │ │ ├── auto_link_safe_mode.opts │ │ │ │ │ │ ├── auto_link_safe_mode.text │ │ │ │ │ │ ├── basic_safe_mode.html │ │ │ │ │ │ ├── basic_safe_mode.json │ │ │ │ │ │ ├── basic_safe_mode.opts │ │ │ │ │ │ ├── basic_safe_mode.text │ │ │ │ │ │ ├── basic_safe_mode_escape.html │ │ │ │ │ │ ├── basic_safe_mode_escape.json │ │ │ │ │ │ ├── basic_safe_mode_escape.opts │ │ │ │ │ │ ├── basic_safe_mode_escape.text │ │ │ │ │ │ ├── blockquote.html │ │ │ │ │ │ ├── blockquote.json │ │ │ │ │ │ ├── blockquote.text │ │ │ │ │ │ ├── blockquote_with_pre.html │ │ │ │ │ │ ├── blockquote_with_pre.json │ │ │ │ │ │ ├── blockquote_with_pre.text │ │ │ │ │ │ ├── code_block_with_tabs.html │ │ │ │ │ │ ├── code_block_with_tabs.json │ │ │ │ │ │ ├── code_block_with_tabs.text │ │ │ │ │ │ ├── code_safe_emphasis.html │ │ │ │ │ │ ├── code_safe_emphasis.json │ │ │ │ │ │ ├── code_safe_emphasis.opts │ │ │ │ │ │ ├── code_safe_emphasis.text │ │ │ │ │ │ ├── codeblock.html │ │ │ │ │ │ ├── codeblock.json │ │ │ │ │ │ ├── codeblock.text │ │ │ │ │ │ ├── codespans.html │ │ │ │ │ │ ├── codespans.json │ │ │ │ │ │ ├── codespans.text │ │ │ │ │ │ ├── codespans_safe_mode.html │ │ │ │ │ │ ├── codespans_safe_mode.json │ │ │ │ │ │ ├── codespans_safe_mode.opts │ │ │ │ │ │ ├── codespans_safe_mode.text │ │ │ │ │ │ ├── emacs_head_vars.html │ │ │ │ │ │ ├── emacs_head_vars.json │ │ │ │ │ │ ├── emacs_head_vars.text │ │ │ │ │ │ ├── emacs_tail_vars.html │ │ │ │ │ │ ├── emacs_tail_vars.json │ │ │ │ │ │ ├── emacs_tail_vars.text │ │ │ │ │ │ ├── emphasis.html │ │ │ │ │ │ ├── emphasis.json │ │ │ │ │ │ ├── emphasis.text │ │ │ │ │ │ ├── escapes.html │ │ │ │ │ │ ├── escapes.json │ │ │ │ │ │ ├── escapes.text │ │ │ │ │ │ ├── footnotes.html │ │ │ │ │ │ ├── footnotes.json │ │ │ │ │ │ ├── footnotes.opts │ │ │ │ │ │ ├── footnotes.text │ │ │ │ │ │ ├── footnotes_letters.html │ │ │ │ │ │ ├── footnotes_letters.json │ │ │ │ │ │ ├── footnotes_letters.opts │ │ │ │ │ │ ├── footnotes_letters.text │ │ │ │ │ │ ├── footnotes_markup.html │ │ │ │ │ │ ├── footnotes_markup.json │ │ │ │ │ │ ├── footnotes_markup.opts │ │ │ │ │ │ ├── footnotes_markup.text │ │ │ │ │ │ ├── footnotes_safe_mode_escape.html │ │ │ │ │ │ ├── footnotes_safe_mode_escape.json │ │ │ │ │ │ ├── footnotes_safe_mode_escape.opts │ │ │ │ │ │ ├── footnotes_safe_mode_escape.text │ │ │ │ │ │ ├── header.html │ │ │ │ │ │ ├── header.json │ │ │ │ │ │ ├── header.text │ │ │ │ │ │ ├── hr.html │ │ │ │ │ │ ├── hr.json │ │ │ │ │ │ ├── hr.text │ │ │ │ │ │ ├── img_in_link.html │ │ │ │ │ │ ├── img_in_link.json │ │ │ │ │ │ ├── img_in_link.text │ │ │ │ │ │ ├── inline_links.html │ │ │ │ │ │ ├── inline_links.json │ │ │ │ │ │ ├── inline_links.text │ │ │ │ │ │ ├── issue2_safe_mode_borks_markup.html │ │ │ │ │ │ ├── issue2_safe_mode_borks_markup.json │ │ │ │ │ │ ├── issue2_safe_mode_borks_markup.opts │ │ │ │ │ │ ├── issue2_safe_mode_borks_markup.text │ │ │ │ │ │ ├── link_defn_alt_title_delims.html │ │ │ │ │ │ ├── link_defn_alt_title_delims.json │ │ │ │ │ │ ├── link_defn_alt_title_delims.text │ │ │ │ │ │ ├── link_patterns.html │ │ │ │ │ │ ├── link_patterns.json │ │ │ │ │ │ ├── link_patterns.opts │ │ │ │ │ │ ├── link_patterns.text │ │ │ │ │ │ ├── link_patterns_double_hit.html │ │ │ │ │ │ ├── link_patterns_double_hit.json │ │ │ │ │ │ ├── link_patterns_double_hit.opts │ │ │ │ │ │ ├── link_patterns_double_hit.text │ │ │ │ │ │ ├── link_patterns_edge_cases.html │ │ │ │ │ │ ├── link_patterns_edge_cases.json │ │ │ │ │ │ ├── link_patterns_edge_cases.opts │ │ │ │ │ │ ├── link_patterns_edge_cases.text │ │ │ │ │ │ ├── lists.html │ │ │ │ │ │ ├── lists.json │ │ │ │ │ │ ├── lists.text │ │ │ │ │ │ ├── mismatched_footnotes.html │ │ │ │ │ │ ├── mismatched_footnotes.json │ │ │ │ │ │ ├── mismatched_footnotes.opts │ │ │ │ │ │ ├── mismatched_footnotes.text │ │ │ │ │ │ ├── missing_link_defn.html │ │ │ │ │ │ ├── missing_link_defn.json │ │ │ │ │ │ ├── missing_link_defn.text │ │ │ │ │ │ ├── nested_list.html │ │ │ │ │ │ ├── nested_list.json │ │ │ │ │ │ ├── nested_list.text │ │ │ │ │ │ ├── nested_list_safe_mode.html │ │ │ │ │ │ ├── nested_list_safe_mode.json │ │ │ │ │ │ ├── nested_list_safe_mode.opts │ │ │ │ │ │ ├── nested_list_safe_mode.text │ │ │ │ │ │ ├── parens_in_url_4.html │ │ │ │ │ │ ├── parens_in_url_4.json │ │ │ │ │ │ ├── parens_in_url_4.text │ │ │ │ │ │ ├── raw_html.html │ │ │ │ │ │ ├── raw_html.json │ │ │ │ │ │ ├── raw_html.text │ │ │ │ │ │ ├── ref_links.html │ │ │ │ │ │ ├── ref_links.json │ │ │ │ │ │ ├── ref_links.text │ │ │ │ │ │ ├── sublist-para.html │ │ │ │ │ │ ├── sublist-para.json │ │ │ │ │ │ ├── sublist-para.text │ │ │ │ │ │ ├── syntax_color.html │ │ │ │ │ │ ├── syntax_color.json │ │ │ │ │ │ ├── syntax_color.opts │ │ │ │ │ │ ├── syntax_color.text │ │ │ │ │ │ ├── tricky_anchors.html │ │ │ │ │ │ ├── tricky_anchors.json │ │ │ │ │ │ ├── tricky_anchors.text │ │ │ │ │ │ ├── underline_in_autolink.html │ │ │ │ │ │ ├── underline_in_autolink.json │ │ │ │ │ │ └── underline_in_autolink.text │ │ │ │ │ ├── interface.t.js │ │ │ │ │ └── regressions.t.js │ │ │ └── test │ │ │ │ ├── filters.test.js │ │ │ │ ├── fixtures │ │ │ │ ├── invalid.jade │ │ │ │ └── layout.jade │ │ │ │ └── jade.test.js │ │ └── toc.js │ └── test │ │ ├── express.test.js │ │ ├── fixtures │ │ ├── cool-layout.jade │ │ ├── dynamic-helpers.jade │ │ ├── foo.bar │ │ ├── hello.haml │ │ ├── hello.jade │ │ ├── index.jade │ │ ├── invalid.jade │ │ ├── items.jade │ │ ├── layout.jade │ │ ├── layouts │ │ │ └── foo.jade │ │ ├── movies.jade │ │ ├── partials │ │ │ ├── hello.ejs │ │ │ ├── item.jade │ │ │ ├── magic.jade │ │ │ ├── movie.jade │ │ │ ├── person.jade │ │ │ ├── user.jade │ │ │ └── video.jade │ │ ├── scope.jade │ │ ├── sub-templates │ │ │ └── item.jade │ │ ├── user.ejs │ │ ├── user.json │ │ └── video.ejs │ │ ├── request.test.js │ │ ├── response.test.js │ │ ├── utils.test.js │ │ └── view.test.js ├── hoptoad-notifier │ ├── README.markdown │ ├── lib │ │ └── hoptoad-notifier.js │ ├── package.json │ └── spec │ │ ├── fixtures │ │ └── notice.xml │ │ ├── lib │ │ ├── jspec.js │ │ ├── jspec.nodejs.js │ │ └── jspec.shell.js │ │ ├── node.js │ │ └── unit │ │ ├── spec.helper.js │ │ └── spec.js ├── node-mongodb-native │ ├── .gitignore │ ├── HISTORY │ ├── Makefile │ ├── README.rdoc │ ├── benchmark │ │ ├── grid_fs_write_benchmark.js │ │ └── streaming_benchmark.js │ ├── examples │ │ ├── admin.js │ │ ├── blog.js │ │ ├── capped.js │ │ ├── cursor.js │ │ ├── gridfs.js │ │ ├── index_test.js │ │ ├── info.js │ │ ├── queries.js │ │ ├── simple.js │ │ ├── strict.js │ │ ├── types.js │ │ └── url.js │ ├── external-libs │ │ └── bson │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── binary.cc │ │ │ ├── binary.h │ │ │ ├── bson.cc │ │ │ ├── bson.h │ │ │ ├── code.cc │ │ │ ├── code.h │ │ │ ├── dbref.cc │ │ │ ├── dbref.h │ │ │ ├── long.cc │ │ │ ├── long.h │ │ │ ├── objectid.cc │ │ │ ├── objectid.h │ │ │ ├── test_bson.js │ │ │ ├── test_full_bson.js │ │ │ └── wscript │ ├── integration │ │ ├── integration_tests.js │ │ ├── test_gs_weird_bug.png │ │ └── test_gs_working_field_read.pdf │ ├── lib │ │ └── mongodb │ │ │ ├── admin.js │ │ │ ├── bson │ │ │ ├── binary_parser.js │ │ │ └── bson.js │ │ │ ├── collection.js │ │ │ ├── commands │ │ │ ├── base_command.js │ │ │ ├── db_command.js │ │ │ ├── delete_command.js │ │ │ ├── get_more_command.js │ │ │ ├── insert_command.js │ │ │ ├── kill_cursor_command.js │ │ │ ├── query_command.js │ │ │ └── update_command.js │ │ │ ├── connection.js │ │ │ ├── crypto │ │ │ └── md5.js │ │ │ ├── cursor.js │ │ │ ├── db.js │ │ │ ├── goog │ │ │ └── math │ │ │ │ ├── integer.js │ │ │ │ └── long.js │ │ │ ├── gridfs │ │ │ ├── chunk.js │ │ │ └── gridstore.js │ │ │ ├── index.js │ │ │ └── responses │ │ │ └── mongo_reply.js │ ├── package.json │ └── spec │ │ ├── lib │ │ ├── images │ │ │ ├── bg.png │ │ │ ├── hr.png │ │ │ ├── loading.gif │ │ │ ├── sprites.bg.png │ │ │ ├── sprites.png │ │ │ └── vr.png │ │ ├── jspec.css │ │ ├── jspec.growl.js │ │ ├── jspec.jquery.js │ │ ├── jspec.js │ │ ├── jspec.shell.js │ │ ├── jspec.timers.js │ │ └── jspec.xhr.js │ │ ├── spec.bson.js │ │ ├── spec.commands.js │ │ ├── spec.node.js │ │ └── spec.objectid.js ├── nodeunit │ ├── LICENSE │ ├── README.md │ ├── img │ │ ├── example_fail.png │ │ └── example_pass.png │ ├── index.js │ ├── lib │ │ ├── nodeunit.js │ │ └── testrunner.js │ ├── test.js │ └── test │ │ ├── fixtures │ │ ├── dir │ │ │ ├── mock_module3.js │ │ │ └── mock_module4.js │ │ ├── mock_module1.js │ │ └── mock_module2.js │ │ ├── test-base.js │ │ ├── test-runfiles.js │ │ ├── test-runmodule.js │ │ └── test-runtest.js └── socket.io │ ├── .gitmodules │ ├── README.md │ ├── lib │ ├── socket.io.js │ ├── socket.io │ │ ├── client.js │ │ ├── listener.js │ │ ├── transports │ │ │ ├── flashsocket.js │ │ │ ├── htmlfile.js │ │ │ ├── websocket.js │ │ │ ├── xhr-multipart.js │ │ │ └── xhr-polling.js │ │ └── util │ │ │ ├── array.js │ │ │ ├── object.js │ │ │ └── options.js │ └── vendor │ │ └── js-oo │ │ ├── History.md │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── benchmarks │ │ └── benchmark.js │ │ ├── lib │ │ └── oo.js │ │ └── spec │ │ ├── server.rb │ │ ├── spec.core.js │ │ ├── spec.dom.html │ │ ├── spec.rhino.js │ │ └── spec.server.html │ └── test │ ├── chat.html │ └── server.js ├── models ├── http.js ├── models.coffee └── mongo.coffee ├── nodeko.coffee ├── public ├── favicon.ico ├── images │ ├── bird.png │ ├── blank.png │ ├── empty.png │ ├── filled.png │ ├── judges │ │ ├── Adeyemi_Ajao.jpg │ │ ├── Alex_Russell.jpg │ │ ├── Amit_Garg.jpg │ │ ├── Amrita_Thakur.jpg │ │ ├── Andrew_Hill.jpg │ │ ├── Andy_Brett.jpg │ │ ├── Angus_Logan.jpg │ │ ├── Atul_Varma.jpg │ │ ├── Aza_Raskin.jpg │ │ ├── Ben_Galbraith.jpg │ │ ├── Brendan_Eich.jpg │ │ ├── Chad_Dyer.jpg │ │ ├── Christopher_Williams.jpg │ │ ├── Conrad_Wai.jpg │ │ ├── Daniel_Odio.jpg │ │ ├── Danny_Coates.jpg │ │ ├── Dave_Baggeroer.jpg │ │ ├── Dave_Johnson.jpg │ │ ├── David_Goligorsky.jpg │ │ ├── David_Kaneda.jpg │ │ ├── Davis_W_Frank.jpg │ │ ├── Devon_Govett.jpg │ │ ├── Dion_Almaer.jpg │ │ ├── Dmitry_Dimov.jpg │ │ ├── Elad_Gil.jpg │ │ ├── Eliot_Horowitz.jpg │ │ ├── Elizabeth_Cha.jpg │ │ ├── Ethan_Anderson.jpg │ │ ├── Evan_Doll.jpg │ │ ├── Ge_Wang.jpg │ │ ├── Gerad_Suyderhoud.jpg │ │ ├── Guillermo_Rauch.jpg │ │ ├── Hwan_Joon_Choi.jpg │ │ ├── Isaac_Schlueter.jpg │ │ ├── Jim_Goetz.jpg │ │ ├── Joe_Hewitt.jpg │ │ ├── John_Resig.jpg │ │ ├── John_Woodell.jpg │ │ ├── Jolie_O_Dell.jpg │ │ ├── Kimber_Lockhart.jpg │ │ ├── Kyle_Cordes.jpg │ │ ├── Malte_Ubl.jpg │ │ ├── Marcel_Laverdet.jpg │ │ ├── Mary_Glide.jpg │ │ ├── Matt_Ranney.jpg │ │ ├── Matt_Soldo.jpg │ │ ├── Matthew_Eernisse.jpg │ │ ├── Maya_Powch.jpg │ │ ├── Michael_Mahemoff.jpg │ │ ├── Michael_Swaine.jpg │ │ ├── Micheil_Smith.jpg │ │ ├── Mikeal_Rogers.jpg │ │ ├── Mohammed_Abdoolcarim.jpg │ │ ├── Othman_Laraki.jpg │ │ ├── Peter_Fenton.jpg │ │ ├── Purin_Phanichphant.jpg │ │ ├── Ryan_Dahl.jpg │ │ ├── Ryan_Grove.jpg │ │ ├── Ryan_Spoon.jpg │ │ ├── Sara_Wood.jpg │ │ ├── Seth_Ladd.jpg │ │ ├── Steve_Gilmore.jpg │ │ ├── Teck_Chia.jpg │ │ ├── Timothy_Caswell.jpg │ │ ├── Tj_Holowaychuk.jpg │ │ ├── Tom_Nguyen.jpg │ │ └── Visnu_Pitiyanuvath.jpg │ ├── ko.png │ ├── nodeko.png │ ├── noise.png │ ├── prizes │ │ ├── gloves.png │ │ ├── ipad.jpeg │ │ ├── iphone.jpeg │ │ └── mongo.jpeg │ ├── spinner.gif │ ├── sponsors │ │ ├── braintree.png │ │ ├── couchdb.png │ │ ├── envato.png │ │ ├── github.png │ │ ├── heroku.png │ │ ├── joyent.png │ │ ├── jsconf.png │ │ ├── medium.png │ │ ├── mongodb.png │ │ ├── mongohq.png │ │ ├── npm.png │ │ ├── oasis_digital.png │ │ ├── palm.png │ │ ├── redis_to_go.png │ │ ├── sencha.png │ │ ├── smule.png │ │ ├── thoughtbot.png │ │ ├── upload_juicer.png │ │ └── yahoo.png │ └── voteko.png ├── javascripts │ ├── Math.uuid.js │ ├── application.coffee │ ├── application.js │ ├── jquery-1.4.2.min.js │ ├── jquery.ba-hashchange.min.js │ ├── jquery.scrollTo-min.js │ ├── json2.js │ ├── pretty_date.js │ ├── socket.io │ │ ├── .gitmodules │ │ ├── README.md │ │ ├── build.js │ │ ├── lib │ │ │ ├── io.js │ │ │ ├── socket.js │ │ │ ├── transport.js │ │ │ ├── transports │ │ │ │ ├── flashsocket.js │ │ │ │ ├── htmlfile.js │ │ │ │ ├── websocket.js │ │ │ │ ├── xhr-multipart.js │ │ │ │ ├── xhr-polling.js │ │ │ │ └── xhr.js │ │ │ ├── util │ │ │ │ ├── array.js │ │ │ │ ├── events.js │ │ │ │ ├── json.js │ │ │ │ ├── object.js │ │ │ │ ├── oo.js │ │ │ │ ├── options.js │ │ │ │ └── util.js │ │ │ └── vendor │ │ │ │ └── web-socket-js │ │ │ │ ├── .gitignore │ │ │ │ ├── FABridge.js │ │ │ │ ├── README.txt │ │ │ │ ├── WebSocketMain.swf │ │ │ │ ├── flash-src │ │ │ │ ├── WebSocket.as │ │ │ │ ├── WebSocketMain.as │ │ │ │ ├── WebSocketMessageEvent.as │ │ │ │ ├── WebSocketStateEvent.as │ │ │ │ ├── bridge │ │ │ │ │ └── FABridge.as │ │ │ │ └── com │ │ │ │ │ └── adobe │ │ │ │ │ └── net │ │ │ │ │ └── proxies │ │ │ │ │ └── RFC2817Socket.as │ │ │ │ ├── sample.html │ │ │ │ ├── swfobject.js │ │ │ │ └── web_socket.js │ │ └── socket.io.js │ ├── strftime.js │ ├── underscore.js │ └── underscore.min.js ├── robots.txt └── stylesheets │ ├── application.css │ ├── application.sass │ ├── ie.css │ └── ie.sass ├── script ├── add-confirm-keys ├── debug ├── deploys ├── heroku ├── invalidate ├── person-csv ├── post-receive ├── server ├── test ├── unconfirmed ├── verify ├── vote-csv └── winners ├── server.js ├── support.js ├── test └── test-helper.js └── views ├── deploys └── ok.html.haml ├── faq.html.haml ├── index.html.haml ├── judges ├── index.html.jade └── new.html.haml ├── layout.haml ├── locations.html.haml ├── login.html.haml ├── partials ├── errors.html.haml ├── people │ └── form.html.haml ├── replies │ └── reply.html.jade ├── teams │ ├── application.html.haml │ └── form.html.haml └── votes │ ├── index.html.jade │ ├── replies.html.jade │ ├── stars.html.haml │ ├── team.html.haml │ └── voter.html.haml ├── people ├── confirm.html.jade ├── edit.html.haml └── show.html.haml ├── prizes.html.jade ├── reset_password.html.haml ├── rules.html.haml ├── scores.html.haml ├── sponsors.html.haml └── teams ├── edit.html.haml ├── index.html.haml ├── new.html.haml └── show.html.haml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .sass-cache 3 | tmp/* 4 | -------------------------------------------------------------------------------- /console.js: -------------------------------------------------------------------------------- 1 | require('./support') 2 | global.models = require('./models/models') 3 | 4 | require('repl').start() 5 | -------------------------------------------------------------------------------- /db/slug.js: -------------------------------------------------------------------------------- 1 | db.Team.find().forEach(function(t) { 2 | t.slug = t.name.toLowerCase().replace(/\W+/g, '-').replace(/^-|-$/, ''); 3 | db.Team.save(t); 4 | }); 5 | 6 | db.Team.ensureIndex({ slug: 1 }); 7 | -------------------------------------------------------------------------------- /designs/nko.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/designs/nko.key -------------------------------------------------------------------------------- /designs/nko.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/designs/nko.pdf -------------------------------------------------------------------------------- /designs/nko.vdesigner/QuickLook/Preview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/designs/nko.vdesigner/QuickLook/Preview.pdf -------------------------------------------------------------------------------- /designs/nko.vdesigner/QuickLook/Thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/designs/nko.vdesigner/QuickLook/Thumbnail.jpg -------------------------------------------------------------------------------- /designs/nko.vdesigner/VectorDesigner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/designs/nko.vdesigner/VectorDesigner -------------------------------------------------------------------------------- /designs/noise.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/designs/noise.pxm -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/.gitignore: -------------------------------------------------------------------------------- 1 | raw 2 | presentation 3 | test.coffee 4 | parser.output 5 | test/fixtures/underscore 6 | examples/beautiful_code/parse.coffee 7 | *.gem -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/assignment.coffee: -------------------------------------------------------------------------------- 1 | greeting: "Hello CoffeeScript" 2 | difficulty: 0.5 3 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/block_comment.coffee: -------------------------------------------------------------------------------- 1 | ### 2 | CoffeeScript Compiler v0.7.2 3 | Released under the MIT License 4 | ### -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/comparisons.coffee: -------------------------------------------------------------------------------- 1 | cholesterol: 127 2 | 3 | healthy: 200 > cholesterol > 60 4 | 5 | 6 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/conditionals.coffee: -------------------------------------------------------------------------------- 1 | mood: greatlyImproved if singing 2 | 3 | if happy and knowsIt 4 | clapsHands() 5 | chaChaCha() 6 | 7 | date: if friday then sue else jill 8 | 9 | options: or defaultOptions -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/embedded.coffee: -------------------------------------------------------------------------------- 1 | hi: `function() { 2 | return [document.title, "Hello JavaScript"].join(": "); 3 | }` 4 | 5 | 6 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/existence.coffee: -------------------------------------------------------------------------------- 1 | solipsism: true if mind? and not world? 2 | 3 | speed ?= 140 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/expressions_assignment.coffee: -------------------------------------------------------------------------------- 1 | six: (one: 1) + (two: 2) + (three: 3) -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/expressions_comprehension.coffee: -------------------------------------------------------------------------------- 1 | # The first ten global properties. 2 | 3 | globals: (name for name of window)[0...10] -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/expressions_try.coffee: -------------------------------------------------------------------------------- 1 | alert( 2 | try 3 | nonexistent / undefined 4 | catch error 5 | "And the error is ... " + error 6 | ) -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/fat_arrow.coffee: -------------------------------------------------------------------------------- 1 | Account: (customer, cart) -> 2 | @customer: customer 3 | @cart: cart 4 | 5 | $('.shopping_cart').bind 'click', (event) => 6 | @customer.purchase @cart -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/functions.coffee: -------------------------------------------------------------------------------- 1 | square: (x) -> x * x 2 | cube: (x) -> square(x) * x 3 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/heredocs.coffee: -------------------------------------------------------------------------------- 1 | html: ''' 2 | 3 | cup of coffeescript 4 | 5 | ''' -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/interpolation.coffee: -------------------------------------------------------------------------------- 1 | author: "Wittgenstein" 2 | quote: "A picture is a fact. -- $author" -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/interpolation_expression.coffee: -------------------------------------------------------------------------------- 1 | sentence: "${ 22 / 7 } is a decent approximation of π" 2 | 3 | sep: "[.\\/\\- ]" 4 | dates: /\d+$sep\d+$sep\d+/g 5 | 6 | 7 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/multiple_return_values.coffee: -------------------------------------------------------------------------------- 1 | weatherReport: (location) -> 2 | # Make an Ajax request to fetch the weather... 3 | [location, 72, "Mostly Sunny"] 4 | 5 | [city, temp, forecast]: weatherReport "Berkeley, CA" -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/object_comprehensions.coffee: -------------------------------------------------------------------------------- 1 | yearsOld: {max: 10, ida: 9, tim: 11} 2 | 3 | ages: for child, age of yearsOld 4 | child + " is " + age -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/objects_and_arrays.coffee: -------------------------------------------------------------------------------- 1 | song: ["do", "re", "mi", "fa", "so"] 2 | 3 | ages: { 4 | max: 10 5 | ida: 9 6 | tim: 11 7 | } 8 | 9 | matrix: [ 10 | 1, 0, 1 11 | 0, 0, 1 12 | 1, 1, 0 13 | ] -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/objects_reserved.coffee: -------------------------------------------------------------------------------- 1 | $('.account').css {class: 'active'} -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/parallel_assignment.coffee: -------------------------------------------------------------------------------- 1 | theBait: 1000 2 | theSwitch: 0 3 | 4 | [theBait, theSwitch]: [theSwitch, theBait] -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/patterns_and_splats.coffee: -------------------------------------------------------------------------------- 1 | tag: "" 2 | 3 | [open, contents..., close]: tag.split("") 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/prototypes.coffee: -------------------------------------------------------------------------------- 1 | String::dasherize: -> 2 | this.replace(/_/g, "-") -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/range_comprehensions.coffee: -------------------------------------------------------------------------------- 1 | countdown: num for num in [10..1] 2 | 3 | deliverEggs: -> 4 | for i in [0...eggs.length] by 12 5 | dozen: eggs[i...i+12] 6 | deliver new eggCarton(dozen) 7 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/scope.coffee: -------------------------------------------------------------------------------- 1 | outer: 1 2 | changeNumbers: -> 3 | inner: -1 4 | outer: 10 5 | inner: changeNumbers() -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/slices.coffee: -------------------------------------------------------------------------------- 1 | numbers: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] 2 | 3 | threeToSix: numbers[3..6] 4 | 5 | copy: numbers[0...numbers.length] 6 | 7 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/soaks.coffee: -------------------------------------------------------------------------------- 1 | lottery.drawWinner()?.address?.zipcode 2 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/splices.coffee: -------------------------------------------------------------------------------- 1 | numbers: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] 2 | 3 | numbers[3..6]: [-3, -4, -5, -6] 4 | 5 | 6 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/coffee/try.coffee: -------------------------------------------------------------------------------- 1 | try 2 | allHellBreaksLoose() 3 | catsAndDogsLivingTogether() 4 | catch error 5 | print error 6 | finally 7 | cleanUp() -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/coffee/lib/coffee-script/documentation/images/favicon.ico -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/coffee/lib/coffee-script/documentation/images/logo.png -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/js/assignment.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | var difficulty, greeting; 3 | greeting = "Hello CoffeeScript"; 4 | difficulty = 0.5; 5 | })(); 6 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/js/block_comment.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | /* 3 | CoffeeScript Compiler v0.7.2 4 | Released under the MIT License 5 | */ 6 | })(); 7 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/js/comparisons.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | var cholesterol, healthy; 3 | cholesterol = 127; 4 | healthy = (200 > cholesterol) && (cholesterol > 60); 5 | })(); 6 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/js/embedded.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | var hi; 3 | hi = function() { 4 | return [document.title, "Hello JavaScript"].join(": "); 5 | }; 6 | })(); 7 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/js/expressions_assignment.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | var one, six, three, two; 3 | six = (one = 1) + (two = 2) + (three = 3); 4 | })(); 5 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/js/functions.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | var cube, square; 3 | square = function(x) { 4 | return x * x; 5 | }; 6 | cube = function(x) { 7 | return square(x) * x; 8 | }; 9 | })(); 10 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/js/heredocs.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | var html; 3 | html = '\n cup of coffeescript\n'; 4 | })(); 5 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/js/interpolation.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | var author, quote; 3 | author = "Wittgenstein"; 4 | quote = ("A picture is a fact. -- " + author); 5 | })(); 6 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/js/objects_reserved.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | $('.account').css({ 3 | 'class': 'active' 4 | }); 5 | })(); 6 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/js/parallel_assignment.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | var _a, theBait, theSwitch; 3 | theBait = 1000; 4 | theSwitch = 0; 5 | _a = [theSwitch, theBait]; 6 | theBait = _a[0]; 7 | theSwitch = _a[1]; 8 | })(); 9 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/js/prototypes.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | String.prototype.dasherize = function() { 3 | return this.replace(/_/g, "-"); 4 | }; 5 | })(); 6 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/js/slices.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | var copy, numbers, threeToSix; 3 | numbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; 4 | threeToSix = numbers.slice(3, 6 + 1); 5 | copy = numbers.slice(0, numbers.length); 6 | })(); 7 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/js/soaks.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | var _a, _b; 3 | (_b = (typeof (_a = (lottery.drawWinner())) === "undefined" || _a == undefined ? undefined : _a.address)) == undefined ? undefined : _b.zipcode; 4 | })(); 5 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/js/splices.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | var numbers; 3 | numbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; 4 | numbers.splice.apply(numbers, [3, 6 - 3 + 1].concat([-3, -4, -5, -6])); 5 | })(); 6 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/documentation/js/try.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | try { 3 | allHellBreaksLoose(); 4 | catsAndDogsLivingTogether(); 5 | } catch (error) { 6 | print(error); 7 | } finally { 8 | cleanUp(); 9 | } 10 | })(); 11 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/examples/computer_science/README: -------------------------------------------------------------------------------- 1 | Ported from Nicholas Zakas' collection of computer science fundamentals, written 2 | in JavaScript. Originals available here: 3 | 4 | http://github.com/nzakas/computer-science-in-javascript 5 | -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/src/index.coffee: -------------------------------------------------------------------------------- 1 | # Loader for CoffeeScript as a Node.js library. 2 | (exports[key] = val) for key, val of require './coffee-script' -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/test/test_importing.coffee: -------------------------------------------------------------------------------- 1 | # Check if we can import and execute a CoffeeScript-only module successfully. 2 | ok require('./test_module').func() is "from over there" -------------------------------------------------------------------------------- /lib/coffee/lib/coffee-script/test/test_module.coffee: -------------------------------------------------------------------------------- 1 | # This file is imported by `testImporting.coffee` 2 | 3 | local = "from over there" 4 | 5 | exports.func = -> local -------------------------------------------------------------------------------- /lib/connect/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | pids 3 | logs 4 | results 5 | *.pid 6 | *.log 7 | lib-cov 8 | test/fixtures/foo.bar.baz.css 9 | test/fixtures/style.css -------------------------------------------------------------------------------- /lib/connect/benchmarks/hello-world/rack.thin.ru: -------------------------------------------------------------------------------- 1 | 2 | body = 'Hello World' 3 | 4 | run lambda { 5 | [200, { 6 | 'Content-Type' => 'text/plain', 7 | 'Content-Length' => body.length.to_s 8 | }, body] 9 | } -------------------------------------------------------------------------------- /lib/connect/benchmarks/hello-world/sinatra.thin.ru: -------------------------------------------------------------------------------- 1 | 2 | require 'rubygems' 3 | require 'sinatra' 4 | 5 | get '/' do 6 | 'Hello World' 7 | end 8 | 9 | disable :logging 10 | run Sinatra::Application 11 | -------------------------------------------------------------------------------- /lib/connect/benchmarks/static/connect.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Module dependencies. 4 | */ 5 | 6 | var connect = require('../../lib/connect'); 7 | 8 | connect.createServer( 9 | connect.staticProvider(__dirname + '/../public') 10 | ).listen(3000); -------------------------------------------------------------------------------- /lib/connect/benchmarks/static/sinatra.thin.ru: -------------------------------------------------------------------------------- 1 | 2 | require 'rubygems' 3 | require 'sinatra' 4 | 5 | get '/jquery.js' do 6 | send_file File.dirname(__FILE__) + '/../public/jquery.js' 7 | end 8 | 9 | disable :logging 10 | run Sinatra::Application 11 | -------------------------------------------------------------------------------- /lib/connect/docs/format.md: -------------------------------------------------------------------------------- 1 | ## Format 2 | 3 | The _format_ middleware populates `req.format` from urls such as _/products.json_ where the `req.url` becomes _/products_ and `req.format` becomes _json_. 4 | -------------------------------------------------------------------------------- /lib/connect/docs/layout/api.foot.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /lib/connect/examples/embedding/server.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('./app').listen(3000); 3 | console.log("Embedding example running at http://localhost:3000/"); -------------------------------------------------------------------------------- /lib/connect/examples/less/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

Wahoo!

7 | 8 | -------------------------------------------------------------------------------- /lib/connect/examples/less/public/style.less: -------------------------------------------------------------------------------- 1 | 2 | @red: #cc0000; 3 | 4 | body { 5 | font: 14px/1.4 "Lucida Grande", "Helvetica Nueue", Arial; 6 | padding: 15px; 7 | color: @red; 8 | } -------------------------------------------------------------------------------- /lib/connect/examples/multitouch/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/connect/examples/multitouch/public/favicon.ico -------------------------------------------------------------------------------- /lib/connect/examples/sass/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

Wahoo!

7 | 8 | -------------------------------------------------------------------------------- /lib/connect/examples/sass/public/style.sass: -------------------------------------------------------------------------------- 1 | body 2 | :padding 20px 3 | :font 14px/1.3 "Lucida Grande", Arial, sans-serif 4 | :text-shadow 2px 1px 2px rgba(0,0,0,0.2) -------------------------------------------------------------------------------- /lib/connect/examples/static/public/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: #fff; 3 | } -------------------------------------------------------------------------------- /lib/connect/install.sh: -------------------------------------------------------------------------------- 1 | mkdir /tmp/connect \ 2 | && cd /tmp/connect \ 3 | && curl -# -L http://github.com/senchalabs/connect/tarball/master \ 4 | | tar xz --strip 1 \ 5 | && make install \ 6 | && echo "Installation complete" -------------------------------------------------------------------------------- /lib/connect/lib/connect/middleware/gzip.js: -------------------------------------------------------------------------------- 1 | try { 2 | module.exports = require('./gzip-compress'); 3 | } catch (e) { 4 | if (/^Cannot find module /.test(e.message)) 5 | module.exports = require('./gzip-proc'); 6 | else 7 | throw e; 8 | } -------------------------------------------------------------------------------- /lib/connect/lib/connect/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/connect/lib/connect/public/favicon.ico -------------------------------------------------------------------------------- /lib/connect/test/fixtures/foo.bar.baz.sass: -------------------------------------------------------------------------------- 1 | foo 2 | :color #000 -------------------------------------------------------------------------------- /lib/connect/test/fixtures/index.html: -------------------------------------------------------------------------------- 1 |

Wahoo!

-------------------------------------------------------------------------------- /lib/connect/test/fixtures/some text.txt: -------------------------------------------------------------------------------- 1 | whoop -------------------------------------------------------------------------------- /lib/connect/test/fixtures/style.less: -------------------------------------------------------------------------------- 1 | @red: #cc0000; 2 | body { color: @red } -------------------------------------------------------------------------------- /lib/connect/test/fixtures/style.sass: -------------------------------------------------------------------------------- 1 | body 2 | :font-size 12px 3 | :color #000 -------------------------------------------------------------------------------- /lib/connect/test/fixtures/user.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tj", 3 | "email": "tj@sencha.com" 4 | } -------------------------------------------------------------------------------- /lib/express/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | lib-cov 3 | *.seed 4 | *.log 5 | *.csv 6 | *.dat 7 | *.out 8 | *.pid 9 | benchmarks/graphs -------------------------------------------------------------------------------- /lib/express/docs/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/docs/images/bg.jpg -------------------------------------------------------------------------------- /lib/express/docs/images/bg.tile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/docs/images/bg.tile.jpg -------------------------------------------------------------------------------- /lib/express/docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/docs/images/logo.png -------------------------------------------------------------------------------- /lib/express/docs/images/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/docs/images/top.png -------------------------------------------------------------------------------- /lib/express/docs/layout/foot.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /lib/express/examples/blog/blog/posts.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "id": 0, "title": "Post one", "body": "Just some lame post" }, 3 | { "id": 1, "title": "Post two", "body": "Just another lame post" } 4 | ] -------------------------------------------------------------------------------- /lib/express/examples/blog/blog/views/index.ejs: -------------------------------------------------------------------------------- 1 |

Posts

2 | <%- partial('post', { collection: posts, as: global }) %> -------------------------------------------------------------------------------- /lib/express/examples/blog/blog/views/layout.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 | Blog Example 4 | 5 | 6 |

Best Blog Ever

7 | <%- body %> 8 | 9 | -------------------------------------------------------------------------------- /lib/express/examples/blog/blog/views/partials/post.ejs: -------------------------------------------------------------------------------- 1 |

<%= title %>

2 |

<%= body %>

-------------------------------------------------------------------------------- /lib/express/examples/blog/blog/views/post.ejs: -------------------------------------------------------------------------------- 1 | <%- partial('post', { object: post, as: global }) %> -------------------------------------------------------------------------------- /lib/express/examples/ejs/views/layout.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Users

4 | <%- body %> 5 | 6 | -------------------------------------------------------------------------------- /lib/express/examples/ejs/views/partials/user.ejs: -------------------------------------------------------------------------------- 1 |
  • <%= user.name %> <<%= user.email %>>
  • -------------------------------------------------------------------------------- /lib/express/examples/ejs/views/users.ejs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/express/examples/flash/views/index.ejs: -------------------------------------------------------------------------------- 1 |

    Flash Message Example

    2 |

    on page <%- page %>

    3 | <%- messages() %> 4 | -------------------------------------------------------------------------------- /lib/express/examples/flash/views/layout.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 | <%- body %> 4 | 5 | -------------------------------------------------------------------------------- /lib/express/examples/github/views/layout.jade: -------------------------------------------------------------------------------- 1 | !!! 2 | html 3 | head 4 | title Github Example 5 | link(rel="stylesheet", href="/style.css") 6 | body 7 | #container!= body -------------------------------------------------------------------------------- /lib/express/examples/github/views/partials/repo.jade: -------------------------------------------------------------------------------- 1 | tr.repo 2 | td.name 3 | a(href: repo.homepage || repo.url)= repo.name 4 | td.watchers 5 | = repo.watchers -------------------------------------------------------------------------------- /lib/express/examples/jade/public/stylesheets/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 50px 80px; 3 | font: 14px "Helvetica Nueue", "Lucida Grande", Arial, sans-serif;} 4 | -------------------------------------------------------------------------------- /lib/express/examples/jade/public/stylesheets/style.sass: -------------------------------------------------------------------------------- 1 | body 2 | :padding 50px 80px 3 | :font 14px "Helvetica Nueue", "Lucida Grande", Arial, sans-serif 4 | -------------------------------------------------------------------------------- /lib/express/examples/jade/views/layout.jade: -------------------------------------------------------------------------------- 1 | !!! 2 | html 3 | head 4 | title Jade Example 5 | link(rel="stylesheet", href="/stylesheets/style.css") 6 | body!= body -------------------------------------------------------------------------------- /lib/express/examples/jade/views/partials/user.jade: -------------------------------------------------------------------------------- 1 | .user 2 | h2= user.name 3 | .email= user.email -------------------------------------------------------------------------------- /lib/express/examples/jade/views/users.jade: -------------------------------------------------------------------------------- 1 | - if (users.length) 2 | h1 Users 3 | #users!= partial('user', users) -------------------------------------------------------------------------------- /lib/express/examples/pages/views/404.jade: -------------------------------------------------------------------------------- 1 | h2 Page Not Found -------------------------------------------------------------------------------- /lib/express/examples/pages/views/500.jade: -------------------------------------------------------------------------------- 1 | h1 Error: #{error.message} 2 | pre= error.stack -------------------------------------------------------------------------------- /lib/express/examples/pages/views/index.jade: -------------------------------------------------------------------------------- 1 | h2 Pages Example 2 | ul 3 | li 4 | | visit 5 | a(href="/500") 500 6 | li 7 | | visit 8 | a(href="/404") 404 -------------------------------------------------------------------------------- /lib/express/examples/pages/views/layout.jade: -------------------------------------------------------------------------------- 1 | html 2 | head 3 | title Custom Pages Example 4 | body 5 | h1 My Site 6 | != body -------------------------------------------------------------------------------- /lib/express/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/express'); -------------------------------------------------------------------------------- /lib/express/lib/support/class/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node spec/node.js 4 | 5 | .PHONY: test -------------------------------------------------------------------------------- /lib/express/lib/support/class/seed.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Class 3 | description: High performance class implementation (tiny) 4 | tag: oo class performance 5 | version: 0.3.0 6 | -------------------------------------------------------------------------------- /lib/express/lib/support/class/spec/lib/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/class/spec/lib/images/bg.png -------------------------------------------------------------------------------- /lib/express/lib/support/class/spec/lib/images/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/class/spec/lib/images/hr.png -------------------------------------------------------------------------------- /lib/express/lib/support/class/spec/lib/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/class/spec/lib/images/loading.gif -------------------------------------------------------------------------------- /lib/express/lib/support/class/spec/lib/images/sprites.bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/class/spec/lib/images/sprites.bg.png -------------------------------------------------------------------------------- /lib/express/lib/support/class/spec/lib/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/class/spec/lib/images/sprites.png -------------------------------------------------------------------------------- /lib/express/lib/support/class/spec/lib/images/vr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/class/spec/lib/images/vr.png -------------------------------------------------------------------------------- /lib/express/lib/support/class/spec/unit/spec.helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/class/spec/unit/spec.helper.js -------------------------------------------------------------------------------- /lib/express/lib/support/ext/lib/ext/core_ext/date.js: -------------------------------------------------------------------------------- 1 | 2 | // ext.js - Date - Copyright TJ Holowaychuk (MIT Licensed) 3 | 4 | require('ext/core_ext/date/extensions') 5 | exports.parse = require('ext/core_ext/date/parser').parse 6 | 7 | -------------------------------------------------------------------------------- /lib/express/lib/support/ext/lib/ext/core_ext/object.js: -------------------------------------------------------------------------------- 1 | 2 | // ext.js - Object - Copyright TJ Holowaychuk (MIT Licensed) 3 | 4 | require('ext/core_ext/object/extensions') 5 | 6 | -------------------------------------------------------------------------------- /lib/express/lib/support/ext/lib/ext/core_ext/string.js: -------------------------------------------------------------------------------- 1 | 2 | // ext.js - String - Copyright TJ Holowaychuk (MIT Licensed) 3 | 4 | require('ext/core_ext/string/extensions') 5 | require('ext/core_ext/string/inflections') 6 | 7 | -------------------------------------------------------------------------------- /lib/express/lib/support/ext/seed.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: ext 3 | description: High quality extensions, date formatting, iterators and more 4 | version: 0.6.0 5 | -------------------------------------------------------------------------------- /lib/express/lib/support/ext/spec/lib/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/ext/spec/lib/images/bg.png -------------------------------------------------------------------------------- /lib/express/lib/support/ext/spec/lib/images/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/ext/spec/lib/images/hr.png -------------------------------------------------------------------------------- /lib/express/lib/support/ext/spec/lib/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/ext/spec/lib/images/loading.gif -------------------------------------------------------------------------------- /lib/express/lib/support/ext/spec/lib/images/sprites.bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/ext/spec/lib/images/sprites.bg.png -------------------------------------------------------------------------------- /lib/express/lib/support/ext/spec/lib/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/ext/spec/lib/images/sprites.png -------------------------------------------------------------------------------- /lib/express/lib/support/ext/spec/lib/images/vr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/ext/spec/lib/images/vr.png -------------------------------------------------------------------------------- /lib/express/lib/support/haml/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "benchmarks/haml-js"] 2 | path = benchmarks/haml-js 3 | url = git://github.com/creationix/haml-js.git 4 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/.ignore: -------------------------------------------------------------------------------- 1 | benchmarks -------------------------------------------------------------------------------- /lib/express/lib/support/haml/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node spec/node.js 4 | 5 | benchmark: 6 | @node-bench benchmarks/run.js 7 | 8 | .PHONY: test benchmark -------------------------------------------------------------------------------- /lib/express/lib/support/haml/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "haml", 3 | "description": "Faster, harder, better HAML template engine", 4 | "keywords": ["haml", "template", "engine", "view", "nodejs"], 5 | "author": "TJ Holowaychuk", 6 | "version": "0.4.5" 7 | } -------------------------------------------------------------------------------- /lib/express/lib/support/haml/seed.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Haml 3 | description: Faster, harder, better HAML template engine 4 | tags: haml html template engine 5 | version: 0.4.5 6 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/class.haml: -------------------------------------------------------------------------------- 1 | .users -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/class.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/classes.haml: -------------------------------------------------------------------------------- 1 | .foo.bar.baz_is-awesome -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/classes.html: -------------------------------------------------------------------------------- 1 |
    -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/code.each.haml: -------------------------------------------------------------------------------- 1 | %ul 2 | - each item in items 3 | %li= item -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/code.each.html: -------------------------------------------------------------------------------- 1 |
      2 |
    • one
    • 3 | 4 |
    • two
    • 5 | 6 |
    • three
    • 7 |
    -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/code.each.index.haml: -------------------------------------------------------------------------------- 1 | %ul 2 | - each item, index in items 3 | %li= item + '(' + index + ')' -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/code.each.index.html: -------------------------------------------------------------------------------- 1 |
      2 |
    • one(0)
    • 3 | 4 |
    • two(1)
    • 5 | 6 |
    • three(2)
    • 7 |
    -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/code.each.non-enumerable.haml: -------------------------------------------------------------------------------- 1 | %ul 2 | - each item, index in items 3 | %li= item + '(' + index + ')' -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/code.each.non-enumerable.html: -------------------------------------------------------------------------------- 1 |
      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/code.escape.haml: -------------------------------------------------------------------------------- 1 | = "" -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/code.escape.html: -------------------------------------------------------------------------------- 1 | <br/> -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/code.haml: -------------------------------------------------------------------------------- 1 | != "foo" + "bar" -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/code.html: -------------------------------------------------------------------------------- 1 | foobar -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/code.if.haml: -------------------------------------------------------------------------------- 1 | - name = "tj" 2 | - if (name === 'tj') 3 | %p You are logged in -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/code.if.html: -------------------------------------------------------------------------------- 1 |

      You are logged in

      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/code.nested.haml: -------------------------------------------------------------------------------- 1 | - if (true) 2 | - if (false) 3 | %p nope 4 | - if (true) 5 | %p yay -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/code.nested.html: -------------------------------------------------------------------------------- 1 |

      yay

      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/comment.block.haml: -------------------------------------------------------------------------------- 1 | / 2 | %ul 3 | %li nope 4 | %li nope 5 | %li nope -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/comment.block.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/comment.haml: -------------------------------------------------------------------------------- 1 | -# nothing 2 | %p yay 3 | -# whatever you want -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/comment.html: -------------------------------------------------------------------------------- 1 |

      yay

      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/comment.tag.haml: -------------------------------------------------------------------------------- 1 | / %p foo -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/comment.tag.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/comment.text.complex.haml: -------------------------------------------------------------------------------- 1 | %ul 2 | %li one 3 | / first item 4 | %li two 5 | / second item 6 | %ul 7 | %li three -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/comment.text.complex.html: -------------------------------------------------------------------------------- 1 |
        2 |
      • one
      • 3 | 4 |
      • two
      • 5 | 6 |
          7 |
        • three
        • 8 |
        9 |
      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/comment.text.haml: -------------------------------------------------------------------------------- 1 | %p 2 | / foo bar baz -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/comment.text.html: -------------------------------------------------------------------------------- 1 |

      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/context.haml: -------------------------------------------------------------------------------- 1 | %p= this -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/context.html: -------------------------------------------------------------------------------- 1 |

      yay

      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/cr.haml: -------------------------------------------------------------------------------- 1 | #foo .bar -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/cr.html: -------------------------------------------------------------------------------- 1 |
      2 |
      3 |
      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/crlf.haml: -------------------------------------------------------------------------------- 1 | #foo 2 | .bar -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/crlf.html: -------------------------------------------------------------------------------- 1 |
      2 |
      3 |
      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/doctype.haml: -------------------------------------------------------------------------------- 1 | !!! -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/doctype.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/doctype.xml.case.haml: -------------------------------------------------------------------------------- 1 | !!! xml -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/doctype.xml.case.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/doctype.xml.haml: -------------------------------------------------------------------------------- 1 | !!! XML -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/doctype.xml.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/error.haml: -------------------------------------------------------------------------------- 1 | %html 2 | %body 3 | %p -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/escape.haml: -------------------------------------------------------------------------------- 1 | %p 2 | \.foo -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/escape.html: -------------------------------------------------------------------------------- 1 |

      .foo

      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/filter.cdata.haml: -------------------------------------------------------------------------------- 1 | %script 2 | :cdata 3 | foo -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/filter.cdata.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/filter.cdata.whitespace.haml: -------------------------------------------------------------------------------- 1 | %script 2 | :cdata 3 | $(function(){ 4 | if (foo) 5 | if (bar) 6 | alert('yay') 7 | }) -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/filter.cdata.whitespace.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/filter.javascript.haml: -------------------------------------------------------------------------------- 1 | %head 2 | :javascript 3 | if (foo) 4 | if (bar) 5 | alert("baz") 6 | foo() 7 | bar() 8 | %title Yay -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/filter.javascript.html: -------------------------------------------------------------------------------- 1 | 9 | Yay 10 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/filter.plain.haml: -------------------------------------------------------------------------------- 1 | %body 2 | :plain 3 | .foo 4 | bar 5 | = baz -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/filter.plain.html: -------------------------------------------------------------------------------- 1 | .foo 2 | bar 3 | = baz -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/html.haml: -------------------------------------------------------------------------------- 1 | %div 2 |

      literal

      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/html.html: -------------------------------------------------------------------------------- 1 |

      literal

      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/id.haml: -------------------------------------------------------------------------------- 1 | #users -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/id.html: -------------------------------------------------------------------------------- 1 |
      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/issue.#10.haml: -------------------------------------------------------------------------------- 1 | %label{ for: "forsomething"} -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/issue.#10.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/issue.#8.haml: -------------------------------------------------------------------------------- 1 | %ul 2 | - each item in items 3 | %li= item 4 | %p= "Total: " + items.length -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/issue.#8.html: -------------------------------------------------------------------------------- 1 |
        2 |
      • foo
      • 3 | 4 |
      • bar
      • 5 | 6 |
      • baz
      • 7 |
      8 | 9 |

      Total: 3

      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/literals.haml: -------------------------------------------------------------------------------- 1 | %p= user -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/literals.html: -------------------------------------------------------------------------------- 1 |

      tj

      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/namespace.haml: -------------------------------------------------------------------------------- 1 | %h:table{ 'xmlns:h': 'http://www.w3.org/1999/xhtml' } -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/namespace.tag.haml: -------------------------------------------------------------------------------- 1 | %body 2 | %fb:test.a 3 | %fb:bar 4 | %fb:foo{ title: 'home' } 5 | %fb:login-button 6 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/namespace.tag.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/namespace.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/nesting.complex.haml: -------------------------------------------------------------------------------- 1 | %html 2 | %head 3 | %title Page Title 4 | %body 5 | %h1 Title 6 | %p some stuff -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/nesting.complex.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Page Title 4 | 5 | 6 | 7 |

      Title

      8 | 9 |

      some stuff

      10 | 11 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/nesting.simple.haml: -------------------------------------------------------------------------------- 1 | %ul 2 | %li one 3 | %li two 4 | %li 5 | %ul 6 | %li three -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/nesting.simple.html: -------------------------------------------------------------------------------- 1 |
        2 |
      • one
      • 3 | 4 |
      • two
      • 5 | 6 |
      • 7 |
          8 |
        • three
        • 9 |
        10 |
      • 11 |
      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/newlines.haml: -------------------------------------------------------------------------------- 1 | %ul 2 | %li one 3 | %li two 4 | %li three 5 | %li 6 | %ul 7 | %li four 8 | 9 | %p foo 10 | %p 11 | bar 12 | baz -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/newlines.html: -------------------------------------------------------------------------------- 1 |
        2 |
      • one
      • 3 | 4 |
      • two
      • 5 | 6 |
      • three
      • 7 | 8 |
      • 9 |
          10 |
        • four
        • 11 |
        12 |
      • 13 |
      14 | 15 |

      foo

      16 | 17 |

      bar baz

      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.attrs.bools.haml: -------------------------------------------------------------------------------- 1 | %input{ type: 'checkbox', checked: true } -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.attrs.bools.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.attrs.escape.haml: -------------------------------------------------------------------------------- 1 | %option{ value: '' } -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.attrs.escape.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.attrs.haml: -------------------------------------------------------------------------------- 1 | %a{ href: '/', title: 'home' } -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.attrs.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.class.haml: -------------------------------------------------------------------------------- 1 | %h1.title -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.class.html: -------------------------------------------------------------------------------- 1 |

      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.classes.haml: -------------------------------------------------------------------------------- 1 | %body.front-page.editing-user -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.classes.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.code.haml: -------------------------------------------------------------------------------- 1 | %div= "yay" -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.code.html: -------------------------------------------------------------------------------- 1 |
      yay
      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.code.no-escape.haml: -------------------------------------------------------------------------------- 1 | %div!= "
      " -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.code.no-escape.html: -------------------------------------------------------------------------------- 1 |

      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.complex.haml: -------------------------------------------------------------------------------- 1 | %a#delete-user.first.button{ href: '/', title: 'Click to delete' }= "Delete " + "tj" -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.complex.html: -------------------------------------------------------------------------------- 1 | Delete tj -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.empty.haml: -------------------------------------------------------------------------------- 1 | %body 2 | %div.a 3 | %div.b 4 | .c 5 | .d 6 | #e 7 | #f -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.empty.html: -------------------------------------------------------------------------------- 1 | 2 |
      3 | 4 |
      5 | 6 |
      7 | 8 |
      9 | 10 |
      11 | 12 |
      13 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.escape.haml: -------------------------------------------------------------------------------- 1 | %div= "
      " -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.escape.html: -------------------------------------------------------------------------------- 1 |
      <br/>
      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.self-close.haml: -------------------------------------------------------------------------------- 1 | %br -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.self-close.html: -------------------------------------------------------------------------------- 1 |
      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.simple.haml: -------------------------------------------------------------------------------- 1 | %div -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.simple.html: -------------------------------------------------------------------------------- 1 |
      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.text.block.complex.haml: -------------------------------------------------------------------------------- 1 | %p 2 | Visit 3 | %a{ href: 'http://vision-media.ca' } Vision Media 4 | because im amazing, 5 | yes... -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.text.block.complex.html: -------------------------------------------------------------------------------- 1 |

      Visit 2 | Vision Media 3 | because im amazing, yes...

      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.text.block.haml: -------------------------------------------------------------------------------- 1 | %p 2 | some text 3 | and more text 4 | and even more text! 5 | OMG -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.text.block.html: -------------------------------------------------------------------------------- 1 |

      some text and more text and even more text! OMG

      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.text.haml: -------------------------------------------------------------------------------- 1 | %div some text -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/tag.text.html: -------------------------------------------------------------------------------- 1 |
      some text
      -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/trailing-indent.haml: -------------------------------------------------------------------------------- 1 | %a 2 | %b 3 | 4 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/fixtures/trailing-indent.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/lib/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/haml/spec/lib/images/bg.png -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/lib/images/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/haml/spec/lib/images/hr.png -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/lib/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/haml/spec/lib/images/loading.gif -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/lib/images/sprites.bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/haml/spec/lib/images/sprites.bg.png -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/lib/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/haml/spec/lib/images/sprites.png -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/lib/images/vr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/haml/spec/lib/images/vr.png -------------------------------------------------------------------------------- /lib/express/lib/support/haml/spec/unit/spec.helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/haml/spec/unit/spec.helper.js -------------------------------------------------------------------------------- /lib/express/lib/support/multipart/lib/multipart.js: -------------------------------------------------------------------------------- 1 | 2 | exports.lib = 3 | { parse : require("./parse") 4 | , write : require("./write") 5 | }; 6 | 7 | exports.parser = exports.lib.parse.parser; 8 | exports.writer = exports.lib.write.writer; 9 | -------------------------------------------------------------------------------- /lib/express/lib/support/sass/.gitignore: -------------------------------------------------------------------------------- 1 | *.seed 2 | *.cache 3 | *.log 4 | .DS_Store 5 | pkg 6 | build 7 | bin -------------------------------------------------------------------------------- /lib/express/lib/support/sass/Makefile: -------------------------------------------------------------------------------- 1 | 2 | all: test 3 | 4 | test: spec/node.js 5 | @node spec/node.js 6 | 7 | benchmark: 8 | @node benchmarks/large.js 9 | 10 | .PHONY: test benchmark 11 | -------------------------------------------------------------------------------- /lib/express/lib/support/sass/index.js: -------------------------------------------------------------------------------- 1 | lib/sass.js -------------------------------------------------------------------------------- /lib/express/lib/support/sass/seed.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Sass 3 | description: Syntactically Awesome Stylesheets (compiles to css) 4 | version: 0.4.3 5 | -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/collect.sass: -------------------------------------------------------------------------------- 1 | 2 | !red = #ff0000 3 | !black = #000 -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/comment.css: -------------------------------------------------------------------------------- 1 | body a { 2 | color: #fff;} 3 | -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/comment.sass: -------------------------------------------------------------------------------- 1 | 2 | // foo 3 | body 4 | // bar 5 | a 6 | :color #fff 7 | -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/continuation.css: -------------------------------------------------------------------------------- 1 | a { 2 | color: #fff;} 3 | a:hover { 4 | color: #000;} 5 | a.active { 6 | background: #888;} 7 | a.active:hover { 8 | color: #fff;} 9 | -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/continuation.sass: -------------------------------------------------------------------------------- 1 | a 2 | :color #fff 3 | &:hover 4 | :color #000 5 | &.active 6 | :background #888 7 | &:hover 8 | :color #fff -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/literal.css: -------------------------------------------------------------------------------- 1 | input { 2 | border: 2px "solid" #000;} 3 | -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/literal.sass: -------------------------------------------------------------------------------- 1 | !type = "solid" 2 | !size = 1 3 | input 4 | :border { parseInt(size) + 1 }px {type} #000 -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/mixin.css: -------------------------------------------------------------------------------- 1 | table { 2 | border: none;} 3 | table tr { 4 | background: #fff;} 5 | table tr { 6 | font-size: 15px;} 7 | table tr:odd { 8 | background: #000;} 9 | -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/mixin.sass: -------------------------------------------------------------------------------- 1 | +large 2 | :font-size 15px 3 | +striped 4 | tr 5 | :background #fff 6 | +large 7 | &:odd 8 | :background #000 9 | table 10 | +striped 11 | :border none -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/mixin.undefined.sass: -------------------------------------------------------------------------------- 1 | body 2 | +large -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/properties.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-size: 13px; 3 | color: #fff;} 4 | -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/properties.expand.css: -------------------------------------------------------------------------------- 1 | div { 2 | -webkit-border-radius: 5px; 3 | -moz-border-radius: 5px;} 4 | -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/properties.expand.sass: -------------------------------------------------------------------------------- 1 | div 2 | =border-radius 5px -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/properties.invalid.sass: -------------------------------------------------------------------------------- 1 | :color #fff 2 | body -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/properties.nested.invalid.sass: -------------------------------------------------------------------------------- 1 | body 2 | ul 3 | :margin 0 4 | li 5 | :padding 0 -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/properties.sass: -------------------------------------------------------------------------------- 1 | body 2 | :font-size 13px 3 | :color #fff -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/selectors.css: -------------------------------------------------------------------------------- 1 | body input.field#email ~ label { 2 | display: none;} 3 | body form:nth-child(1) legend { 4 | font-size: 15px;} 5 | body ul li:first-child a { 6 | display: none;} 7 | -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/selectors.sass: -------------------------------------------------------------------------------- 1 | body 2 | input.field#email ~ label 3 | :display none 4 | form:nth-child(1) 5 | legend 6 | :font-size 15px 7 | ul 8 | li:first-child 9 | a 10 | :display none 11 | -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/variables.alternate.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: #ff0000 url('foo.png');} 3 | -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/variables.alternate.sass: -------------------------------------------------------------------------------- 1 | color: #ff0000 2 | image: url('foo.png') 3 | body 4 | :background !color !image -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/variables.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: #ff0000;} 3 | -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/variables.regular.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: #ff0000;} 3 | -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/variables.regular.sass: -------------------------------------------------------------------------------- 1 | !red = #ff0000 2 | body 3 | :color !red -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/fixtures/variables.sass: -------------------------------------------------------------------------------- 1 | 2 | red: #ff0000 3 | 4 | body 5 | :color !red 6 | -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/lib/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/sass/spec/lib/images/bg.png -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/lib/images/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/sass/spec/lib/images/hr.png -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/lib/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/sass/spec/lib/images/loading.gif -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/lib/images/sprites.bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/sass/spec/lib/images/sprites.bg.png -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/lib/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/sass/spec/lib/images/sprites.png -------------------------------------------------------------------------------- /lib/express/lib/support/sass/spec/lib/images/vr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/express/lib/support/sass/spec/lib/images/vr.png -------------------------------------------------------------------------------- /lib/express/support/jade/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | lib-cov 3 | *.seed -------------------------------------------------------------------------------- /lib/express/support/jade/CNAME: -------------------------------------------------------------------------------- 1 | jade-lang.com 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/examples/interpolation.jade: -------------------------------------------------------------------------------- 1 | #user #{name} <#{email}> -------------------------------------------------------------------------------- /lib/express/support/jade/examples/iteration.jade: -------------------------------------------------------------------------------- 1 | !!! xml 2 | users 3 | - each user in users 4 | user(name: user.name) 5 | - if (user.roles) 6 | roles 7 | - each role in user.roles 8 | role= role -------------------------------------------------------------------------------- /lib/express/support/jade/examples/markdown.jade: -------------------------------------------------------------------------------- 1 | body 2 | :markdown 3 | | Woah! jade _and_ markdown, very **cool** 4 | | we can even link to [stuff](http://google.com) -------------------------------------------------------------------------------- /lib/express/support/jade/examples/whitespace.jade: -------------------------------------------------------------------------------- 1 | ul 2 | li one 3 | 4 | 5 | 6 | li two 7 | 8 | li three 9 | 10 | 11 | 12 | li four 13 | 14 | li 15 | ul 16 | li five 17 | 18 | li six 19 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/seed.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: markdown-js 3 | description: JavaScript implementation of Markdown 4 | tags: markdown parser 5 | version: 0.1.2 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/blockquotes/contains_code.text: -------------------------------------------------------------------------------- 1 | > There's a code block in here: 2 | > 3 | > SET foo = TRUE 4 | > 5 | > IF foo GOTO 10 6 | > 7 | > Wasn't that nice? 8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/blockquotes/lazy_wrapping.text: -------------------------------------------------------------------------------- 1 | > If you're too lazy 2 | to wrap your code nicely 3 | 4 | > This will still work 5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/blockquotes/leading_paras.text: -------------------------------------------------------------------------------- 1 | Amy wrote: 2 | > No wai? 3 | 4 | Bob wrote: 5 | > Ya rly! 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/blockquotes/nested.text: -------------------------------------------------------------------------------- 1 | > One 2 | > 3 | > > Two 4 | > 5 | > Three 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/blockquotes/simple.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["blockquote", 3 | ["p", 4 | "Blockquote" 5 | ] 6 | ] 7 | ] 8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/blockquotes/simple.text: -------------------------------------------------------------------------------- 1 | > Blockquote 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/blockquotes/spaceless.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["blockquote", 3 | ["p", 4 | "blockquote\nwithout spaces" 5 | ] 6 | ] 7 | ] 8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/blockquotes/spaceless.text: -------------------------------------------------------------------------------- 1 | >blockquote 2 | >without spaces 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/code/block.text: -------------------------------------------------------------------------------- 1 | Here is an example of AppleScript: 2 | 3 | tell application "Foo" 4 | beep 5 | end tell 6 | tab 7 | 8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/code/embedded_backtick.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["p", 3 | "This is a ", 4 | ["code", 5 | "code span with an `embedded` backtick"], 6 | "." 7 | ] 8 | ] 9 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/code/embedded_backtick.text: -------------------------------------------------------------------------------- 1 | This is a ``code span with an `embedded` backtick``. 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/code/horizontal_rules.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["pre", 3 | ["code", 4 | "fsfsfsf\n* * *\n\n***\n\n*****\n\n- - -\n\n---------------------------------------" 5 | ] 6 | ] 7 | ] 8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/code/horizontal_rules.text: -------------------------------------------------------------------------------- 1 | fsfsfsf 2 | * * * 3 | 4 | *** 5 | 6 | ***** 7 | 8 | - - - 9 | 10 | --------------------------------------- 11 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/code/inline.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["p", 3 | ["code", 4 | "This" 5 | ], 6 | " is a code span." 7 | ] 8 | ] 9 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/code/inline.text: -------------------------------------------------------------------------------- 1 | `This` is a code span. 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/code/inline_multiline.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["p", 3 | "foo ", 4 | ["code", 5 | "code\ncode" 6 | ], 7 | " bar" 8 | ] 9 | ] 10 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/code/inline_multiline.text: -------------------------------------------------------------------------------- 1 | foo `code 2 | code` bar 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/code/trailing_para.text: -------------------------------------------------------------------------------- 1 | Paragraph above 2 | 3 | Code block 4 | Paragraph below 5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/definition_lists/inline.text: -------------------------------------------------------------------------------- 1 | a term 2 | : *emphasised* definition. 3 | 4 | another term 5 | : **strong** definition. 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/definition_lists/long.text: -------------------------------------------------------------------------------- 1 | first term 2 | : the quick brown fox jumps 3 | over the lazy dog 4 | 5 | second term 6 | : pack my box with five 7 | dozen liquor jugs 8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/definition_lists/multiple_definitions.text: -------------------------------------------------------------------------------- 1 | fruit 2 | : apple 3 | : banana 4 | : pear 5 | 6 | animal 7 | : cow 8 | : duck 9 | : horse 10 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/definition_lists/multiple_terms.text: -------------------------------------------------------------------------------- 1 | fruit 2 | vegetable 3 | : tomato 4 | 5 | animal 6 | mineral 7 | : pet rock 8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/definition_lists/tight.text: -------------------------------------------------------------------------------- 1 | one 2 | : alpha 3 | 4 | two 5 | : beta 6 | 7 | three 8 | : gamma 9 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/emphasis/multiple_lines.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["p", 3 | "You can ", 4 | ["em", 5 | "start emphasis on one line,\nand finish it" 6 | ], 7 | " on another." 8 | ] 9 | ] 10 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/emphasis/multiple_lines.text: -------------------------------------------------------------------------------- 1 | You can *start emphasis on one line, 2 | and finish it* on another. 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/emphasis/nested.text: -------------------------------------------------------------------------------- 1 | You can **nest *em* inside strong**. 2 | 3 | You can *nest **strong** inside em*. 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/emphasis/simple.text: -------------------------------------------------------------------------------- 1 | Emphasis can be *weak* or **strong**. 2 | 3 | It can _even_ use __underscores__. 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/headers/atx.text: -------------------------------------------------------------------------------- 1 | # One 2 | 3 | ## Two 4 | 5 | ### Three 6 | 7 | #### Four 8 | 9 | ##### Five 10 | 11 | ###### Six 12 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/headers/atx_closing_hashes.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["h1", 3 | "One" 4 | ], 5 | ["h2", 6 | "Two" 7 | ], 8 | ["h3", 9 | "Three" 10 | ] 11 | ] 12 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/headers/atx_closing_hashes.text: -------------------------------------------------------------------------------- 1 | # One # 2 | 3 | ## Two ##### 4 | 5 | ### Three ## 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/headers/setext.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["h1", 3 | "One" 4 | ], 5 | ["h2", 6 | "Two" 7 | ] 8 | ] 9 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/headers/setext.text: -------------------------------------------------------------------------------- 1 | One 2 | === 3 | 4 | Two 5 | --- 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/headers/trailing_paras.text: -------------------------------------------------------------------------------- 1 | Header 2 | ====== 3 | Paragraph 4 | 5 | Header 6 | ------ 7 | Paragraph 8 | 9 | ### Header 10 | Paragraph 11 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/horizontal_rules/abutting_blocks.text: -------------------------------------------------------------------------------- 1 | para 2 | *** 3 | * list 4 | - - - 5 | > blockquote 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/horizontal_rules/dashes.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["hr"] 3 | ] 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/horizontal_rules/dashes.text: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/horizontal_rules/leading_spaces.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["hr"] 3 | ] 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/horizontal_rules/leading_spaces.text: -------------------------------------------------------------------------------- 1 | * * * 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/horizontal_rules/long.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["hr"] 3 | ] 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/horizontal_rules/long.text: -------------------------------------------------------------------------------- 1 | ********************* 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/horizontal_rules/long_loose.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["hr"] 3 | ] 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/horizontal_rules/long_loose.text: -------------------------------------------------------------------------------- 1 | * * * * * * * * * * * 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/horizontal_rules/loose_dashes.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["hr"] 3 | ] 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/horizontal_rules/loose_dashes.text: -------------------------------------------------------------------------------- 1 | - - - 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/horizontal_rules/loose_stars.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["hr"] 3 | ] 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/horizontal_rules/loose_stars.text: -------------------------------------------------------------------------------- 1 | * * * 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/horizontal_rules/loose_underscores.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["hr"] 3 | ] 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/horizontal_rules/loose_underscores.text: -------------------------------------------------------------------------------- 1 | _ _ _ 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/horizontal_rules/stars.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["hr"] 3 | ] 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/horizontal_rules/stars.text: -------------------------------------------------------------------------------- 1 | *** 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/horizontal_rules/underscores.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["hr"] 3 | ] 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/horizontal_rules/underscores.text: -------------------------------------------------------------------------------- 1 | ___ 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/images/basic.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["p", 3 | ["img", { 4 | "src": "/path/to/img.jpg", 5 | "alt": "Alt text" 6 | } ] 7 | ] 8 | ] 9 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/images/basic.text: -------------------------------------------------------------------------------- 1 | ![Alt text](/path/to/img.jpg) 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/images/crotcheted_url.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["p", 3 | ["img", { 4 | "src": "/url/", 5 | "alt": "alt text" 6 | } ] 7 | ] 8 | ] 9 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/images/crotcheted_url.text: -------------------------------------------------------------------------------- 1 | ![alt text]() 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/images/crotcheted_url_with_title.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["p", 3 | ["img", { 4 | "src": "/url/", 5 | "alt": "alt text", 6 | "title": "with a title" 7 | } ] 8 | ] 9 | ] 10 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/images/crotcheted_url_with_title.text: -------------------------------------------------------------------------------- 1 | ![alt text]( "with a title") 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/images/empty.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["p", 3 | ["img", { 4 | "src": "", 5 | "alt": "Empty" 6 | } ] 7 | ] 8 | ] 9 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/images/empty.text: -------------------------------------------------------------------------------- 1 | ![Empty]() 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/images/spaces_round_title.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["p", 3 | ["img", { 4 | "src": "/url/", 5 | "alt": "alt text", 6 | "title": "title has spaces afterward" 7 | } ] 8 | ] 9 | ] 10 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/images/spaces_round_title.text: -------------------------------------------------------------------------------- 1 | ![alt text](/url/ "title has spaces afterward" ) 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/images/title.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["p", 3 | ["img", { 4 | "src": "/path/to/img.jpg", 5 | "alt": "Alt text", 6 | "title": "Optional title" 7 | } ] 8 | ] 9 | ] 10 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/images/title.text: -------------------------------------------------------------------------------- 1 | ![Alt text](/path/to/img.jpg "Optional title") 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/linebreaks/simple.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["p", 3 | "The quick brown fox", 4 | ["br"], 5 | "jumps over the lazy dog." 6 | ] 7 | ] 8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/linebreaks/simple.text: -------------------------------------------------------------------------------- 1 | The quick brown fox 2 | jumps over the lazy dog. 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/links/autolink_email.text: -------------------------------------------------------------------------------- 1 | Email addresses written like get autolinkified. 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/links/autolink_in_code.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["p", 3 | "Autolinks don't happen inside code: ", 4 | ["code", 5 | "" 6 | ] 7 | ] 8 | ] 9 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/links/autolink_in_code.text: -------------------------------------------------------------------------------- 1 | Autolinks don't happen inside code: `` 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/links/autolink_url.text: -------------------------------------------------------------------------------- 1 | URLs like get autolinkified. 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/links/case_insensitive.text: -------------------------------------------------------------------------------- 1 | This is [google]. [Google] and [this][GoOgLe] are the same thing too 2 | 3 | [GOOGLE]: http://google.com 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/links/implicit.text: -------------------------------------------------------------------------------- 1 | These [links][] use [implicit] references. 2 | 3 | [links]: http://links.com 4 | [implicit]: http://implicit.com 5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/links/inline.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["p", 3 | "An ", 4 | ["a", 5 | { "href" : "http://inline.com" }, 6 | "inline" 7 | ], 8 | " link." 9 | ] 10 | ] 11 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/links/inline.text: -------------------------------------------------------------------------------- 1 | An [inline](http://inline.com) link. 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/links/inline_with_newline.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["p", 3 | "An ", 4 | ["a", 5 | { "href" : "http://inline.com" }, 6 | "inline\nlink" 7 | ], 8 | " with a newline." 9 | ] 10 | ] 11 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/links/inline_with_newline.text: -------------------------------------------------------------------------------- 1 | An [inline 2 | link](http://inline.com) with a newline. 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/links/inline_with_title.text: -------------------------------------------------------------------------------- 1 | An [inline link](http://inline.com "le title") with a title. 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/links/missing_references.text: -------------------------------------------------------------------------------- 1 | Link with [missing][id] reference 2 | 3 | Link with [empty][] reference 4 | 5 | Link with [inferred] reference 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/links/parens_escaped_inline.text: -------------------------------------------------------------------------------- 1 | [Inline link](/url\(test\) "title") with escaped parens. 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/links/parens_inline.text: -------------------------------------------------------------------------------- 1 | [Inline link](/url(test) "title") with non-escaped parens. 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/links/parens_reference.text: -------------------------------------------------------------------------------- 1 | [Reference link][1] with non-escaped parens. 2 | 3 | [1]: /url(test) "title" 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/links/ref_reuse.text: -------------------------------------------------------------------------------- 1 | Two [links][id], one [ref][id] 2 | 3 | [id]: http://google.com 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/links/reference.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["p", 3 | "A ", 4 | ["a", 5 | { "href" : "http://reference.com" }, 6 | "link using a reference" 7 | ], 8 | "." 9 | ] 10 | ] 11 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/links/reference.text: -------------------------------------------------------------------------------- 1 | A [link using a reference][1]. 2 | 3 | [1]: http://reference.com 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/links/reference_with_space.text: -------------------------------------------------------------------------------- 1 | A [link using a reference] [1] separated by a space. 2 | 3 | [1]: http://reference.com 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/lists/bullet_types.text: -------------------------------------------------------------------------------- 1 | Stars 2 | 3 | * star 4 | 5 | Dashes 6 | 7 | - dash 8 | 9 | Pluses 10 | 11 | + plus 12 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/lists/hr_abutting.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["ul", 3 | [ "li", "foo" ], 4 | [ "li", "bar" ], 5 | ], 6 | ["hr"], 7 | ["p", "after"] 8 | ] 9 | 10 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/lists/hr_abutting.text: -------------------------------------------------------------------------------- 1 | * foo 2 | * bar 3 | 4 | * * * 5 | after 6 | 7 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/lists/hr_inside.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["ul", 3 | [ "li", 4 | ["p", "before"], 5 | ["hr"], 6 | ["p", "after"], 7 | ] 8 | ] 9 | ] 10 | 11 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/lists/hr_inside.text: -------------------------------------------------------------------------------- 1 | * before 2 | 3 | - - - - 4 | after 5 | 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/lists/lazy_wrapping.text: -------------------------------------------------------------------------------- 1 | * If you're too 2 | lazy to wrap your 3 | * Lists nicely, this 4 | will still work 5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/lists/leading_whitespace.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["ul", 3 | ["li", 4 | "white" 5 | ], 6 | ["li", 7 | "space" 8 | ] 9 | ] 10 | ] 11 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/lists/leading_whitespace.text: -------------------------------------------------------------------------------- 1 | * white 2 | * space 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/lists/loose_with_inline.text: -------------------------------------------------------------------------------- 1 | * List item _ending_ 2 | with _emphasis_. 3 | 4 | * List item 5 | with **strong emphasis**. 6 | 7 | * List item 8 | with [a link](http://google.com). 9 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/lists/multiline_inline.text: -------------------------------------------------------------------------------- 1 | * List items can have *inline content 2 | that spans multiple lines*. Pain 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/lists/nested.text: -------------------------------------------------------------------------------- 1 | 1. one 2 | * alpha 3 | - almond 4 | - brazil 5 | * beta 6 | - cashew 7 | 2. two 8 | 3. three 9 | * gamma 10 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/lists/numeric.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["ol", 3 | ["li", 4 | "one" 5 | ], 6 | ["li", 7 | "two" 8 | ], 9 | ["li", 10 | "three" 11 | ] 12 | ] 13 | ] 14 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/lists/numeric.text: -------------------------------------------------------------------------------- 1 | 1. one 2 | 2. two 3 | 3. three 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/lists/tight.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["ul", 3 | ["li", 4 | "alpha" 5 | ], 6 | ["li", 7 | "beta" 8 | ], 9 | ["li", 10 | "gamma" 11 | ] 12 | ] 13 | ] 14 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/lists/tight.text: -------------------------------------------------------------------------------- 1 | * alpha 2 | * beta 3 | * gamma 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/meta/attribute.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["p", 3 | { "foo" : "bar" }, 4 | "A paragraph with an\narbitrary attribute." 5 | ] 6 | ] 7 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/meta/attribute.text: -------------------------------------------------------------------------------- 1 | A paragraph with an 2 | arbitrary attribute. 3 | {: foo=bar} 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/meta/class.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["p", 3 | { "class" : "para" }, 4 | "This is a paragraph\nwith an ID." 5 | ] 6 | ] 7 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/meta/class.text: -------------------------------------------------------------------------------- 1 | This is a paragraph 2 | with an ID. 3 | {: .para} 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/meta/code.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["pre", 3 | { "class" : "foo" }, 4 | ["code", 5 | "a code block;\n\nwith multiple lines;\n\nand a class;" 6 | ] 7 | ] 8 | ] 9 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/meta/code.text: -------------------------------------------------------------------------------- 1 | a code block; 2 | 3 | with multiple lines; 4 | 5 | and a class; 6 | {: .foo} 7 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/meta/document.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | { 3 | "key" : "value", 4 | "anotherkey" : "another value" 5 | }, 6 | ["p", 7 | "A regular paragraph" 8 | ] 9 | ] 10 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/meta/document.text: -------------------------------------------------------------------------------- 1 | Key: value 2 | AnotherKey: another value 3 | 4 | A regular paragraph 5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/meta/id.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["p", 3 | { "id" : "para" }, 4 | "This is a paragraph\nwith an ID." 5 | ] 6 | ] 7 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/meta/id.text: -------------------------------------------------------------------------------- 1 | This is a paragraph 2 | with an ID. 3 | {: #para} 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/meta/inline.text: -------------------------------------------------------------------------------- 1 | An *em*{: .foo} and **strong**{: .bar} 2 | with attached attributes. 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/meta/inner_whitespace.text: -------------------------------------------------------------------------------- 1 | We can have no whitespace 2 | {:#none} 3 | 4 | Or a single whitespace 5 | {: #one } 6 | 7 | And even lots of whitespace 8 | {: #lots } 9 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/meta/leading_whitespace.text: -------------------------------------------------------------------------------- 1 | Zero 2 | {: #zero} 3 | 4 | One 5 | {: #one} 6 | 7 | Two 8 | {: #two} 9 | 10 | Three 11 | {: #three} 12 | 13 | Four 14 | {: #four} 15 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/meta/list.text: -------------------------------------------------------------------------------- 1 | * here's a 2 | loose list 3 | 4 | * it might confuse the 5 | block_meta routine 6 | {: #list} 7 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/meta/multiple_classes.text: -------------------------------------------------------------------------------- 1 | Here's a paragraph and 2 | an *em*{: .foo .bar} 3 | with multiple classes 4 | {: .foo .bar} 5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/meta/quoted.json: -------------------------------------------------------------------------------- 1 | ["html", 2 | ["p", 3 | { "foo" : "bar baz" }, 4 | "A paragraph with a\nquoted attribute." 5 | ] 6 | ] 7 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/features/meta/quoted.text: -------------------------------------------------------------------------------- 1 | A paragraph with a 2 | quoted attribute. 3 | {: foo="bar baz"} 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/Markdown-from-MDTest1.1.mdtest/Literal_quotes_in_titles.text: -------------------------------------------------------------------------------- 1 | Foo [bar][]. 2 | 3 | Foo [bar](/url/ "Title with "quotes" inside"). 4 | 5 | 6 | [bar]: /url/ "Title with "quotes" inside" 7 | 8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/Markdown-from-MDTest1.1.mdtest/Nested_blockquotes.json: -------------------------------------------------------------------------------- 1 | ["html", ["blockquote", ["p", "foo"], 2 | ["blockquote", ["p", "bar"]], 3 | ["p", "foo"]]] 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/Markdown-from-MDTest1.1.mdtest/Nested_blockquotes.text: -------------------------------------------------------------------------------- 1 | > foo 2 | > 3 | > > bar 4 | > 5 | > foo 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/Markdown-from-MDTest1.1.mdtest/Nested_blockquotes.xhtml: -------------------------------------------------------------------------------- 1 |
      2 |

      foo

      3 | 4 |
      5 |

      bar

      6 |
      7 | 8 |

      foo

      9 |
      10 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/Markdown-from-MDTest1.1.mdtest/Strong_and_em_together.text: -------------------------------------------------------------------------------- 1 | ***This is strong and em.*** 2 | 3 | So is ***this*** word. 4 | 5 | ___This is strong and em.___ 6 | 7 | So is ___this___ word. 8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/Markdown-from-MDTest1.1.mdtest/Tidyness.json: -------------------------------------------------------------------------------- 1 | ["html", ["blockquote", ["p", "A list within a blockquote:"], 2 | ["ul", ["li", "asterisk 1"], 3 | ["li", "asterisk 2"], 4 | ["li", "asterisk 3"]]]] 5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/Markdown-from-MDTest1.1.mdtest/Tidyness.text: -------------------------------------------------------------------------------- 1 | > A list within a blockquote: 2 | > 3 | > * asterisk 1 4 | > * asterisk 2 5 | > * asterisk 3 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/Markdown-from-MDTest1.1.mdtest/Tidyness.xhtml: -------------------------------------------------------------------------------- 1 |
      2 |

      A list within a blockquote:

      3 |
        4 |
      • asterisk 1
      • 5 |
      • asterisk 2
      • 6 |
      • asterisk 3
      • 7 |
      8 |
      9 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/PHP_Markdown-from-MDTest1.1.mdtest/Backslash_escapes.text: -------------------------------------------------------------------------------- 1 | Tricky combinaisons: backslash with \\-- two dashes backslash with \\> greater than \\\[test](not a link) \\\*no emphasis* -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/PHP_Markdown-from-MDTest1.1.mdtest/Backslash_escapes.xhtml: -------------------------------------------------------------------------------- 1 |

      Tricky combinaisons:

      backslash with \-- two dashes

      backslash with \> greater than

      \[test](not a link)

      \*no emphasis*

      -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/PHP_Markdown-from-MDTest1.1.mdtest/Code_Spans.text: -------------------------------------------------------------------------------- 1 | From `` 2 | on two lines. 3 | 4 | From `` 6 | on three lines. 7 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/PHP_Markdown-from-MDTest1.1.mdtest/Code_block_in_a_list_item.text: -------------------------------------------------------------------------------- 1 | 2 | * List Item: 3 | 4 | code block 5 | 6 | with a blank line 7 | 8 | within a list item. -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/PHP_Markdown-from-MDTest1.1.mdtest/Email_auto_links.text: -------------------------------------------------------------------------------- 1 | 2 | 3 | International domain names: -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/PHP_Markdown-from-MDTest1.1.mdtest/Inline_HTML_comments.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", "Paragraph one."], "\u000a\u000a", "\u000a\u000a", ["p", "Paragraph two."], "\u000a\u000a", "\u000a\u000a", ["p", "The end."]] 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/PHP_Markdown-from-MDTest1.1.mdtest/Links_inline_style.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", ["a", { 2 | "href": "?}]*+|&)" 3 | }, 4 | "silly URL w/ angle brackets"], "."]] 5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/PHP_Markdown-from-MDTest1.1.mdtest/Links_inline_style.text: -------------------------------------------------------------------------------- 1 | [silly URL w/ angle brackets](). 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/PHP_Markdown-from-MDTest1.1.mdtest/Links_inline_style.xhtml: -------------------------------------------------------------------------------- 1 |

      silly URL w/ angle brackets.

      2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/PHP_Markdown-from-MDTest1.1.mdtest/Nesting.text: -------------------------------------------------------------------------------- 1 | Valid nesting: 2 | 3 | **[Link](url)** 4 | 5 | [**Link**](url) 6 | 7 | **[**Link**](url)** 8 | 9 | Invalid nesting: 10 | 11 | [[Link](url)](url) -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/Text-Markdown.mdtest/CoreDumps5.8.json: -------------------------------------------------------------------------------- 1 | ["html", ["ul", ["li", "Unordered\u000a", ["ol", ["li", "Ordered"]]]], 2 | ["p", "Text"], 3 | ["ul", ["li", "Unordered\u000a", ["ol", ["li", "Ordered"]]]]] 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/Text-Markdown.mdtest/CoreDumps5.8.text: -------------------------------------------------------------------------------- 1 | * Unordered 2 | 1. Ordered 3 | 4 | Text 5 | 6 | * Unordered 7 | 1. Ordered 8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/Text-Markdown.mdtest/HTML5-attributes.html: -------------------------------------------------------------------------------- 1 |

      foo

      2 | 3 |

      4 | this is a paragraph 5 |

      6 | 7 |

      8 | an h2 9 |

      10 | 11 |

      normal

      12 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/Text-Markdown.mdtest/HTML5-attributes.text: -------------------------------------------------------------------------------- 1 |

      foo

      2 | 3 |

      4 | this is a paragraph 5 |

      6 | 7 |

      8 | an h2 9 |

      10 | 11 | normal 12 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/Text-Markdown.mdtest/Links_brackets.text: -------------------------------------------------------------------------------- 1 | [ZIP archives](http://en.wikipedia.org/wiki/ZIP_(file_format) "ZIP (file format) - Wikipedia, the free encyclopedia") 2 | 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/Text-Markdown.mdtest/Links_brackets.xhtml: -------------------------------------------------------------------------------- 1 |

      ZIP archives

      2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/Text-Markdown.mdtest/Links_multiline_bugs_1.html: -------------------------------------------------------------------------------- 1 |

      http://bugs.debian.org/459885

      2 | 3 |

      link 4 | text

      5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/Text-Markdown.mdtest/Links_multiline_bugs_1.text: -------------------------------------------------------------------------------- 1 | 2 | 3 | [link 4 | text] [link 5 | id] 6 | 7 | [link id]: /someurl/ 8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/Text-Markdown.mdtest/Unicode.json: -------------------------------------------------------------------------------- 1 | ["html", ["blockquote", ["p", "Fo—o"]], 2 | ["p", "μορεοϋερ"], 3 | ["blockquote", ["p", "ßåř"]]] 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/Text-Markdown.mdtest/Unicode.text: -------------------------------------------------------------------------------- 1 | > Fo—o 2 | 3 | μορεοϋερ 4 | 5 | > ßåř 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/Text-Markdown.mdtest/Unicode.xhtml: -------------------------------------------------------------------------------- 1 |
      2 |

      Fo—o

      3 |
      4 | 5 |

      μορεοϋερ

      6 | 7 |
      8 |

      ßåř

      9 |
      10 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/alt.html: -------------------------------------------------------------------------------- 1 |

      bar

      2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/alt.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", ["img", { 2 | "src": "/foo.jpg", 3 | "alt": "bar" 4 | }]]] 5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/alt.text: -------------------------------------------------------------------------------- 1 | ![bar](/foo.jpg) 2 | 3 | 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/blank.html: -------------------------------------------------------------------------------- 1 |

      Linea 1

      2 | 3 |

      Linea 2

      4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/blank.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", "Linea 1"], 2 | ["p", "Linea 2"]] 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/blank.text: -------------------------------------------------------------------------------- 1 | 2 | Linea 1 3 | 4 | Linea 2 5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/bug_def.html: -------------------------------------------------------------------------------- 1 |

      test:

      2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/bug_def.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", ["span", "test"], ":"]] 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/bug_def.text: -------------------------------------------------------------------------------- 1 | [test][]: 2 | 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/code.html: -------------------------------------------------------------------------------- 1 |

      Here is an example of AppleScript:

      2 | 3 |
      tell application "Foo"
      4 |     beep
      5 | end tell
      6 | 	tab
      7 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/code.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", "Here is an example of AppleScript:"], 2 | ["pre", ["code", "tell application \"Foo\"\u000a beep\u000aend tell\u000a\u0009tab"]]] 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/code.text: -------------------------------------------------------------------------------- 1 | Here is an example of AppleScript: 2 | 3 | tell application "Foo" 4 | beep 5 | end tell 6 | tab 7 | 8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/code2.html: -------------------------------------------------------------------------------- 1 |
      2 |

      Code

      3 | 4 |
      Ciao
      5 |
      6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/code2.json: -------------------------------------------------------------------------------- 1 | ["html", ["blockquote", ["p", "Code"], 2 | ["pre", ["code", "Ciao"]]]] 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/code2.text: -------------------------------------------------------------------------------- 1 | > Code 2 | > 3 | > Ciao 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/data_loss.html: -------------------------------------------------------------------------------- 1 |
        2 |
      1. abcd efgh ijkl
      2. 3 |
      4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/data_loss.json: -------------------------------------------------------------------------------- 1 | ["html", ["ol", ["li", "abcd efgh ijkl"]]] 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/data_loss.text: -------------------------------------------------------------------------------- 1 | 1. abcd 2 | efgh 3 | ijkl 4 | 5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/easy.html: -------------------------------------------------------------------------------- 1 |

      Hello! how are you?

      2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/easy.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", ["em", "Hello!"], " how are ", ["strong", "you"], "?"]] 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/easy.text: -------------------------------------------------------------------------------- 1 | *Hello!* how are **you**? 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/email.html: -------------------------------------------------------------------------------- 1 |

      This is an email address: andrea@invalid.it

      2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/email.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", "This is an email address: ", ["a", { 2 | "href": "mailto:andrea@invalid.it" 3 | }, 4 | "andrea@invalid.it"]]] 5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/email.text: -------------------------------------------------------------------------------- 1 | 2 | 3 | This is an email address: 4 | 5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/extra_table1.text: -------------------------------------------------------------------------------- 1 | CSS: style.css 2 | 3 | First Header | Second Header 4 | ------------- | ------------- 5 | Content Cell | Content Cell 6 | Content Cell | Content Cell 7 | 8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/hrule.html: -------------------------------------------------------------------------------- 1 |




      2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/hrule.json: -------------------------------------------------------------------------------- 1 | ["html", ["hr"], 2 | ["hr"], 3 | ["hr"], 4 | ["hr"], 5 | ["hr"], "\u000a"] 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/hrule.text: -------------------------------------------------------------------------------- 1 | * * * 2 | 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/html2.html: -------------------------------------------------------------------------------- 1 |

      One

      123

      2 |
      3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/html2.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", "One ", ["div"], "123"], "\u000a", ["div"], "\u000a"] 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/html2.text: -------------------------------------------------------------------------------- 1 | One 2 |
      123 3 | 4 |
      123 5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/images2.html: -------------------------------------------------------------------------------- 1 |

      This is an image.

      2 | 3 |

      This is an image.

      4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/images2.text: -------------------------------------------------------------------------------- 1 | 2 | This is an ![image][]. 3 | 4 | This is an ![image]. 5 | 6 | [image]: image.jpg 7 | 8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/inline_html2.html: -------------------------------------------------------------------------------- 1 |
      2 |

      Test bold

      3 |

      Test bold

      4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/inline_html2.json: -------------------------------------------------------------------------------- 1 | ["html", ["div", ["p", "Test ", ["strong", "bold"]]], 2 | ["p", "Test ", ["strong", "bold"]]] 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/inline_html2.text: -------------------------------------------------------------------------------- 1 |
      Test **bold**
      2 |

      Test **bold**

      3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/list1.html: -------------------------------------------------------------------------------- 1 |
        2 |
      • 3 |

        A list item with a blockquote:

        4 | 5 |
        6 |

        This is a blockquote inside a list item.

        7 |
        8 |
      • 9 |
      10 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/list1.json: -------------------------------------------------------------------------------- 1 | ["html", ["ul", ["li", ["p", "A list item with a blockquote:"], 2 | ["blockquote", ["p", "This is a blockquote inside a list item."]]]]] 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/list1.text: -------------------------------------------------------------------------------- 1 | * A list item with a blockquote: 2 | 3 | > This is a blockquote 4 | > inside a list item. 5 | 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/list3.text: -------------------------------------------------------------------------------- 1 | * A list item with a blockquote: 2 | 3 | > This is a blockquote 4 | > inside a list item. 5 | 6 | * A list item with a code block: 7 | 8 | 9 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/lists11.html: -------------------------------------------------------------------------------- 1 |

      - ένα

      2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/lists11.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", "- ένα"]] 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/lists11.text: -------------------------------------------------------------------------------- 1 | - ένα 2 | 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/lists6.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/lists6.json: -------------------------------------------------------------------------------- 1 | ["html"] 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/lists6.text: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/lists7.html: -------------------------------------------------------------------------------- 1 |

      Ciao

      2 | 3 |
        4 |
      • Tab * Tab * Tab
      • 5 |
      6 |

      Ciao

      7 | 8 |
        9 |
      • Tab * Tab * Tab
      • 10 |
      11 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/lists7.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", "Ciao"], 2 | ["ul", ["li", "Tab * Tab * Tab"]], 3 | ["p", "Ciao"], 4 | ["ul", ["li", "Tab * Tab * Tab"]]] 5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/lists7.text: -------------------------------------------------------------------------------- 1 | Ciao 2 | 3 | * Tab 4 | * Tab 5 | * Tab 6 | 7 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/lists7b.text: -------------------------------------------------------------------------------- 1 | * a 2 | * a1 3 | * a2 4 | * b 5 | 6 | 7 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/lists8.text: -------------------------------------------------------------------------------- 1 | Here is a paragraph. 2 | 3 | 4 | * Item 1 5 | * Item 2 6 | * Item 3 7 | 8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/lists9.json: -------------------------------------------------------------------------------- 1 | ["html", ["ul", ["li", ["p", "Due"], 2 | ["ol", ["li", "tre"], 3 | ["li", "tre"], 4 | ["li", "tre"]]], 5 | ["li", ["p", "Due"]]]] 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/lists9.text: -------------------------------------------------------------------------------- 1 | - Due 2 | 1. tre 3 | 1. tre 4 | 1. tre 5 | - Due 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/loss.html: -------------------------------------------------------------------------------- 1 |
      2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/loss.json: -------------------------------------------------------------------------------- 1 | ["html", ["br"], "\u000a"] 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/loss.text: -------------------------------------------------------------------------------- 1 |
      123 2 | 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/olist.html: -------------------------------------------------------------------------------- 1 |

      This is a list:

      2 | 3 |
        4 |
      1. one
      2. 5 | 6 |
      3. two
      4. 7 | 8 |
      5. three
      6. 9 |
      10 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/olist.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", "This is a list:"], 2 | ["ol", ["li", "one"], 3 | ["li", "two"], 4 | ["li", "three"]]] 5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/olist.text: -------------------------------------------------------------------------------- 1 | This is a list: 2 | 3 | 2. one 4 | 2. two 5 | 3. three 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/one.html: -------------------------------------------------------------------------------- 1 |

      One line

      2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/one.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", "One line"]] 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/one.text: -------------------------------------------------------------------------------- 1 | One line 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/paragraph.html: -------------------------------------------------------------------------------- 1 |

      Paragraph

      2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/paragraph.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", "Paragraph"]] 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/paragraph.text: -------------------------------------------------------------------------------- 1 | Paragraph 2 | 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/paragraphs.html: -------------------------------------------------------------------------------- 1 |

      Paragraph 1

      2 | 3 |

      Paragraph 2

      4 | 5 |

      Paragraph 3 Paragraph 4 Paragraph Br->
      Paragraph 5

      6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/paragraphs.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", "Paragraph 1"], 2 | ["p", "Paragraph 2"], 3 | ["p", "Paragraph 3 Paragraph 4 Paragraph Br->", ["br"], "Paragraph 5"]] 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/paragraphs.text: -------------------------------------------------------------------------------- 1 | Paragraph 1 2 | 3 | Paragraph 2 4 | 5 | 6 | Paragraph 3 7 | Paragraph 4 8 | Paragraph Br-> 9 | Paragraph 5 10 | 11 | 12 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/test.html: -------------------------------------------------------------------------------- 1 |
             $ python       
      2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/test.json: -------------------------------------------------------------------------------- 1 | ["html", ["pre", ["code", " $ python "]]] 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/test.text: -------------------------------------------------------------------------------- 1 | 2 | $ python 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/xml2.html: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/xml2.json: -------------------------------------------------------------------------------- 1 | ["html", "\u000a"] 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/xml2.text: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/xml3.html: -------------------------------------------------------------------------------- 1 | Blah 2 | 3 | 4 |
      em
      5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/xml3.json: -------------------------------------------------------------------------------- 1 | ["html", ["table", "Blah", ["thead", ["td", ["em", "em"]]]], "\u000a"] 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/xml3.text: -------------------------------------------------------------------------------- 1 | 2 | Blah 3 | 4 | 5 | 6 |
      *em*
      7 | 8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/xml_instruction.html: -------------------------------------------------------------------------------- 1 | 2 |

      Targets

      3 | 4 |

      Inside: last

      5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-maruku-unittest/xml_instruction.json: -------------------------------------------------------------------------------- 1 | ["html", "\u000a", ["p", "Targets ", " ", " "], 2 | ["p", "Inside: ", " last"]] 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-php-markdown-todo/Email_auto_links.text: -------------------------------------------------------------------------------- 1 | 2 | 3 | International domain names: -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-php-markdown-todo/Inline_HTML_(Span).text: -------------------------------------------------------------------------------- 1 | ACINACS 2 | 3 | SB 4 | SB -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-php-markdown-todo/Links_inline_style.html: -------------------------------------------------------------------------------- 1 |

      silly URL w/ angle brackets.

      2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-php-markdown-todo/Links_inline_style.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", ["a", { 2 | "href": "?}]*+|&)" 3 | }, 4 | "silly URL w/ angle brackets"], "."]] 5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-php-markdown-todo/Links_inline_style.text: -------------------------------------------------------------------------------- 1 | [silly URL w/ angle brackets](). 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-php-markdown-todo/Nesting.text: -------------------------------------------------------------------------------- 1 | Valid nesting: 2 | 3 | **[Link](url)** 4 | 5 | [**Link**](url) 6 | 7 | **[**Link**](url)** 8 | 9 | Invalid nesting: 10 | 11 | [[Link](url)](url) -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-php-markdown/Backslash_escapes.text: -------------------------------------------------------------------------------- 1 | Tricky combinaisons: backslash with \\-- two dashes backslash with \\> greater than \\\[test](not a link) \\\*no emphasis* -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-php-markdown/Code_Spans.html: -------------------------------------------------------------------------------- 1 |

      From <!-- to --> 2 | on two lines.

      3 | 4 |

      From <!-- 5 | to --> 6 | on three lines.

      7 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-php-markdown/Code_Spans.text: -------------------------------------------------------------------------------- 1 | From `` 2 | on two lines. 3 | 4 | From `` 6 | on three lines. 7 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-php-markdown/Code_block_in_a_list_item.text: -------------------------------------------------------------------------------- 1 | 2 | * List Item: 3 | 4 | code block 5 | 6 | with a blank line 7 | 8 | within a list item. -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-php-markdown/Images_(Untitled).html: -------------------------------------------------------------------------------- 1 |

      alt text

      2 | 3 |

      alt text

      4 | 5 |

      alt text

      6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-php-markdown/Images_(Untitled).text: -------------------------------------------------------------------------------- 1 | ![alt text](/url/) 2 | 3 | ![alt text]() 4 | 5 | ![alt text][foo] 6 | 7 | [foo]: /url/ -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-php-markdown/Inline_HTML_comments.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", "Paragraph one."], "\u000a\u000a", "\u000a\u000a", ["p", "Paragraph two."], "\u000a\u000a", "\u000a\u000a", ["p", "The end."]] 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-php-markdown/Inline_HTML_comments.text: -------------------------------------------------------------------------------- 1 | Paragraph one. 2 | 3 | 4 | 5 | Paragraph two. 6 | 7 | 8 | 9 | The end. 10 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/auto_link.text: -------------------------------------------------------------------------------- 1 | I can has autolink? 2 | 3 | Ask garfield: 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/auto_link_safe_mode.opts: -------------------------------------------------------------------------------- 1 | {'safe_mode': True} 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/auto_link_safe_mode.text: -------------------------------------------------------------------------------- 1 | I can has autolink? 2 | 3 | Ask garfield: 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/basic_safe_mode.html: -------------------------------------------------------------------------------- 1 |

      blah [HTML_REMOVED] blah

      2 | 3 |

      [HTML_REMOVED]yowzer![HTML_REMOVED]

      4 | 5 |

      blah

      6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/basic_safe_mode.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", "blah [HTML_REMOVED] blah"], 2 | ["p", "[HTML_REMOVED]yowzer![HTML_REMOVED]"], 3 | ["p", "blah"]] 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/basic_safe_mode.opts: -------------------------------------------------------------------------------- 1 | # Use the old (for-compat-only) way of specifying "replace" safe mode. 2 | {"safe_mode": True} 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/basic_safe_mode.text: -------------------------------------------------------------------------------- 1 | blah blah 2 | 3 |
      yowzer!
      4 | 5 | blah 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/basic_safe_mode_escape.html: -------------------------------------------------------------------------------- 1 |

      blah <img src="dangerous"> blah

      2 | 3 |

      <div>yowzer!</div>

      4 | 5 |

      blah

      6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/basic_safe_mode_escape.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", "blah blah"], 2 | ["p", "
      yowzer!
      "], 3 | ["p", "blah"]] 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/basic_safe_mode_escape.opts: -------------------------------------------------------------------------------- 1 | {"safe_mode": "escape"} 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/basic_safe_mode_escape.text: -------------------------------------------------------------------------------- 1 | blah blah 2 | 3 |
      yowzer!
      4 | 5 | blah 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/blockquote.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", "[Trent wrote]"], 2 | ["blockquote", ["p", "no way"]], 3 | ["p", "[Jeff wrote]"], 4 | ["blockquote", ["p", "way"]]] 5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/blockquote.text: -------------------------------------------------------------------------------- 1 | [Trent wrote] 2 | > no way 3 | 4 | [Jeff wrote] 5 | > way 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/code_block_with_tabs.html: -------------------------------------------------------------------------------- 1 |

      Test with tabs for _Detab:

      2 | 3 |
      Code    'block' with    some    "tabs"  and "quotes"
      4 | 
      5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/code_block_with_tabs.text: -------------------------------------------------------------------------------- 1 | Test with tabs for `_Detab`: 2 | 3 | Code 'block' with some "tabs" and "quotes" 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/code_safe_emphasis.html: -------------------------------------------------------------------------------- 1 |

      This is italic and this is bold. 2 | This is NOT _italic_ and this is __bold__ because --code-safe is turned on.

      3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/code_safe_emphasis.opts: -------------------------------------------------------------------------------- 1 | {"extras": ["code-friendly"]} 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/code_safe_emphasis.text: -------------------------------------------------------------------------------- 1 | This is *italic* and this is **bold**. 2 | This is NOT _italic_ and this is __bold__ because --code-safe is turned on. 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/codeblock.html: -------------------------------------------------------------------------------- 1 |
      some code
      2 | 
      3 | 4 |

      some 'splaining

      5 | 6 |
      some more code
      7 | 2 > 1
      8 | 
      9 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/codeblock.json: -------------------------------------------------------------------------------- 1 | ["html", ["pre", ["code", "some code\u000a"]], 2 | ["p", "some 'splaining"], 3 | ["pre", ["code", "some more code\u000a2 > 1\u000a"]]] 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/codeblock.text: -------------------------------------------------------------------------------- 1 | some code 2 | 3 | some 'splaining 4 | 5 | some more code 6 | 2 > 1 7 | 8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/codespans.html: -------------------------------------------------------------------------------- 1 |

      This is a code span. 2 | And This is one with an `embedded backtick`.

      3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/codespans.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", ["code", "This"], " is a code span.\u000aAnd ", ["code", "This is one with an `embedded backtick`"], "."]] 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/codespans.text: -------------------------------------------------------------------------------- 1 | `This` is a code span. 2 | And ``This is one with an `embedded backtick` ``. 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/codespans_safe_mode.html: -------------------------------------------------------------------------------- 1 |

      This is a code span. 2 | And This is one with an `embedded backtick`.

      3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/codespans_safe_mode.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", ["code", "This"], " is a code span.\u000aAnd ", ["code", "This is one with an `embedded backtick`"], "."]] 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/codespans_safe_mode.opts: -------------------------------------------------------------------------------- 1 | {'safe_mode': True} 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/codespans_safe_mode.text: -------------------------------------------------------------------------------- 1 | `This` is a code span. 2 | And ``This is one with an `embedded backtick` ``. 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/emacs_head_vars.json: -------------------------------------------------------------------------------- 1 | ["html", "\u000a\u000a", ["p", "This sentence talks about the Python __init__ method, which I'd rather not be\u000ainterpreted as Markdown's strong."]] 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/emphasis.html: -------------------------------------------------------------------------------- 1 |

      This is italic and this is bold. 2 | This is also italic and this is bold.

      3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/emphasis.text: -------------------------------------------------------------------------------- 1 | This is *italic* and this is **bold**. 2 | This is also _italic_ and this is __bold__. 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/escapes.html: -------------------------------------------------------------------------------- 1 |

      **don't shout**

      2 | 3 |

      *don't emphasize*

      4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/escapes.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", "**don't shout**"], 2 | ["p", "*don't emphasize*"]] 3 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/escapes.text: -------------------------------------------------------------------------------- 1 | \*\*don't shout\*\* 2 | 3 | \*don't emphasize\* 4 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/footnotes.opts: -------------------------------------------------------------------------------- 1 | {"extras": ["footnotes"]} 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/footnotes_letters.opts: -------------------------------------------------------------------------------- 1 | {"extras": ["footnotes"]} 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/footnotes_markup.opts: -------------------------------------------------------------------------------- 1 | {"extras": ["footnotes"]} 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/footnotes_safe_mode_escape.opts: -------------------------------------------------------------------------------- 1 | {"safe_mode": "escape", "extras": ["footnotes"]} 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/header.html: -------------------------------------------------------------------------------- 1 |

      an h1

      2 | 3 |

      an h2

      4 | 5 |

      another h1

      6 | 7 |

      another h2

      8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/header.json: -------------------------------------------------------------------------------- 1 | ["html", ["h1", "an h1"], "\u000a\u000a", ["h2", "an h2"], "\u000a\u000a", ["h1", "another h1"], "\u000a\u000a", ["h2", "another h2"], "\u000a"] 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/header.text: -------------------------------------------------------------------------------- 1 | # an h1 2 | 3 | ## an h2 4 | 5 | another h1 6 | ========== 7 | 8 | another h2 9 | ---------- 10 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/hr.html: -------------------------------------------------------------------------------- 1 |

      Dashes:

      2 | 3 |
      4 | 5 |
      6 | 7 |
      8 | 9 |
      10 | 11 |
      ---
      12 | 
      13 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/hr.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", "Dashes:"], "\u000a\u000a", ["hr"], "\u000a\u000a", ["hr"], "\u000a\u000a", ["hr"], "\u000a\u000a", ["hr"], "\u000a\u000a", ["pre", ["code", "---\u000a"]]] 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/hr.text: -------------------------------------------------------------------------------- 1 | Dashes: 2 | 3 | --- 4 | 5 | --- 6 | 7 | --- 8 | 9 | --- 10 | 11 | --- 12 | 13 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/inline_links.text: -------------------------------------------------------------------------------- 1 | an inline [link](/url/) 2 | 3 | a [link "with" title](/url/ "title") 4 | 5 | an inline ![image link](/url/) 6 | 7 | an ![image "with" title](/url/ "title") 8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/issue2_safe_mode_borks_markup.opts: -------------------------------------------------------------------------------- 1 | {"safe_mode": "replace"} 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/issue2_safe_mode_borks_markup.text: -------------------------------------------------------------------------------- 1 | ## Heading 2 2 | 3 | blah **blah** 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/link_patterns.text: -------------------------------------------------------------------------------- 1 | Recipe 123 and Komodo bug 234 are related. 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/link_patterns_double_hit.text: -------------------------------------------------------------------------------- 1 | There once was a Mozilla bug 123 and a Komodo bug 123. 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/link_patterns_edge_cases.html: -------------------------------------------------------------------------------- 1 |

      Blah 123 becomes a line with two underscores.

      2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/link_patterns_edge_cases.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", ["a", { 2 | "href": "http://foo.com/blah_blah_blah/123" 3 | }, 4 | "Blah 123"], " becomes a line with two underscores."]] 5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/link_patterns_edge_cases.text: -------------------------------------------------------------------------------- 1 | Blah 123 becomes a line with two underscores. 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/lists.text: -------------------------------------------------------------------------------- 1 | count: 2 | 3 | * one 4 | * two 5 | * three 6 | 7 | count in spanish: 8 | 9 | 1. uno 10 | 2. dos 11 | 3. tres 12 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/mismatched_footnotes.opts: -------------------------------------------------------------------------------- 1 | {"extras": ["footnotes"]} 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/missing_link_defn.html: -------------------------------------------------------------------------------- 1 |

      This is a [missing link][missing] and a used link.

      2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/missing_link_defn.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", "This is a [missing link][missing] and a ", ["a", { 2 | "href": "http://foo.com" 3 | }, 4 | "used link"], "."]] 5 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/missing_link_defn.text: -------------------------------------------------------------------------------- 1 | 2 | This is a [missing link][missing] and a [used link][used]. 3 | 4 | 5 | [used]: http://foo.com 6 | [unused]: http://foo.com 7 | 8 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/nested_list.text: -------------------------------------------------------------------------------- 1 | shopping list: 2 | 3 | - veggies 4 | + carrots 5 | + lettuce 6 | - fruits 7 | + oranges 8 | + apples 9 | + *peaches* 10 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/nested_list_safe_mode.opts: -------------------------------------------------------------------------------- 1 | {'safe_mode': True} 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/parens_in_url_4.html: -------------------------------------------------------------------------------- 1 |

      Inline link 4 with non-escaped parens.

      2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/parens_in_url_4.json: -------------------------------------------------------------------------------- 1 | ["html", ["p", ["a", { 2 | "href": "/url(test)", 3 | "title": "title" 4 | }, 5 | "Inline link 4 with non-escaped parens"], "."]] 6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/parens_in_url_4.text: -------------------------------------------------------------------------------- 1 | [Inline link 4 with non-escaped parens]( "title"). 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/raw_html.html: -------------------------------------------------------------------------------- 1 |

      Hi, there. blah

      2 | 3 |
      4 | **ack** 5 |
      6 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/raw_html.text: -------------------------------------------------------------------------------- 1 | 2 | Hi, *there*. blah 3 | 4 |
      5 | **ack** 6 |
      7 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/ref_links.html: -------------------------------------------------------------------------------- 1 |

      Google is fast star.

      2 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/ref_links.text: -------------------------------------------------------------------------------- 1 | [Google][] is fast ![star][]. 2 | 3 | [google]: http://www.google.com/ 4 | [star]: /img/star.png 5 | 6 | 7 | -------------------------------------------------------------------------------- /lib/express/support/jade/support/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/syntax_color.opts: -------------------------------------------------------------------------------- 1 | {"extras": ["code-color"]} 2 | -------------------------------------------------------------------------------- /lib/express/support/jade/test/fixtures/invalid.jade: -------------------------------------------------------------------------------- 1 | ul 2 | li= foo 3 | li bar -------------------------------------------------------------------------------- /lib/express/support/jade/test/fixtures/layout.jade: -------------------------------------------------------------------------------- 1 | html 2 | body 3 | h1 Jade -------------------------------------------------------------------------------- /lib/express/test/fixtures/cool-layout.jade: -------------------------------------------------------------------------------- 1 | cool!= body -------------------------------------------------------------------------------- /lib/express/test/fixtures/dynamic-helpers.jade: -------------------------------------------------------------------------------- 1 | p #{session.name} #{lastName} #{foo()} -------------------------------------------------------------------------------- /lib/express/test/fixtures/foo.bar: -------------------------------------------------------------------------------- 1 | p This is actually jade :) -------------------------------------------------------------------------------- /lib/express/test/fixtures/hello.haml: -------------------------------------------------------------------------------- 1 | %p Hello World -------------------------------------------------------------------------------- /lib/express/test/fixtures/hello.jade: -------------------------------------------------------------------------------- 1 | p :( -------------------------------------------------------------------------------- /lib/express/test/fixtures/index.jade: -------------------------------------------------------------------------------- 1 | p Welcome -------------------------------------------------------------------------------- /lib/express/test/fixtures/invalid.jade: -------------------------------------------------------------------------------- 1 | p= doesNotExist -------------------------------------------------------------------------------- /lib/express/test/fixtures/items.jade: -------------------------------------------------------------------------------- 1 | ul!= partial('item.jade', { collection: items }) -------------------------------------------------------------------------------- /lib/express/test/fixtures/layout.jade: -------------------------------------------------------------------------------- 1 | html 2 | body!= body -------------------------------------------------------------------------------- /lib/express/test/fixtures/layouts/foo.jade: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /lib/express/test/fixtures/movies.jade: -------------------------------------------------------------------------------- 1 | ul!= partial('movie', movies) -------------------------------------------------------------------------------- /lib/express/test/fixtures/partials/hello.ejs: -------------------------------------------------------------------------------- 1 | Hello -------------------------------------------------------------------------------- /lib/express/test/fixtures/partials/item.jade: -------------------------------------------------------------------------------- 1 | li= item -------------------------------------------------------------------------------- /lib/express/test/fixtures/partials/magic.jade: -------------------------------------------------------------------------------- 1 | - if (firstInCollection) 2 | li.first= word 3 | - else if (lastInCollection) 4 | li.last= word 5 | - else 6 | li(class: 'word-' + indexInCollection)= word -------------------------------------------------------------------------------- /lib/express/test/fixtures/partials/movie.jade: -------------------------------------------------------------------------------- 1 | li 2 | .title= movie.title 3 | .director= movie.director -------------------------------------------------------------------------------- /lib/express/test/fixtures/partials/person.jade: -------------------------------------------------------------------------------- 1 | p #{label} #{this.name} -------------------------------------------------------------------------------- /lib/express/test/fixtures/partials/user.jade: -------------------------------------------------------------------------------- 1 | p= person.name -------------------------------------------------------------------------------- /lib/express/test/fixtures/partials/video.jade: -------------------------------------------------------------------------------- 1 | p= director -------------------------------------------------------------------------------- /lib/express/test/fixtures/scope.jade: -------------------------------------------------------------------------------- 1 | p= this.method() -------------------------------------------------------------------------------- /lib/express/test/fixtures/sub-templates/item.jade: -------------------------------------------------------------------------------- 1 | li.item= item -------------------------------------------------------------------------------- /lib/express/test/fixtures/user.ejs: -------------------------------------------------------------------------------- 1 |

      {{= name }}

      2 |

      {{= email }}

      -------------------------------------------------------------------------------- /lib/express/test/fixtures/user.json: -------------------------------------------------------------------------------- 1 | {"name":"tj"} -------------------------------------------------------------------------------- /lib/express/test/fixtures/video.ejs: -------------------------------------------------------------------------------- 1 |

      -------------------------------------------------------------------------------- /lib/hoptoad-notifier/spec/unit/spec.helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/hoptoad-notifier/spec/unit/spec.helper.js -------------------------------------------------------------------------------- /lib/node-mongodb-native/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.swp 3 | *.seed 4 | -------------------------------------------------------------------------------- /lib/node-mongodb-native/external-libs/bson/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | bson.node 3 | .lock-wscript -------------------------------------------------------------------------------- /lib/node-mongodb-native/integration/test_gs_weird_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/node-mongodb-native/integration/test_gs_weird_bug.png -------------------------------------------------------------------------------- /lib/node-mongodb-native/integration/test_gs_working_field_read.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/node-mongodb-native/integration/test_gs_working_field_read.pdf -------------------------------------------------------------------------------- /lib/node-mongodb-native/spec/lib/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/node-mongodb-native/spec/lib/images/bg.png -------------------------------------------------------------------------------- /lib/node-mongodb-native/spec/lib/images/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/node-mongodb-native/spec/lib/images/hr.png -------------------------------------------------------------------------------- /lib/node-mongodb-native/spec/lib/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/node-mongodb-native/spec/lib/images/loading.gif -------------------------------------------------------------------------------- /lib/node-mongodb-native/spec/lib/images/sprites.bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/node-mongodb-native/spec/lib/images/sprites.bg.png -------------------------------------------------------------------------------- /lib/node-mongodb-native/spec/lib/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/node-mongodb-native/spec/lib/images/sprites.png -------------------------------------------------------------------------------- /lib/node-mongodb-native/spec/lib/images/vr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/node-mongodb-native/spec/lib/images/vr.png -------------------------------------------------------------------------------- /lib/nodeunit/img/example_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/nodeunit/img/example_fail.png -------------------------------------------------------------------------------- /lib/nodeunit/img/example_pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/lib/nodeunit/img/example_pass.png -------------------------------------------------------------------------------- /lib/nodeunit/index.js: -------------------------------------------------------------------------------- 1 | // This file is just added for convenience so this repository can be 2 | // directly checked out into a project's deps folder 3 | module.exports = require('./lib/nodeunit'); 4 | -------------------------------------------------------------------------------- /lib/nodeunit/test.js: -------------------------------------------------------------------------------- 1 | #!/usr/local/bin/node 2 | 3 | require.paths.push(__dirname); 4 | require.paths.push(__dirname + '/lib'); 5 | var testrunner = require('nodeunit').testrunner; 6 | 7 | process.chdir(__dirname); 8 | testrunner.run(['test']); 9 | -------------------------------------------------------------------------------- /lib/nodeunit/test/fixtures/dir/mock_module3.js: -------------------------------------------------------------------------------- 1 | exports.name = 'mock_module3'; 2 | -------------------------------------------------------------------------------- /lib/nodeunit/test/fixtures/dir/mock_module4.js: -------------------------------------------------------------------------------- 1 | exports.name = 'mock_module4'; 2 | -------------------------------------------------------------------------------- /lib/nodeunit/test/fixtures/mock_module1.js: -------------------------------------------------------------------------------- 1 | exports.name = 'mock_module1'; 2 | -------------------------------------------------------------------------------- /lib/nodeunit/test/fixtures/mock_module2.js: -------------------------------------------------------------------------------- 1 | exports.name = 'mock_module2'; 2 | -------------------------------------------------------------------------------- /lib/socket.io/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "lib/vendor/js-oo"] 2 | path = lib/vendor/js-oo 3 | url = git://github.com/visionmedia/js-oo.git 4 | [submodule "test/client"] 5 | path = test/client 6 | url = git://github.com/LearnBoost/Socket.IO.git 7 | -------------------------------------------------------------------------------- /lib/socket.io/lib/vendor/js-oo/Makefile: -------------------------------------------------------------------------------- 1 | 2 | RHINO = java org.mozilla.javascript.tools.shell.Main 3 | 4 | benchmark: benchmarks/benchmark.js 5 | @$(RHINO) benchmarks/benchmark.js 6 | 7 | test: 8 | @jspec run --rhino 9 | 10 | .PHONY: benchmark test -------------------------------------------------------------------------------- /lib/socket.io/lib/vendor/js-oo/spec/server.rb: -------------------------------------------------------------------------------- 1 | 2 | get '/lib/*' do |path| 3 | send_file File.dirname(__FILE__) + '/../lib/' + path 4 | end -------------------------------------------------------------------------------- /lib/socket.io/lib/vendor/js-oo/spec/spec.rhino.js: -------------------------------------------------------------------------------- 1 | 2 | load('/Library/Ruby/Gems/1.8/gems/jspec-2.11.13/lib/jspec.js') 3 | load('lib/oo.js') 4 | 5 | JSpec 6 | .exec('spec/spec.core.js') 7 | .run({ formatter : JSpec.formatters.Terminal }) 8 | .report() -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/favicon.ico -------------------------------------------------------------------------------- /public/images/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/bird.png -------------------------------------------------------------------------------- /public/images/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/blank.png -------------------------------------------------------------------------------- /public/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/empty.png -------------------------------------------------------------------------------- /public/images/filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/filled.png -------------------------------------------------------------------------------- /public/images/judges/Adeyemi_Ajao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Adeyemi_Ajao.jpg -------------------------------------------------------------------------------- /public/images/judges/Alex_Russell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Alex_Russell.jpg -------------------------------------------------------------------------------- /public/images/judges/Amit_Garg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Amit_Garg.jpg -------------------------------------------------------------------------------- /public/images/judges/Amrita_Thakur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Amrita_Thakur.jpg -------------------------------------------------------------------------------- /public/images/judges/Andrew_Hill.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Andrew_Hill.jpg -------------------------------------------------------------------------------- /public/images/judges/Andy_Brett.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Andy_Brett.jpg -------------------------------------------------------------------------------- /public/images/judges/Angus_Logan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Angus_Logan.jpg -------------------------------------------------------------------------------- /public/images/judges/Atul_Varma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Atul_Varma.jpg -------------------------------------------------------------------------------- /public/images/judges/Aza_Raskin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Aza_Raskin.jpg -------------------------------------------------------------------------------- /public/images/judges/Ben_Galbraith.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Ben_Galbraith.jpg -------------------------------------------------------------------------------- /public/images/judges/Brendan_Eich.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Brendan_Eich.jpg -------------------------------------------------------------------------------- /public/images/judges/Chad_Dyer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Chad_Dyer.jpg -------------------------------------------------------------------------------- /public/images/judges/Christopher_Williams.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Christopher_Williams.jpg -------------------------------------------------------------------------------- /public/images/judges/Conrad_Wai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Conrad_Wai.jpg -------------------------------------------------------------------------------- /public/images/judges/Daniel_Odio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Daniel_Odio.jpg -------------------------------------------------------------------------------- /public/images/judges/Danny_Coates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Danny_Coates.jpg -------------------------------------------------------------------------------- /public/images/judges/Dave_Baggeroer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Dave_Baggeroer.jpg -------------------------------------------------------------------------------- /public/images/judges/Dave_Johnson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Dave_Johnson.jpg -------------------------------------------------------------------------------- /public/images/judges/David_Goligorsky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/David_Goligorsky.jpg -------------------------------------------------------------------------------- /public/images/judges/David_Kaneda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/David_Kaneda.jpg -------------------------------------------------------------------------------- /public/images/judges/Davis_W_Frank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Davis_W_Frank.jpg -------------------------------------------------------------------------------- /public/images/judges/Devon_Govett.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Devon_Govett.jpg -------------------------------------------------------------------------------- /public/images/judges/Dion_Almaer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Dion_Almaer.jpg -------------------------------------------------------------------------------- /public/images/judges/Dmitry_Dimov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Dmitry_Dimov.jpg -------------------------------------------------------------------------------- /public/images/judges/Elad_Gil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Elad_Gil.jpg -------------------------------------------------------------------------------- /public/images/judges/Eliot_Horowitz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Eliot_Horowitz.jpg -------------------------------------------------------------------------------- /public/images/judges/Elizabeth_Cha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Elizabeth_Cha.jpg -------------------------------------------------------------------------------- /public/images/judges/Ethan_Anderson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Ethan_Anderson.jpg -------------------------------------------------------------------------------- /public/images/judges/Evan_Doll.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Evan_Doll.jpg -------------------------------------------------------------------------------- /public/images/judges/Ge_Wang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Ge_Wang.jpg -------------------------------------------------------------------------------- /public/images/judges/Gerad_Suyderhoud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Gerad_Suyderhoud.jpg -------------------------------------------------------------------------------- /public/images/judges/Guillermo_Rauch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Guillermo_Rauch.jpg -------------------------------------------------------------------------------- /public/images/judges/Hwan_Joon_Choi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Hwan_Joon_Choi.jpg -------------------------------------------------------------------------------- /public/images/judges/Isaac_Schlueter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Isaac_Schlueter.jpg -------------------------------------------------------------------------------- /public/images/judges/Jim_Goetz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Jim_Goetz.jpg -------------------------------------------------------------------------------- /public/images/judges/Joe_Hewitt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Joe_Hewitt.jpg -------------------------------------------------------------------------------- /public/images/judges/John_Resig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/John_Resig.jpg -------------------------------------------------------------------------------- /public/images/judges/John_Woodell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/John_Woodell.jpg -------------------------------------------------------------------------------- /public/images/judges/Jolie_O_Dell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Jolie_O_Dell.jpg -------------------------------------------------------------------------------- /public/images/judges/Kimber_Lockhart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Kimber_Lockhart.jpg -------------------------------------------------------------------------------- /public/images/judges/Kyle_Cordes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Kyle_Cordes.jpg -------------------------------------------------------------------------------- /public/images/judges/Malte_Ubl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Malte_Ubl.jpg -------------------------------------------------------------------------------- /public/images/judges/Marcel_Laverdet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Marcel_Laverdet.jpg -------------------------------------------------------------------------------- /public/images/judges/Mary_Glide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Mary_Glide.jpg -------------------------------------------------------------------------------- /public/images/judges/Matt_Ranney.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Matt_Ranney.jpg -------------------------------------------------------------------------------- /public/images/judges/Matt_Soldo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Matt_Soldo.jpg -------------------------------------------------------------------------------- /public/images/judges/Matthew_Eernisse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Matthew_Eernisse.jpg -------------------------------------------------------------------------------- /public/images/judges/Maya_Powch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Maya_Powch.jpg -------------------------------------------------------------------------------- /public/images/judges/Michael_Mahemoff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Michael_Mahemoff.jpg -------------------------------------------------------------------------------- /public/images/judges/Michael_Swaine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Michael_Swaine.jpg -------------------------------------------------------------------------------- /public/images/judges/Micheil_Smith.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Micheil_Smith.jpg -------------------------------------------------------------------------------- /public/images/judges/Mikeal_Rogers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Mikeal_Rogers.jpg -------------------------------------------------------------------------------- /public/images/judges/Mohammed_Abdoolcarim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Mohammed_Abdoolcarim.jpg -------------------------------------------------------------------------------- /public/images/judges/Othman_Laraki.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Othman_Laraki.jpg -------------------------------------------------------------------------------- /public/images/judges/Peter_Fenton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Peter_Fenton.jpg -------------------------------------------------------------------------------- /public/images/judges/Purin_Phanichphant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Purin_Phanichphant.jpg -------------------------------------------------------------------------------- /public/images/judges/Ryan_Dahl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Ryan_Dahl.jpg -------------------------------------------------------------------------------- /public/images/judges/Ryan_Grove.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Ryan_Grove.jpg -------------------------------------------------------------------------------- /public/images/judges/Ryan_Spoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Ryan_Spoon.jpg -------------------------------------------------------------------------------- /public/images/judges/Sara_Wood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Sara_Wood.jpg -------------------------------------------------------------------------------- /public/images/judges/Seth_Ladd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Seth_Ladd.jpg -------------------------------------------------------------------------------- /public/images/judges/Steve_Gilmore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Steve_Gilmore.jpg -------------------------------------------------------------------------------- /public/images/judges/Teck_Chia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Teck_Chia.jpg -------------------------------------------------------------------------------- /public/images/judges/Timothy_Caswell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Timothy_Caswell.jpg -------------------------------------------------------------------------------- /public/images/judges/Tj_Holowaychuk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Tj_Holowaychuk.jpg -------------------------------------------------------------------------------- /public/images/judges/Tom_Nguyen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Tom_Nguyen.jpg -------------------------------------------------------------------------------- /public/images/judges/Visnu_Pitiyanuvath.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/judges/Visnu_Pitiyanuvath.jpg -------------------------------------------------------------------------------- /public/images/ko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/ko.png -------------------------------------------------------------------------------- /public/images/nodeko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/nodeko.png -------------------------------------------------------------------------------- /public/images/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/noise.png -------------------------------------------------------------------------------- /public/images/prizes/gloves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/prizes/gloves.png -------------------------------------------------------------------------------- /public/images/prizes/ipad.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/prizes/ipad.jpeg -------------------------------------------------------------------------------- /public/images/prizes/iphone.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/prizes/iphone.jpeg -------------------------------------------------------------------------------- /public/images/prizes/mongo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/prizes/mongo.jpeg -------------------------------------------------------------------------------- /public/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/spinner.gif -------------------------------------------------------------------------------- /public/images/sponsors/braintree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/sponsors/braintree.png -------------------------------------------------------------------------------- /public/images/sponsors/couchdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/sponsors/couchdb.png -------------------------------------------------------------------------------- /public/images/sponsors/envato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/sponsors/envato.png -------------------------------------------------------------------------------- /public/images/sponsors/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/sponsors/github.png -------------------------------------------------------------------------------- /public/images/sponsors/heroku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/sponsors/heroku.png -------------------------------------------------------------------------------- /public/images/sponsors/joyent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/sponsors/joyent.png -------------------------------------------------------------------------------- /public/images/sponsors/jsconf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/sponsors/jsconf.png -------------------------------------------------------------------------------- /public/images/sponsors/medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/sponsors/medium.png -------------------------------------------------------------------------------- /public/images/sponsors/mongodb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/sponsors/mongodb.png -------------------------------------------------------------------------------- /public/images/sponsors/mongohq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/sponsors/mongohq.png -------------------------------------------------------------------------------- /public/images/sponsors/npm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/sponsors/npm.png -------------------------------------------------------------------------------- /public/images/sponsors/oasis_digital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/sponsors/oasis_digital.png -------------------------------------------------------------------------------- /public/images/sponsors/palm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/sponsors/palm.png -------------------------------------------------------------------------------- /public/images/sponsors/redis_to_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/sponsors/redis_to_go.png -------------------------------------------------------------------------------- /public/images/sponsors/sencha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/sponsors/sencha.png -------------------------------------------------------------------------------- /public/images/sponsors/smule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/sponsors/smule.png -------------------------------------------------------------------------------- /public/images/sponsors/thoughtbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/sponsors/thoughtbot.png -------------------------------------------------------------------------------- /public/images/sponsors/upload_juicer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/sponsors/upload_juicer.png -------------------------------------------------------------------------------- /public/images/sponsors/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/sponsors/yahoo.png -------------------------------------------------------------------------------- /public/images/voteko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/images/voteko.png -------------------------------------------------------------------------------- /public/javascripts/socket.io/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "lib/vendor/web-socket-js"] 2 | path = lib/vendor/web-socket-js 3 | url = git://github.com/gimite/web-socket-js.git -------------------------------------------------------------------------------- /public/javascripts/socket.io/lib/util/util.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Socket.IO client 3 | * 4 | * @author Guillermo Rauch 5 | * @license The MIT license. 6 | * @copyright Copyright (c) 2009 RosePad 7 | */ 8 | 9 | io.util = {}; -------------------------------------------------------------------------------- /public/javascripts/socket.io/lib/vendor/web-socket-js/.gitignore: -------------------------------------------------------------------------------- 1 | test.html 2 | -------------------------------------------------------------------------------- /public/javascripts/socket.io/lib/vendor/web-socket-js/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nko/website/7912a004f0277a72325af04e8b0fd2d1cb627b8f/public/javascripts/socket.io/lib/vendor/web-socket-js/WebSocketMain.swf -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # www.robotstxt.org/ 2 | # www.google.com/support/webmasters/bin/answer.py?hl=en&answer=156449 3 | 4 | User-agent: * 5 | 6 | -------------------------------------------------------------------------------- /script/debug: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | while true; do node bin/inspector.js; sleep 1; done -------------------------------------------------------------------------------- /script/person-csv: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | mongoexport -dnodeknockout -cPerson --csv -f _id,type,confirmed > tmp/people.csv -------------------------------------------------------------------------------- /script/post-receive: -------------------------------------------------------------------------------- 1 | curl -X POST -d url=http://$(hostname).no.de -d app=$(hostname) -d head=$rev -d head_long=$newrev http://nodeknockout.com/deploys 2 | -------------------------------------------------------------------------------- /script/server: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | node --debug server.js 3 | -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | for f in test/*.coffee; do coffee $f; done 3 | -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- 1 | require('./support') 2 | require('./nodeko') 3 | -------------------------------------------------------------------------------- /views/deploys/ok.html.haml: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /views/partials/errors.html.haml: -------------------------------------------------------------------------------- 1 | %ul#errors{ style: (ctx.errors && ctx.errors.length > 0) ? 'display:block' : '' } 2 | - if (ctx.errors) 3 | - each error in ctx.errors 4 | %li= error 5 | --------------------------------------------------------------------------------