gitextract_pialv810/ ├── .gitattributes ├── .gitignore ├── app/ │ ├── LaraSnipp/ │ │ ├── Command/ │ │ │ └── CommentsCommand.php │ │ ├── Composer/ │ │ │ └── LayoutMasterComposer.php │ │ ├── LaraSnippServiceProvider.php │ │ ├── Mailer/ │ │ │ ├── Mailer.php │ │ │ └── UserMailer.php │ │ ├── Observer/ │ │ │ ├── ObserverServiceProvider.php │ │ │ ├── Snippet/ │ │ │ │ └── SnippetObserver.php │ │ │ └── User/ │ │ │ └── UserObserver.php │ │ ├── Repo/ │ │ │ ├── EloquentBaseRepository.php │ │ │ ├── RepoServiceProvider.php │ │ │ ├── Snippet/ │ │ │ │ ├── EloquentSnippetRepository.php │ │ │ │ └── SnippetRepositoryInterface.php │ │ │ ├── Tag/ │ │ │ │ ├── EloquentTagRepository.php │ │ │ │ └── TagRepositoryInterface.php │ │ │ └── User/ │ │ │ ├── EloquentUserRepository.php │ │ │ └── UserRepositoryInterface.php │ │ └── Service/ │ │ ├── Form/ │ │ │ ├── FormServiceProvider.php │ │ │ ├── Snippet/ │ │ │ │ ├── SnippetForm.php │ │ │ │ └── SnippetFormLaravelValidator.php │ │ │ └── User/ │ │ │ ├── UserForm.php │ │ │ └── UserFormLaravelValidator.php │ │ └── Validation/ │ │ ├── AbstractLaravelValidator.php │ │ └── ValidableInterface.php │ ├── commands/ │ │ └── .gitkeep │ ├── config/ │ │ ├── app.php │ │ ├── auth.php │ │ ├── cache.php │ │ ├── compile.php │ │ ├── database.php │ │ ├── disqus.php │ │ ├── mail.php │ │ ├── packages/ │ │ │ └── .gitkeep │ │ ├── purifier.php │ │ ├── queue.php │ │ ├── remote.php │ │ ├── session.php │ │ ├── site.php │ │ ├── testing/ │ │ │ ├── app.php │ │ │ ├── cache.php │ │ │ ├── database.php │ │ │ ├── mail.php │ │ │ └── session.php │ │ ├── view.php │ │ └── workbench.php │ ├── controllers/ │ │ ├── .gitkeep │ │ ├── Admin/ │ │ │ └── IndexController.php │ │ ├── AuthController.php │ │ ├── BaseController.php │ │ ├── HomeController.php │ │ ├── Member/ │ │ │ ├── SnippetController.php │ │ │ └── UserController.php │ │ ├── RemindersController.php │ │ ├── SnippetController.php │ │ ├── TagController.php │ │ ├── UserController.php │ │ └── website/ │ │ └── PagesController.php │ ├── database/ │ │ ├── migrations/ │ │ │ ├── .gitkeep │ │ │ ├── 2013_11_08_145020_create_snippets_table.php │ │ │ ├── 2013_12_05_122548_create_users_table.php │ │ │ ├── 2013_12_05_122952_add_author_id_in_snippets_table.php │ │ │ ├── 2013_12_08_055430_add_slug_and_activation_key_and_active_in_users_table.php │ │ │ ├── 2013_12_09_125456_drop_active_in_users_table.php │ │ │ ├── 2013_12_09_130122_add_active_in_users_table.php │ │ │ ├── 2013_12_10_112312_add_approved_in_snippets_table.php │ │ │ ├── 2013_12_10_132447_add_slug_in_snippets_table.php │ │ │ ├── 2013_12_11_012940_create_roles_table.php │ │ │ ├── 2013_12_11_013036_add_role_id_in_users_table.php │ │ │ ├── 2013_12_11_013559_add_description_credits_to_resource_deleted_at_in_snippets_table.php │ │ │ ├── 2013_12_11_014226_create_tags_table.php │ │ │ ├── 2013_12_11_014317_create_snippet_tag_table.php │ │ │ ├── 2013_12_11_103428_add_slug_in_tags_table.php │ │ │ ├── 2013_12_12_093641_add_remaining_columns_in_users_table.php │ │ │ ├── 2013_12_19_134131_create_password_reminders_table.php │ │ │ ├── 2014_01_04_072223_add_disqus_columns_to_snippets_table.php │ │ │ ├── 2014_01_06_212314_create_user_starred_table.php │ │ │ └── 2014_04_17_151653_add_remember_token_to_users_table.php │ │ └── seeds/ │ │ ├── .gitkeep │ │ ├── DatabaseSeeder.php │ │ ├── RoleSeeder.php │ │ └── TagSeeder.php │ ├── filters.php │ ├── lang/ │ │ └── en/ │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php │ ├── libraries/ │ │ └── SiteHelpers.php │ ├── macros.php │ ├── models/ │ │ ├── BaseModel.php │ │ ├── Role.php │ │ ├── Snippet.php │ │ ├── Starred.php │ │ ├── Tag.php │ │ └── User.php │ ├── routes.php │ ├── start/ │ │ ├── artisan.php │ │ ├── global.php │ │ └── local.php │ ├── storage/ │ │ ├── .gitignore │ │ ├── cache/ │ │ │ └── .gitignore │ │ ├── logs/ │ │ │ └── .gitignore │ │ ├── meta/ │ │ │ └── .gitignore │ │ ├── sessions/ │ │ │ └── .gitignore │ │ └── views/ │ │ └── .gitignore │ ├── tests/ │ │ ├── TestCase.php │ │ ├── functional/ │ │ │ └── Controller/ │ │ │ ├── AuthControllerTest.php │ │ │ ├── HomeControllerTest.php │ │ │ ├── Member/ │ │ │ │ ├── SnippetControllerTest.php │ │ │ │ └── UserControllerTest.php │ │ │ ├── SnippetControllerTest.php │ │ │ ├── TagControllerTest.php │ │ │ └── UserControllerTest.php │ │ ├── integration/ │ │ │ ├── Model/ │ │ │ │ └── UserModelTest.php │ │ │ └── Repo/ │ │ │ ├── EloquentSnippetRepositoryTest.php │ │ │ └── EloquentUserRepositoryTest.php │ │ └── unit/ │ │ └── Model/ │ │ └── UserModelTest.php │ └── views/ │ ├── admin/ │ │ ├── index.blade.php │ │ ├── layouts/ │ │ │ └── master.blade.php │ │ └── partials/ │ │ └── navbar.blade.php │ ├── auth/ │ │ ├── login.blade.php │ │ └── signup.blade.php │ ├── emails/ │ │ └── auth/ │ │ ├── activate.blade.php │ │ └── reminder.blade.php │ ├── layouts/ │ │ └── master.blade.php │ ├── member/ │ │ ├── snippets/ │ │ │ ├── create.blade.php │ │ │ └── edit.blade.php │ │ └── users/ │ │ └── dashboard.blade.php │ ├── partials/ │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── notifications.blade.php │ │ ├── pagination.blade.php │ │ ├── search-narrow.blade.php │ │ ├── search.blade.php │ │ ├── searchForm.blade.php │ │ ├── sidebars/ │ │ │ ├── default.blade.php │ │ │ ├── snippet.blade.php │ │ │ └── widgets/ │ │ │ ├── author.blade.php │ │ │ ├── categories.blade.php │ │ │ ├── social.blade.php │ │ │ └── top-contributors.blade.php │ │ └── snippets.php │ ├── password/ │ │ ├── remind.blade.php │ │ └── reset.blade.php │ ├── snippets/ │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── tags/ │ │ └── snippets.blade.php │ ├── users/ │ │ ├── index.blade.php │ │ ├── profile.blade.php │ │ ├── settings.blade.php │ │ └── snippets.blade.php │ └── website/ │ └── pages/ │ ├── 404.blade.php │ ├── index.blade.php │ └── roadmap.blade.php ├── artisan ├── bootstrap/ │ ├── autoload.php │ ├── paths.php │ └── start.php ├── composer.json ├── gulpfile.js ├── package.json ├── phpunit.xml ├── public/ │ ├── .htaccess │ ├── administration/ │ │ ├── css/ │ │ │ ├── sb-admin-2.css │ │ │ └── timeline.css │ │ └── js/ │ │ └── sb-admin-2.js │ ├── assets/ │ │ ├── coffee/ │ │ │ ├── common.coffee │ │ │ └── snippet.coffee │ │ ├── css/ │ │ │ └── styles.css │ │ ├── js/ │ │ │ ├── common.js │ │ │ ├── snippet.js │ │ │ └── vendors/ │ │ │ └── json2/ │ │ │ └── json2.js │ │ └── scss/ │ │ ├── core/ │ │ │ ├── _band.scss │ │ │ ├── _global.scss │ │ │ ├── _mixins.scss │ │ │ └── _variables.scss │ │ ├── pages/ │ │ │ ├── _profiles.scss │ │ │ └── _snippet.scss │ │ ├── partials/ │ │ │ ├── _breadcrumbs.scss │ │ │ ├── _footer.scss │ │ │ ├── _nav-bar.scss │ │ │ ├── _pagination.scss │ │ │ ├── _search-band.scss │ │ │ ├── _sidebar.scss │ │ │ └── _snippets.scss │ │ └── styles.scss │ ├── index.php │ ├── packages/ │ │ ├── .gitkeep │ │ ├── chosen_v1.0.0/ │ │ │ ├── chosen.css │ │ │ ├── chosen.jquery.js │ │ │ ├── chosen.proto.js │ │ │ ├── docsupport/ │ │ │ │ ├── prism.css │ │ │ │ ├── prism.js │ │ │ │ └── style.css │ │ │ ├── index.html │ │ │ ├── index.proto.html │ │ │ └── options.html │ │ ├── codemirror-3.19/ │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── addon/ │ │ │ │ ├── comment/ │ │ │ │ │ ├── comment.js │ │ │ │ │ └── continuecomment.js │ │ │ │ ├── dialog/ │ │ │ │ │ ├── dialog.css │ │ │ │ │ └── dialog.js │ │ │ │ ├── display/ │ │ │ │ │ ├── fullscreen.css │ │ │ │ │ ├── fullscreen.js │ │ │ │ │ └── placeholder.js │ │ │ │ ├── edit/ │ │ │ │ │ ├── closebrackets.js │ │ │ │ │ ├── closetag.js │ │ │ │ │ ├── continuelist.js │ │ │ │ │ ├── matchbrackets.js │ │ │ │ │ ├── matchtags.js │ │ │ │ │ └── trailingspace.js │ │ │ │ ├── fold/ │ │ │ │ │ ├── brace-fold.js │ │ │ │ │ ├── comment-fold.js │ │ │ │ │ ├── foldcode.js │ │ │ │ │ ├── foldgutter.css │ │ │ │ │ ├── foldgutter.js │ │ │ │ │ ├── indent-fold.js │ │ │ │ │ └── xml-fold.js │ │ │ │ ├── hint/ │ │ │ │ │ ├── anyword-hint.js │ │ │ │ │ ├── css-hint.js │ │ │ │ │ ├── html-hint.js │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ ├── pig-hint.js │ │ │ │ │ ├── python-hint.js │ │ │ │ │ ├── show-hint.css │ │ │ │ │ ├── show-hint.js │ │ │ │ │ ├── sql-hint.js │ │ │ │ │ └── xml-hint.js │ │ │ │ ├── lint/ │ │ │ │ │ ├── coffeescript-lint.js │ │ │ │ │ ├── css-lint.js │ │ │ │ │ ├── javascript-lint.js │ │ │ │ │ ├── json-lint.js │ │ │ │ │ ├── lint.css │ │ │ │ │ └── lint.js │ │ │ │ ├── merge/ │ │ │ │ │ ├── dep/ │ │ │ │ │ │ └── diff_match_patch.js │ │ │ │ │ ├── merge.css │ │ │ │ │ └── merge.js │ │ │ │ ├── mode/ │ │ │ │ │ ├── loadmode.js │ │ │ │ │ ├── multiplex.js │ │ │ │ │ ├── multiplex_test.js │ │ │ │ │ └── overlay.js │ │ │ │ ├── runmode/ │ │ │ │ │ ├── colorize.js │ │ │ │ │ ├── runmode-standalone.js │ │ │ │ │ ├── runmode.js │ │ │ │ │ └── runmode.node.js │ │ │ │ ├── scroll/ │ │ │ │ │ └── scrollpastend.js │ │ │ │ ├── search/ │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ ├── search.js │ │ │ │ │ └── searchcursor.js │ │ │ │ ├── selection/ │ │ │ │ │ ├── active-line.js │ │ │ │ │ └── mark-selection.js │ │ │ │ ├── tern/ │ │ │ │ │ ├── tern.css │ │ │ │ │ ├── tern.js │ │ │ │ │ └── worker.js │ │ │ │ └── wrap/ │ │ │ │ └── hardwrap.js │ │ │ ├── bin/ │ │ │ │ ├── authors.sh │ │ │ │ ├── compress │ │ │ │ ├── lint │ │ │ │ └── source-highlight │ │ │ ├── bower.json │ │ │ ├── demo/ │ │ │ │ ├── activeline.html │ │ │ │ ├── anywordhint.html │ │ │ │ ├── bidi.html │ │ │ │ ├── btree.html │ │ │ │ ├── buffers.html │ │ │ │ ├── changemode.html │ │ │ │ ├── closebrackets.html │ │ │ │ ├── closetag.html │ │ │ │ ├── complete.html │ │ │ │ ├── emacs.html │ │ │ │ ├── folding.html │ │ │ │ ├── fullscreen.html │ │ │ │ ├── hardwrap.html │ │ │ │ ├── html5complete.html │ │ │ │ ├── indentwrap.html │ │ │ │ ├── lint.html │ │ │ │ ├── loadmode.html │ │ │ │ ├── marker.html │ │ │ │ ├── markselection.html │ │ │ │ ├── matchhighlighter.html │ │ │ │ ├── matchtags.html │ │ │ │ ├── merge.html │ │ │ │ ├── multiplex.html │ │ │ │ ├── mustache.html │ │ │ │ ├── placeholder.html │ │ │ │ ├── preview.html │ │ │ │ ├── resize.html │ │ │ │ ├── runmode.html │ │ │ │ ├── search.html │ │ │ │ ├── spanaffectswrapping_shim.html │ │ │ │ ├── tern.html │ │ │ │ ├── theme.html │ │ │ │ ├── trailingspace.html │ │ │ │ ├── variableheight.html │ │ │ │ ├── vim.html │ │ │ │ ├── visibletabs.html │ │ │ │ ├── widget.html │ │ │ │ └── xmlcomplete.html │ │ │ ├── doc/ │ │ │ │ ├── activebookmark.js │ │ │ │ ├── compress.html │ │ │ │ ├── docs.css │ │ │ │ ├── internals.html │ │ │ │ ├── manual.html │ │ │ │ ├── realworld.html │ │ │ │ ├── releases.html │ │ │ │ ├── reporting.html │ │ │ │ ├── upgrade_v2.2.html │ │ │ │ └── upgrade_v3.html │ │ │ ├── index.html │ │ │ ├── keymap/ │ │ │ │ ├── emacs.js │ │ │ │ ├── extra.js │ │ │ │ └── vim.js │ │ │ ├── lib/ │ │ │ │ ├── codemirror.css │ │ │ │ └── codemirror.js │ │ │ ├── mode/ │ │ │ │ ├── apl/ │ │ │ │ │ ├── apl.js │ │ │ │ │ └── index.html │ │ │ │ ├── asterisk/ │ │ │ │ │ ├── asterisk.js │ │ │ │ │ └── index.html │ │ │ │ ├── clike/ │ │ │ │ │ ├── clike.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── scala.html │ │ │ │ ├── clojure/ │ │ │ │ │ ├── clojure.js │ │ │ │ │ └── index.html │ │ │ │ ├── cobol/ │ │ │ │ │ ├── cobol.js │ │ │ │ │ └── index.html │ │ │ │ ├── coffeescript/ │ │ │ │ │ ├── coffeescript.js │ │ │ │ │ └── index.html │ │ │ │ ├── commonlisp/ │ │ │ │ │ ├── commonlisp.js │ │ │ │ │ └── index.html │ │ │ │ ├── css/ │ │ │ │ │ ├── css.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── scss.html │ │ │ │ │ ├── scss_test.js │ │ │ │ │ └── test.js │ │ │ │ ├── d/ │ │ │ │ │ ├── d.js │ │ │ │ │ └── index.html │ │ │ │ ├── diff/ │ │ │ │ │ ├── diff.js │ │ │ │ │ └── index.html │ │ │ │ ├── dtd/ │ │ │ │ │ ├── dtd.js │ │ │ │ │ └── index.html │ │ │ │ ├── ecl/ │ │ │ │ │ ├── ecl.js │ │ │ │ │ └── index.html │ │ │ │ ├── eiffel/ │ │ │ │ │ ├── eiffel.js │ │ │ │ │ └── index.html │ │ │ │ ├── erlang/ │ │ │ │ │ ├── erlang.js │ │ │ │ │ └── index.html │ │ │ │ ├── fortran/ │ │ │ │ │ ├── fortran.js │ │ │ │ │ └── index.html │ │ │ │ ├── gas/ │ │ │ │ │ ├── gas.js │ │ │ │ │ └── index.html │ │ │ │ ├── gfm/ │ │ │ │ │ ├── gfm.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.js │ │ │ │ ├── gherkin/ │ │ │ │ │ ├── gherkin.js │ │ │ │ │ └── index.html │ │ │ │ ├── go/ │ │ │ │ │ ├── go.js │ │ │ │ │ └── index.html │ │ │ │ ├── groovy/ │ │ │ │ │ ├── groovy.js │ │ │ │ │ └── index.html │ │ │ │ ├── haml/ │ │ │ │ │ ├── haml.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.js │ │ │ │ ├── haskell/ │ │ │ │ │ ├── haskell.js │ │ │ │ │ └── index.html │ │ │ │ ├── haxe/ │ │ │ │ │ ├── haxe.js │ │ │ │ │ └── index.html │ │ │ │ ├── htmlembedded/ │ │ │ │ │ ├── htmlembedded.js │ │ │ │ │ └── index.html │ │ │ │ ├── htmlmixed/ │ │ │ │ │ ├── htmlmixed.js │ │ │ │ │ └── index.html │ │ │ │ ├── http/ │ │ │ │ │ ├── http.js │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── jade/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── jade.js │ │ │ │ ├── javascript/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── javascript.js │ │ │ │ │ ├── test.js │ │ │ │ │ └── typescript.html │ │ │ │ ├── jinja2/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── jinja2.js │ │ │ │ ├── less/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── less.js │ │ │ │ ├── livescript/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── livescript.js │ │ │ │ │ └── livescript.ls │ │ │ │ ├── lua/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── lua.js │ │ │ │ ├── markdown/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── markdown.js │ │ │ │ │ └── test.js │ │ │ │ ├── meta.js │ │ │ │ ├── mirc/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── mirc.js │ │ │ │ ├── nginx/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── nginx.js │ │ │ │ ├── ntriples/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── ntriples.js │ │ │ │ ├── ocaml/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── ocaml.js │ │ │ │ ├── octave/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── octave.js │ │ │ │ ├── pascal/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── pascal.js │ │ │ │ ├── perl/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── perl.js │ │ │ │ ├── php/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── php.js │ │ │ │ ├── pig/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── pig.js │ │ │ │ ├── properties/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── properties.js │ │ │ │ ├── python/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── python.js │ │ │ │ ├── q/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── q.js │ │ │ │ ├── r/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── r.js │ │ │ │ ├── rpm/ │ │ │ │ │ ├── changes/ │ │ │ │ │ │ ├── changes.js │ │ │ │ │ │ └── index.html │ │ │ │ │ └── spec/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── spec.css │ │ │ │ │ └── spec.js │ │ │ │ ├── rst/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── rst.js │ │ │ │ ├── ruby/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── ruby.js │ │ │ │ ├── rust/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── rust.js │ │ │ │ ├── sass/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── sass.js │ │ │ │ ├── scheme/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── scheme.js │ │ │ │ ├── shell/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── shell.js │ │ │ │ ├── sieve/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── sieve.js │ │ │ │ ├── smalltalk/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── smalltalk.js │ │ │ │ ├── smarty/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── smarty.js │ │ │ │ ├── smartymixed/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── smartymixed.js │ │ │ │ ├── sparql/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── sparql.js │ │ │ │ ├── sql/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── sql.js │ │ │ │ ├── stex/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── stex.js │ │ │ │ │ └── test.js │ │ │ │ ├── tcl/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── tcl.js │ │ │ │ ├── tiddlywiki/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ └── tiddlywiki.js │ │ │ │ ├── tiki/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tiki.css │ │ │ │ │ └── tiki.js │ │ │ │ ├── toml/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── toml.js │ │ │ │ ├── turtle/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── turtle.js │ │ │ │ ├── vb/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── vb.js │ │ │ │ ├── vbscript/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── vbscript.js │ │ │ │ ├── velocity/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── velocity.js │ │ │ │ ├── verilog/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── verilog.js │ │ │ │ ├── xml/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── xml.js │ │ │ │ ├── xquery/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── xquery.js │ │ │ │ ├── yaml/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── yaml.js │ │ │ │ └── z80/ │ │ │ │ ├── index.html │ │ │ │ └── z80.js │ │ │ ├── package.json │ │ │ ├── test/ │ │ │ │ ├── comment_test.js │ │ │ │ ├── doc_test.js │ │ │ │ ├── driver.js │ │ │ │ ├── emacs_test.js │ │ │ │ ├── index.html │ │ │ │ ├── lint/ │ │ │ │ │ ├── acorn.js │ │ │ │ │ ├── lint.js │ │ │ │ │ └── walk.js │ │ │ │ ├── mode_test.css │ │ │ │ ├── mode_test.js │ │ │ │ ├── phantom_driver.js │ │ │ │ ├── run.js │ │ │ │ ├── test.js │ │ │ │ └── vim_test.js │ │ │ └── theme/ │ │ │ ├── 3024-day.css │ │ │ ├── 3024-night.css │ │ │ ├── ambiance-mobile.css │ │ │ ├── ambiance.css │ │ │ ├── base16-dark.css │ │ │ ├── base16-light.css │ │ │ ├── blackboard.css │ │ │ ├── cobalt.css │ │ │ ├── eclipse.css │ │ │ ├── elegant.css │ │ │ ├── erlang-dark.css │ │ │ ├── lesser-dark.css │ │ │ ├── mbo.css │ │ │ ├── midnight.css │ │ │ ├── monokai.css │ │ │ ├── neat.css │ │ │ ├── night.css │ │ │ ├── paraiso-dark.css │ │ │ ├── paraiso-light.css │ │ │ ├── rubyblue.css │ │ │ ├── solarized.css │ │ │ ├── the-matrix.css │ │ │ ├── tomorrow-night-eighties.css │ │ │ ├── twilight.css │ │ │ ├── vibrant-ink.css │ │ │ ├── xq-dark.css │ │ │ └── xq-light.css │ │ ├── google-code-prettify/ │ │ │ ├── lang-apollo.js │ │ │ ├── lang-basic.js │ │ │ ├── lang-clj.js │ │ │ ├── lang-css.js │ │ │ ├── lang-dart.js │ │ │ ├── lang-erlang.js │ │ │ ├── lang-go.js │ │ │ ├── lang-hs.js │ │ │ ├── lang-lisp.js │ │ │ ├── lang-llvm.js │ │ │ ├── lang-lua.js │ │ │ ├── lang-matlab.js │ │ │ ├── lang-ml.js │ │ │ ├── lang-mumps.js │ │ │ ├── lang-n.js │ │ │ ├── lang-pascal.js │ │ │ ├── lang-proto.js │ │ │ ├── lang-r.js │ │ │ ├── lang-rd.js │ │ │ ├── lang-scala.js │ │ │ ├── lang-sql.js │ │ │ ├── lang-tcl.js │ │ │ ├── lang-tex.js │ │ │ ├── lang-vb.js │ │ │ ├── lang-vhdl.js │ │ │ ├── lang-wiki.js │ │ │ ├── lang-xq.js │ │ │ ├── lang-yaml.js │ │ │ ├── prettify.css │ │ │ ├── prettify.js │ │ │ └── run_prettify.js │ │ └── jquery-file-upload-8.9.0/ │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── angularjs.html │ │ ├── basic-plus.html │ │ ├── basic.html │ │ ├── blueimp-file-upload.jquery.json │ │ ├── bower.json │ │ ├── cors/ │ │ │ ├── postmessage.html │ │ │ └── result.html │ │ ├── css/ │ │ │ ├── demo-ie8.css │ │ │ ├── demo.css │ │ │ ├── jquery.fileupload-noscript.css │ │ │ ├── jquery.fileupload-ui-noscript.css │ │ │ ├── jquery.fileupload-ui.css │ │ │ ├── jquery.fileupload.css │ │ │ └── style.css │ │ ├── index.html │ │ ├── jquery-ui.html │ │ ├── js/ │ │ │ ├── app.js │ │ │ ├── cors/ │ │ │ │ ├── jquery.postmessage-transport.js │ │ │ │ └── jquery.xdr-transport.js │ │ │ ├── jquery.fileupload-angular.js │ │ │ ├── jquery.fileupload-audio.js │ │ │ ├── jquery.fileupload-image.js │ │ │ ├── jquery.fileupload-jquery-ui.js │ │ │ ├── jquery.fileupload-process.js │ │ │ ├── jquery.fileupload-ui.js │ │ │ ├── jquery.fileupload-validate.js │ │ │ ├── jquery.fileupload-video.js │ │ │ ├── jquery.fileupload.js │ │ │ ├── jquery.iframe-transport.js │ │ │ ├── main.js │ │ │ └── vendor/ │ │ │ └── jquery.ui.widget.js │ │ ├── package.json │ │ ├── server/ │ │ │ ├── gae-go/ │ │ │ │ ├── app/ │ │ │ │ │ └── main.go │ │ │ │ ├── app.yaml │ │ │ │ └── static/ │ │ │ │ └── robots.txt │ │ │ ├── gae-python/ │ │ │ │ ├── app.yaml │ │ │ │ ├── main.py │ │ │ │ └── static/ │ │ │ │ └── robots.txt │ │ │ ├── node/ │ │ │ │ ├── .gitignore │ │ │ │ ├── package.json │ │ │ │ ├── public/ │ │ │ │ │ └── files/ │ │ │ │ │ └── .gitignore │ │ │ │ ├── server.js │ │ │ │ └── tmp/ │ │ │ │ └── .gitignore │ │ │ └── php/ │ │ │ ├── UploadHandler.php │ │ │ ├── files/ │ │ │ │ ├── .gitignore │ │ │ │ └── .htaccess │ │ │ └── index.php │ │ └── test/ │ │ ├── index.html │ │ └── test.js │ ├── robots.txt │ └── sitemap.xml ├── readme.md ├── server.php ├── vagrant.pp └── vagrantfile