├── .gitignore.txt ├── LICENSE.txt ├── README.md ├── docker ├── Dockerfile ├── Readme.txt ├── build_docker.bat ├── build_docker.sh ├── context.xml ├── docker-compose.yml └── setenv.sh ├── docs ├── XSLWeb Developer Manual.adoc ├── XSLWeb_3_0_Quick_Start.pdf ├── docinfo.html └── images │ ├── XSLWeb.graphml │ ├── xslweb_flow.png │ └── xslweb_flow.svg ├── home ├── common │ ├── xquery │ │ └── lib │ │ │ └── functx │ │ │ └── functx-1.0.xq │ └── xsl │ │ ├── lib │ │ ├── functx │ │ │ └── functx-1.0.xsl │ │ └── xslweb │ │ │ └── xslweb.xsl │ │ └── system │ │ ├── authentication │ │ └── basic-authentication.xsl │ │ ├── identity │ │ └── identity.xsl │ │ ├── response │ │ └── response.xsl │ │ ├── schematron │ │ ├── iso_abstract_expand.xsl │ │ ├── iso_dsdl_include.xsl │ │ ├── iso_schematron_message_xslt2.xsl │ │ ├── iso_schematron_skeleton_for_saxon.xsl │ │ ├── iso_svrl_for_xslt2.xsl │ │ ├── sch-messages-cs.xhtml │ │ ├── sch-messages-de.xhtml │ │ ├── sch-messages-en.xhtml │ │ ├── sch-messages-fr.xhtml │ │ ├── sch-messages-nl.xhtml │ │ └── schematron-skeleton-api.htm │ │ └── trace │ │ └── timing.xsl ├── config │ ├── c3p0-config.xml │ ├── logback.xml │ ├── xsd │ │ ├── ehcache │ │ │ ├── ehcache-107-ext.xsd │ │ │ ├── ehcache-core.xsd │ │ │ ├── ehcache-multi.xsd │ │ │ └── ehcache.xsd │ │ ├── fop │ │ │ └── fop-configuration.xsd │ │ ├── quartz │ │ │ └── job_scheduling_data_2_0.xsd │ │ ├── saxon │ │ │ ├── annotatedConfig.xsd │ │ │ ├── config.xsd │ │ │ └── saxon-attributes.xsd │ │ ├── w3c │ │ │ └── schema-for-serialization-parameters.xsd │ │ └── xslweb │ │ │ ├── fop-serializer.xsd │ │ │ ├── pipeline.xsd │ │ │ ├── request.xsd │ │ │ ├── response.xsd │ │ │ ├── webapp.xsd │ │ │ └── zip-serializer.xsd │ ├── xslweb-ehcache.xml │ ├── xslweb-jobs.xml │ ├── xslweb-quartz.properties │ └── xslweb.properties └── webapps │ ├── ROOT │ ├── static │ │ ├── favicon.ico │ │ ├── robots.txt │ │ └── styles │ │ │ └── base.css │ ├── webapp.xml │ └── xsl │ │ ├── itworks.xsl │ │ └── request-dispatcher.xsl │ ├── debugger │ ├── static │ │ ├── codemirror │ │ │ └── 5.58.3 │ │ │ │ ├── .editorconfig │ │ │ │ ├── .gitattributes │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── AUTHORS │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── addon │ │ │ │ ├── comment │ │ │ │ │ ├── comment.js │ │ │ │ │ └── continuecomment.js │ │ │ │ ├── dialog │ │ │ │ │ ├── dialog.css │ │ │ │ │ └── dialog.js │ │ │ │ ├── display │ │ │ │ │ ├── autorefresh.js │ │ │ │ │ ├── fullscreen.css │ │ │ │ │ ├── fullscreen.js │ │ │ │ │ ├── panel.js │ │ │ │ │ ├── placeholder.js │ │ │ │ │ └── rulers.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 │ │ │ │ │ ├── markdown-fold.js │ │ │ │ │ └── xml-fold.js │ │ │ │ ├── hint │ │ │ │ │ ├── anyword-hint.js │ │ │ │ │ ├── css-hint.js │ │ │ │ │ ├── html-hint.js │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ ├── show-hint.css │ │ │ │ │ ├── show-hint.js │ │ │ │ │ ├── sql-hint.js │ │ │ │ │ └── xml-hint.js │ │ │ │ ├── lint │ │ │ │ │ ├── coffeescript-lint.js │ │ │ │ │ ├── css-lint.js │ │ │ │ │ ├── html-lint.js │ │ │ │ │ ├── javascript-lint.js │ │ │ │ │ ├── json-lint.js │ │ │ │ │ ├── lint.css │ │ │ │ │ ├── lint.js │ │ │ │ │ └── yaml-lint.js │ │ │ │ ├── merge │ │ │ │ │ ├── merge.css │ │ │ │ │ └── merge.js │ │ │ │ ├── mode │ │ │ │ │ ├── keyword.js │ │ │ │ │ ├── loadmode.js │ │ │ │ │ ├── multiplex.js │ │ │ │ │ ├── multiplex_test.js │ │ │ │ │ ├── overlay.js │ │ │ │ │ └── simple.js │ │ │ │ ├── runmode │ │ │ │ │ ├── colorize.js │ │ │ │ │ ├── runmode-standalone.js │ │ │ │ │ ├── runmode.js │ │ │ │ │ └── runmode.node.js │ │ │ │ ├── scroll │ │ │ │ │ ├── annotatescrollbar.js │ │ │ │ │ ├── scrollpastend.js │ │ │ │ │ ├── simplescrollbars.css │ │ │ │ │ └── simplescrollbars.js │ │ │ │ ├── search │ │ │ │ │ ├── jump-to-line.js │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ ├── matchesonscrollbar.css │ │ │ │ │ ├── matchesonscrollbar.js │ │ │ │ │ ├── search.js │ │ │ │ │ └── searchcursor.js │ │ │ │ ├── selection │ │ │ │ │ ├── active-line.js │ │ │ │ │ ├── mark-selection.js │ │ │ │ │ └── selection-pointer.js │ │ │ │ ├── tern │ │ │ │ │ ├── tern.css │ │ │ │ │ ├── tern.js │ │ │ │ │ └── worker.js │ │ │ │ └── wrap │ │ │ │ │ └── hardwrap.js │ │ │ │ ├── bin │ │ │ │ ├── authors.sh │ │ │ │ ├── lint │ │ │ │ ├── release │ │ │ │ ├── source-highlight │ │ │ │ └── upload-release.js │ │ │ │ ├── index.html │ │ │ │ ├── keymap │ │ │ │ ├── emacs.js │ │ │ │ ├── sublime.js │ │ │ │ └── vim.js │ │ │ │ ├── lib │ │ │ │ ├── codemirror.css │ │ │ │ └── codemirror.js │ │ │ │ ├── mode │ │ │ │ ├── apl │ │ │ │ │ ├── apl.js │ │ │ │ │ └── index.html │ │ │ │ ├── asciiarmor │ │ │ │ │ ├── asciiarmor.js │ │ │ │ │ └── index.html │ │ │ │ ├── asn.1 │ │ │ │ │ ├── asn.1.js │ │ │ │ │ └── index.html │ │ │ │ ├── asterisk │ │ │ │ │ ├── asterisk.js │ │ │ │ │ └── index.html │ │ │ │ ├── brainfuck │ │ │ │ │ ├── brainfuck.js │ │ │ │ │ └── index.html │ │ │ │ ├── clike │ │ │ │ │ ├── clike.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── scala.html │ │ │ │ │ └── test.js │ │ │ │ ├── clojure │ │ │ │ │ ├── clojure.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.js │ │ │ │ ├── cmake │ │ │ │ │ ├── cmake.js │ │ │ │ │ └── index.html │ │ │ │ ├── cobol │ │ │ │ │ ├── cobol.js │ │ │ │ │ └── index.html │ │ │ │ ├── coffeescript │ │ │ │ │ ├── coffeescript.js │ │ │ │ │ └── index.html │ │ │ │ ├── commonlisp │ │ │ │ │ ├── commonlisp.js │ │ │ │ │ └── index.html │ │ │ │ ├── crystal │ │ │ │ │ ├── crystal.js │ │ │ │ │ └── index.html │ │ │ │ ├── css │ │ │ │ │ ├── css.js │ │ │ │ │ ├── gss.html │ │ │ │ │ ├── gss_test.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── less.html │ │ │ │ │ ├── less_test.js │ │ │ │ │ ├── scss.html │ │ │ │ │ ├── scss_test.js │ │ │ │ │ └── test.js │ │ │ │ ├── cypher │ │ │ │ │ ├── cypher.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.js │ │ │ │ ├── d │ │ │ │ │ ├── d.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.js │ │ │ │ ├── dart │ │ │ │ │ ├── dart.js │ │ │ │ │ └── index.html │ │ │ │ ├── diff │ │ │ │ │ ├── diff.js │ │ │ │ │ └── index.html │ │ │ │ ├── django │ │ │ │ │ ├── django.js │ │ │ │ │ └── index.html │ │ │ │ ├── dockerfile │ │ │ │ │ ├── dockerfile.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.js │ │ │ │ ├── dtd │ │ │ │ │ ├── dtd.js │ │ │ │ │ └── index.html │ │ │ │ ├── dylan │ │ │ │ │ ├── dylan.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.js │ │ │ │ ├── ebnf │ │ │ │ │ ├── ebnf.js │ │ │ │ │ └── index.html │ │ │ │ ├── ecl │ │ │ │ │ ├── ecl.js │ │ │ │ │ └── index.html │ │ │ │ ├── eiffel │ │ │ │ │ ├── eiffel.js │ │ │ │ │ └── index.html │ │ │ │ ├── elm │ │ │ │ │ ├── elm.js │ │ │ │ │ └── index.html │ │ │ │ ├── erlang │ │ │ │ │ ├── erlang.js │ │ │ │ │ └── index.html │ │ │ │ ├── factor │ │ │ │ │ ├── factor.js │ │ │ │ │ └── index.html │ │ │ │ ├── fcl │ │ │ │ │ ├── fcl.js │ │ │ │ │ └── index.html │ │ │ │ ├── forth │ │ │ │ │ ├── forth.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 │ │ │ │ ├── handlebars │ │ │ │ │ ├── handlebars.js │ │ │ │ │ └── index.html │ │ │ │ ├── haskell-literate │ │ │ │ │ ├── haskell-literate.js │ │ │ │ │ └── index.html │ │ │ │ ├── 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 │ │ │ │ ├── idl │ │ │ │ │ ├── idl.js │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── javascript │ │ │ │ │ ├── index.html │ │ │ │ │ ├── javascript.js │ │ │ │ │ ├── json-ld.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── typescript.html │ │ │ │ ├── jinja2 │ │ │ │ │ ├── index.html │ │ │ │ │ └── jinja2.js │ │ │ │ ├── jsx │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jsx.js │ │ │ │ │ └── test.js │ │ │ │ ├── julia │ │ │ │ │ ├── index.html │ │ │ │ │ └── julia.js │ │ │ │ ├── livescript │ │ │ │ │ ├── index.html │ │ │ │ │ └── livescript.js │ │ │ │ ├── lua │ │ │ │ │ ├── index.html │ │ │ │ │ └── lua.js │ │ │ │ ├── markdown │ │ │ │ │ ├── index.html │ │ │ │ │ ├── markdown.js │ │ │ │ │ └── test.js │ │ │ │ ├── mathematica │ │ │ │ │ ├── index.html │ │ │ │ │ └── mathematica.js │ │ │ │ ├── mbox │ │ │ │ │ ├── index.html │ │ │ │ │ └── mbox.js │ │ │ │ ├── meta.js │ │ │ │ ├── mirc │ │ │ │ │ ├── index.html │ │ │ │ │ └── mirc.js │ │ │ │ ├── mllike │ │ │ │ │ ├── index.html │ │ │ │ │ └── mllike.js │ │ │ │ ├── modelica │ │ │ │ │ ├── index.html │ │ │ │ │ └── modelica.js │ │ │ │ ├── mscgen │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mscgen.js │ │ │ │ │ ├── mscgen_test.js │ │ │ │ │ ├── msgenny_test.js │ │ │ │ │ └── xu_test.js │ │ │ │ ├── mumps │ │ │ │ │ ├── index.html │ │ │ │ │ └── mumps.js │ │ │ │ ├── nginx │ │ │ │ │ ├── index.html │ │ │ │ │ └── nginx.js │ │ │ │ ├── nsis │ │ │ │ │ ├── index.html │ │ │ │ │ └── nsis.js │ │ │ │ ├── ntriples │ │ │ │ │ ├── index.html │ │ │ │ │ └── ntriples.js │ │ │ │ ├── octave │ │ │ │ │ ├── index.html │ │ │ │ │ └── octave.js │ │ │ │ ├── oz │ │ │ │ │ ├── index.html │ │ │ │ │ └── oz.js │ │ │ │ ├── pascal │ │ │ │ │ ├── index.html │ │ │ │ │ └── pascal.js │ │ │ │ ├── pegjs │ │ │ │ │ ├── index.html │ │ │ │ │ └── pegjs.js │ │ │ │ ├── perl │ │ │ │ │ ├── index.html │ │ │ │ │ └── perl.js │ │ │ │ ├── php │ │ │ │ │ ├── index.html │ │ │ │ │ ├── php.js │ │ │ │ │ └── test.js │ │ │ │ ├── pig │ │ │ │ │ ├── index.html │ │ │ │ │ └── pig.js │ │ │ │ ├── powershell │ │ │ │ │ ├── index.html │ │ │ │ │ ├── powershell.js │ │ │ │ │ └── test.js │ │ │ │ ├── properties │ │ │ │ │ ├── index.html │ │ │ │ │ └── properties.js │ │ │ │ ├── protobuf │ │ │ │ │ ├── index.html │ │ │ │ │ └── protobuf.js │ │ │ │ ├── pug │ │ │ │ │ ├── index.html │ │ │ │ │ └── pug.js │ │ │ │ ├── puppet │ │ │ │ │ ├── index.html │ │ │ │ │ └── puppet.js │ │ │ │ ├── python │ │ │ │ │ ├── index.html │ │ │ │ │ ├── python.js │ │ │ │ │ └── test.js │ │ │ │ ├── q │ │ │ │ │ ├── index.html │ │ │ │ │ └── q.js │ │ │ │ ├── r │ │ │ │ │ ├── index.html │ │ │ │ │ └── r.js │ │ │ │ ├── rpm │ │ │ │ │ ├── changes │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── rpm.js │ │ │ │ ├── rst │ │ │ │ │ ├── index.html │ │ │ │ │ └── rst.js │ │ │ │ ├── ruby │ │ │ │ │ ├── index.html │ │ │ │ │ ├── ruby.js │ │ │ │ │ └── test.js │ │ │ │ ├── rust │ │ │ │ │ ├── index.html │ │ │ │ │ ├── rust.js │ │ │ │ │ └── test.js │ │ │ │ ├── sas │ │ │ │ │ ├── index.html │ │ │ │ │ └── sas.js │ │ │ │ ├── sass │ │ │ │ │ ├── index.html │ │ │ │ │ ├── sass.js │ │ │ │ │ └── test.js │ │ │ │ ├── scheme │ │ │ │ │ ├── index.html │ │ │ │ │ └── scheme.js │ │ │ │ ├── shell │ │ │ │ │ ├── index.html │ │ │ │ │ ├── shell.js │ │ │ │ │ └── test.js │ │ │ │ ├── sieve │ │ │ │ │ ├── index.html │ │ │ │ │ └── sieve.js │ │ │ │ ├── slim │ │ │ │ │ ├── index.html │ │ │ │ │ ├── slim.js │ │ │ │ │ └── test.js │ │ │ │ ├── smalltalk │ │ │ │ │ ├── index.html │ │ │ │ │ └── smalltalk.js │ │ │ │ ├── smarty │ │ │ │ │ ├── index.html │ │ │ │ │ └── smarty.js │ │ │ │ ├── solr │ │ │ │ │ ├── index.html │ │ │ │ │ └── solr.js │ │ │ │ ├── soy │ │ │ │ │ ├── index.html │ │ │ │ │ ├── soy.js │ │ │ │ │ └── test.js │ │ │ │ ├── sparql │ │ │ │ │ ├── index.html │ │ │ │ │ └── sparql.js │ │ │ │ ├── spreadsheet │ │ │ │ │ ├── index.html │ │ │ │ │ └── spreadsheet.js │ │ │ │ ├── sql │ │ │ │ │ ├── index.html │ │ │ │ │ └── sql.js │ │ │ │ ├── stex │ │ │ │ │ ├── index.html │ │ │ │ │ ├── stex.js │ │ │ │ │ └── test.js │ │ │ │ ├── stylus │ │ │ │ │ ├── index.html │ │ │ │ │ └── stylus.js │ │ │ │ ├── swift │ │ │ │ │ ├── index.html │ │ │ │ │ ├── swift.js │ │ │ │ │ └── test.js │ │ │ │ ├── tcl │ │ │ │ │ ├── index.html │ │ │ │ │ └── tcl.js │ │ │ │ ├── textile │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── textile.js │ │ │ │ ├── tiddlywiki │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ └── tiddlywiki.js │ │ │ │ ├── tiki │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tiki.css │ │ │ │ │ └── tiki.js │ │ │ │ ├── toml │ │ │ │ │ ├── index.html │ │ │ │ │ └── toml.js │ │ │ │ ├── tornado │ │ │ │ │ ├── index.html │ │ │ │ │ └── tornado.js │ │ │ │ ├── troff │ │ │ │ │ ├── index.html │ │ │ │ │ └── troff.js │ │ │ │ ├── ttcn-cfg │ │ │ │ │ ├── index.html │ │ │ │ │ └── ttcn-cfg.js │ │ │ │ ├── ttcn │ │ │ │ │ ├── index.html │ │ │ │ │ └── ttcn.js │ │ │ │ ├── turtle │ │ │ │ │ ├── index.html │ │ │ │ │ └── turtle.js │ │ │ │ ├── twig │ │ │ │ │ ├── index.html │ │ │ │ │ └── twig.js │ │ │ │ ├── vb │ │ │ │ │ ├── index.html │ │ │ │ │ └── vb.js │ │ │ │ ├── vbscript │ │ │ │ │ ├── index.html │ │ │ │ │ └── vbscript.js │ │ │ │ ├── velocity │ │ │ │ │ ├── index.html │ │ │ │ │ └── velocity.js │ │ │ │ ├── verilog │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── verilog.js │ │ │ │ ├── vhdl │ │ │ │ │ ├── index.html │ │ │ │ │ └── vhdl.js │ │ │ │ ├── vue │ │ │ │ │ ├── index.html │ │ │ │ │ └── vue.js │ │ │ │ ├── wast │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── wast.js │ │ │ │ ├── webidl │ │ │ │ │ ├── index.html │ │ │ │ │ └── webidl.js │ │ │ │ ├── xml │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── xml.js │ │ │ │ ├── xquery │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── xquery.js │ │ │ │ ├── yacas │ │ │ │ │ ├── index.html │ │ │ │ │ └── yacas.js │ │ │ │ ├── yaml-frontmatter │ │ │ │ │ ├── index.html │ │ │ │ │ └── yaml-frontmatter.js │ │ │ │ ├── yaml │ │ │ │ │ ├── index.html │ │ │ │ │ └── yaml.js │ │ │ │ └── z80 │ │ │ │ │ ├── index.html │ │ │ │ │ └── z80.js │ │ │ │ ├── package.json │ │ │ │ ├── rollup.config.js │ │ │ │ └── theme │ │ │ │ ├── 3024-day.css │ │ │ │ ├── 3024-night.css │ │ │ │ ├── abcdef.css │ │ │ │ ├── ambiance-mobile.css │ │ │ │ ├── ambiance.css │ │ │ │ ├── ayu-dark.css │ │ │ │ ├── ayu-mirage.css │ │ │ │ ├── base16-dark.css │ │ │ │ ├── base16-light.css │ │ │ │ ├── bespin.css │ │ │ │ ├── blackboard.css │ │ │ │ ├── cobalt.css │ │ │ │ ├── colorforth.css │ │ │ │ ├── darcula.css │ │ │ │ ├── dracula.css │ │ │ │ ├── duotone-dark.css │ │ │ │ ├── duotone-light.css │ │ │ │ ├── eclipse.css │ │ │ │ ├── elegant.css │ │ │ │ ├── erlang-dark.css │ │ │ │ ├── gruvbox-dark.css │ │ │ │ ├── hopscotch.css │ │ │ │ ├── icecoder.css │ │ │ │ ├── idea.css │ │ │ │ ├── isotope.css │ │ │ │ ├── lesser-dark.css │ │ │ │ ├── liquibyte.css │ │ │ │ ├── lucario.css │ │ │ │ ├── material-darker.css │ │ │ │ ├── material-ocean.css │ │ │ │ ├── material-palenight.css │ │ │ │ ├── material.css │ │ │ │ ├── mbo.css │ │ │ │ ├── mdn-like.css │ │ │ │ ├── midnight.css │ │ │ │ ├── monokai.css │ │ │ │ ├── moxer.css │ │ │ │ ├── neat.css │ │ │ │ ├── neo.css │ │ │ │ ├── night.css │ │ │ │ ├── nord.css │ │ │ │ ├── oceanic-next.css │ │ │ │ ├── panda-syntax.css │ │ │ │ ├── paraiso-dark.css │ │ │ │ ├── paraiso-light.css │ │ │ │ ├── pastel-on-dark.css │ │ │ │ ├── railscasts.css │ │ │ │ ├── rubyblue.css │ │ │ │ ├── seti.css │ │ │ │ ├── shadowfox.css │ │ │ │ ├── solarized.css │ │ │ │ ├── ssms.css │ │ │ │ ├── the-matrix.css │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ ├── ttcn.css │ │ │ │ ├── twilight.css │ │ │ │ ├── vibrant-ink.css │ │ │ │ ├── xq-dark.css │ │ │ │ ├── xq-light.css │ │ │ │ ├── yeti.css │ │ │ │ ├── yonce.css │ │ │ │ └── zenburn.css │ │ ├── css │ │ │ └── debugger.css │ │ ├── font-awesome │ │ │ └── 5.15.1 │ │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── brands.css │ │ │ │ ├── brands.min.css │ │ │ │ ├── fontawesome.css │ │ │ │ ├── fontawesome.min.css │ │ │ │ ├── regular.css │ │ │ │ ├── regular.min.css │ │ │ │ ├── solid.css │ │ │ │ ├── solid.min.css │ │ │ │ ├── svg-with-js.css │ │ │ │ ├── svg-with-js.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── jquery-sse │ │ │ └── 0.14 │ │ │ │ ├── jquery.sse.js │ │ │ │ └── jquery.sse.min.js │ │ ├── jquery │ │ │ └── 3.5.1 │ │ │ │ └── jquery-3.5.1.min.js │ │ ├── js │ │ │ ├── breakpoint.js │ │ │ ├── breakpointspanel.js │ │ │ ├── callstackpanel.js │ │ │ ├── contextpanel.js │ │ │ ├── debugger.js │ │ │ ├── evaluatepanel.js │ │ │ ├── expressionpanel.js │ │ │ ├── globals.js │ │ │ ├── serveractions.js │ │ │ ├── utils.js │ │ │ └── variablespanel.js │ │ ├── underscore.string │ │ │ └── 3.3.4 │ │ │ │ └── underscore.string.min.js │ │ └── w2ui │ │ │ └── 1.5.master │ │ │ ├── w2ui.min.css │ │ │ └── w2ui.min.js │ ├── webapp.xml │ └── xsl │ │ ├── debugger.xsl │ │ └── request-dispatcher.xsl │ ├── documentation │ └── webapp.xml │ ├── examples │ ├── lib │ │ ├── HelloWorld.jar │ │ └── base64-2.3.8.jar │ ├── sch │ │ └── example-25.sch │ ├── static │ │ ├── images │ │ │ └── hello-world.jpg │ │ ├── scripts │ │ │ ├── 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.js │ │ │ │ └── run_prettify.js │ │ │ ├── jquery-ui │ │ │ │ ├── external │ │ │ │ │ └── jquery │ │ │ │ │ │ └── jquery.js │ │ │ │ ├── index.html │ │ │ │ ├── jquery-ui.js │ │ │ │ └── jquery-ui.min.js │ │ │ └── saxon-js │ │ │ │ ├── SaxonJS2.js │ │ │ │ ├── SaxonJS2.rt.js │ │ │ │ ├── lib │ │ │ │ └── xpath │ │ │ │ │ └── XPathJS.min.js │ │ │ │ └── opt │ │ │ │ ├── categories.json │ │ │ │ └── functions.json │ │ └── styles │ │ │ ├── google-code-prettify │ │ │ ├── prettify.css │ │ │ └── xslweb.css │ │ │ ├── jquery-ui │ │ │ ├── images │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── jquery-ui.css │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery-ui.structure.css │ │ │ ├── jquery-ui.structure.min.css │ │ │ ├── jquery-ui.theme.css │ │ │ └── jquery-ui.theme.min.css │ │ │ ├── saxon-js │ │ │ └── books.css │ │ │ ├── static.css │ │ │ └── xslweb │ │ │ └── base.css │ ├── stx │ │ └── huge-file │ │ │ ├── huge-file.stx │ │ │ └── huge-file.xml │ ├── webapp.xml │ ├── xquery │ │ └── tour │ │ │ └── tour.xq │ ├── xsd │ │ └── example-25.xsd │ └── xsl │ │ ├── attributes │ │ └── attributes.xsl │ │ ├── authentication │ │ └── authentication.xsl │ │ ├── caching │ │ ├── caching-extension-functions.xsl │ │ └── responsecaching.xsl │ │ ├── common │ │ └── example-page.xsl │ │ ├── cookies │ │ ├── cookies-extension-function.xsl │ │ └── cookies-response.xsl │ │ ├── custom-extension-function │ │ ├── HelloWorld.java │ │ └── custom-extension-function.xsl │ │ ├── dynfunc │ │ ├── call-function.xsl │ │ ├── function.xsl │ │ └── testbed.xsl │ │ ├── email │ │ ├── email-form.xsl │ │ └── email-send.xsl │ │ ├── expath-file │ │ └── expath-file.xsl │ │ ├── expath-http │ │ └── expath-http.xsl │ │ ├── expath-zip │ │ └── expath-zip.xsl │ │ ├── fop │ │ └── fop-serialization.xsl │ │ ├── headers │ │ ├── headers-extension-function.xsl │ │ └── headers-response.xsl │ │ ├── hello-world │ │ ├── hello-world-de.xsl │ │ ├── hello-world-fr.xsl │ │ └── hello-world.xsl │ │ ├── huge-file │ │ └── huge-file.xsl │ │ ├── index.xsl │ │ ├── job-scheduling │ │ ├── job-scheduling.xsl │ │ └── writetime-job.xsl │ │ ├── json │ │ ├── json-extension-functions.xsl │ │ └── json-serialization.xsl │ │ ├── log │ │ └── log.xsl │ │ ├── nestedpipeline │ │ ├── nestedpipeline.xsl │ │ └── nestingpipeline.xsl │ │ ├── pipeline │ │ ├── pipeline-step1.xsl │ │ ├── pipeline-step2.xsl │ │ ├── pipeline-step3.xsl │ │ └── pipeline-step4.xsl │ │ ├── queued-request │ │ ├── queued-pdf.xsl │ │ ├── queued-request-call.xsl │ │ ├── queued-request-status.xsl │ │ └── queued-request.xsl │ │ ├── relational-database │ │ ├── relational-database.xsl │ │ └── worldcup.mv.mv.db │ │ ├── request-dispatcher.xsl │ │ ├── resource │ │ ├── leaves.jpg │ │ └── resource-serialization.xsl │ │ ├── saxon-js │ │ ├── books-xml.xsl │ │ ├── books.xml │ │ ├── books.xsl │ │ └── saxon-js.xsl │ │ ├── script │ │ └── script.xsl │ │ ├── security │ │ ├── login.xsl │ │ ├── logout.xsl │ │ ├── secured-for-admin-role.xsl │ │ └── secured-for-read-permission.xsl │ │ ├── soap │ │ ├── soap-client.xsl │ │ ├── soap-server.xsl │ │ └── soap-wsdl.xsl │ │ ├── static │ │ └── static.xsl │ │ ├── upload │ │ ├── upload-form.xsl │ │ └── upload-save.xsl │ │ ├── xml-validation │ │ ├── generate-sample.xsl │ │ └── validation-report.xsl │ │ └── zip │ │ └── zip-serialization.xsl │ └── my-webapp │ ├── webapp.xml │ └── xsl │ ├── my-stylesheet.xsl │ └── request-dispatcher.xsl ├── pom.xml └── src └── main ├── java ├── com │ └── sun │ │ └── xml │ │ └── ws │ │ └── util │ │ └── xml │ │ └── ContentHandlerToXMLStreamWriter.java ├── javanet │ └── staxutils │ │ ├── Indentation.java │ │ ├── IndentingXMLStreamWriter.java │ │ └── helpers │ │ └── StreamWriterDelegate.java ├── net │ └── sf │ │ └── webdav │ │ ├── IMethodExecutor.java │ │ ├── IMimeTyper.java │ │ ├── ITransaction.java │ │ ├── IWebdavStore.java │ │ ├── LocalFileSystemStore.java │ │ ├── StoredObject.java │ │ ├── WebDavServletBean.java │ │ ├── WebdavServlet.java │ │ ├── WebdavStatus.java │ │ ├── exceptions │ │ ├── AccessDeniedException.java │ │ ├── LockFailedException.java │ │ ├── ObjectAlreadyExistsException.java │ │ ├── ObjectNotFoundException.java │ │ ├── UnauthenticatedException.java │ │ └── WebdavException.java │ │ ├── fromcatalina │ │ ├── MD5Encoder.java │ │ ├── RequestUtil.java │ │ ├── URLEncoder.java │ │ ├── XMLHelper.java │ │ └── XMLWriter.java │ │ ├── locking │ │ ├── IResourceLocks.java │ │ ├── LockedObject.java │ │ └── ResourceLocks.java │ │ └── methods │ │ ├── AbstractMethod.java │ │ ├── DeterminableMethod.java │ │ ├── DoCopy.java │ │ ├── DoDelete.java │ │ ├── DoGet.java │ │ ├── DoHead.java │ │ ├── DoLock.java │ │ ├── DoMkcol.java │ │ ├── DoMove.java │ │ ├── DoNotImplemented.java │ │ ├── DoOptions.java │ │ ├── DoPropfind.java │ │ ├── DoProppatch.java │ │ ├── DoPut.java │ │ └── DoUnlock.java └── nl │ └── armatiek │ └── xslweb │ ├── configuration │ ├── Attribute.java │ ├── Context.java │ ├── DataSource.java │ ├── Definitions.java │ ├── Fingerprints.java │ ├── Job.java │ ├── Parameter.java │ ├── Queue.java │ ├── Resource.java │ └── WebApp.java │ ├── ehcache │ └── DefaultExpiryPolicy.java │ ├── error │ └── XSLWebException.java │ ├── joost │ └── MessageEmitter.java │ ├── pipeline │ ├── BinarySerializerStep.java │ ├── Condition.java │ ├── ConditionalPipelineStep.java │ ├── FopSerializerStep.java │ ├── IdentityTransformerStep.java │ ├── JSONSerializerStep.java │ ├── OtherwiseCondition.java │ ├── ParameterizablePipelineStep.java │ ├── PipelineHandler.java │ ├── PipelineStep.java │ ├── PipelineStepIterator.java │ ├── QueryStep.java │ ├── ResourceSerializerStep.java │ ├── ResponseStep.java │ ├── SchemaValidatorStep.java │ ├── SchematronValidatorStep.java │ ├── SerializerStep.java │ ├── StylesheetExportFileStep.java │ ├── SystemTransformerStep.java │ ├── TransformerSTXStep.java │ ├── TransformerStep.java │ ├── WhenCondition.java │ └── ZipSerializerStep.java │ ├── quartz │ ├── NonConcurrentExecutionXSLWebJob.java │ ├── XSLWebJob.java │ └── XSLWebSchedulerListener.java │ ├── saxon │ ├── configuration │ │ ├── XSLWebConfiguration.java │ │ └── XSLWebInitializer.java │ ├── debug │ │ ├── Breakpoint.java │ │ ├── BreakpointInfo.java │ │ ├── DebugClient.java │ │ ├── DebugSSEServlet.java │ │ ├── DebugServlet.java │ │ ├── DebugTraceCodeInjector.java │ │ ├── DebugTraceListener.java │ │ ├── DebugUtils.java │ │ ├── DebugXMLFilter.java │ │ ├── DebugXMLReader.java │ │ ├── EvaluateXPath.java │ │ ├── XQueryDebugTraceListener.java │ │ └── XSLTDebugTraceListener.java │ ├── destination │ │ ├── SourceDestination.java │ │ ├── TeeSourceDestination.java │ │ └── XdmSourceDestination.java │ ├── errrorlistener │ │ ├── ErrorListenerMessageListener.java │ │ ├── MessageListenerProxy.java │ │ ├── TransformationErrorListener.java │ │ └── ValidatorErrorHandler.java │ ├── functions │ │ ├── ExtensionFunctionCall.java │ │ ├── ExtensionFunctionDefinition.java │ │ ├── base64 │ │ │ ├── Base64Decode.java │ │ │ └── Base64Encode.java │ │ ├── cache │ │ │ └── Remove.java │ │ ├── common │ │ │ ├── GetAttributeCall.java │ │ │ ├── GetCacheValueCall.java │ │ │ ├── SetAttributeCall.java │ │ │ └── SetCacheValueCall.java │ │ ├── context │ │ │ ├── GetAttribute.java │ │ │ └── SetAttribute.java │ │ ├── dynfunc │ │ │ ├── Call.java │ │ │ ├── DynamicExtensionFunctionDefinition.java │ │ │ ├── ExtensionFunction.java │ │ │ ├── IsRegistered.java │ │ │ ├── JavaStringObject.java │ │ │ └── Register.java │ │ ├── exec │ │ │ ├── ExecExternal.java │ │ │ └── Slf4JOutputStream.java │ │ ├── expath │ │ │ └── file │ │ │ │ ├── Append.java │ │ │ │ ├── AppendBinary.java │ │ │ │ ├── AppendText.java │ │ │ │ ├── AppendTextLines.java │ │ │ │ ├── Children.java │ │ │ │ ├── Copy.java │ │ │ │ ├── CreateDir.java │ │ │ │ ├── CreateTempDir.java │ │ │ │ ├── CreateTempFile.java │ │ │ │ ├── Delete.java │ │ │ │ ├── DirName.java │ │ │ │ ├── DirSeparator.java │ │ │ │ ├── Exists.java │ │ │ │ ├── FileExtensionFunctionCall.java │ │ │ │ ├── IsDir.java │ │ │ │ ├── IsFile.java │ │ │ │ ├── LastModified.java │ │ │ │ ├── LineSeparator.java │ │ │ │ ├── List.java │ │ │ │ ├── Move.java │ │ │ │ ├── Name.java │ │ │ │ ├── Parent.java │ │ │ │ ├── PathSeparator.java │ │ │ │ ├── PathToNative.java │ │ │ │ ├── PathToURI.java │ │ │ │ ├── ReadBinary.java │ │ │ │ ├── ReadText.java │ │ │ │ ├── ReadTextLines.java │ │ │ │ ├── ResolvePath.java │ │ │ │ ├── Size.java │ │ │ │ ├── TempDir.java │ │ │ │ ├── Write.java │ │ │ │ ├── WriteBinary.java │ │ │ │ ├── WriteBinaryCall.java │ │ │ │ ├── WriteCall.java │ │ │ │ ├── WriteText.java │ │ │ │ ├── WriteTextCall.java │ │ │ │ ├── WriteTextLines.java │ │ │ │ ├── WriteTextLinesCall.java │ │ │ │ └── error │ │ │ │ └── FileException.java │ │ ├── httpclient │ │ │ ├── HttpClientEntityResolver.java │ │ │ ├── RequestUtils.java │ │ │ ├── ResponseUtils.java │ │ │ ├── SendRequest.java │ │ │ ├── TrustAllCerts.java │ │ │ └── Types.java │ │ ├── image │ │ │ ├── Scale.java │ │ │ └── Size.java │ │ ├── io │ │ │ └── RegisterTempFile.java │ │ ├── json │ │ │ ├── EscapeJSON.java │ │ │ ├── ParseJSON.java │ │ │ ├── SerializeJSON.java │ │ │ └── UnescapeJSON.java │ │ ├── log │ │ │ ├── Debug.java │ │ │ ├── DebugCall.java │ │ │ ├── Error.java │ │ │ ├── ErrorCall.java │ │ │ ├── Info.java │ │ │ ├── InfoCall.java │ │ │ ├── Log.java │ │ │ ├── LogCall.java │ │ │ ├── LogDef.java │ │ │ ├── Trace.java │ │ │ ├── TraceCall.java │ │ │ ├── Warn.java │ │ │ └── WarnCall.java │ │ ├── mail │ │ │ └── SendMail.java │ │ ├── queue │ │ │ ├── AddRequest.java │ │ │ ├── GetInfo.java │ │ │ └── GetStatus.java │ │ ├── request │ │ │ ├── GetAttribute.java │ │ │ ├── IsJobRequest.java │ │ │ ├── IsNestedRequest.java │ │ │ ├── MatchAcceptHeader.java │ │ │ └── SetAttribute.java │ │ ├── response │ │ │ ├── AddCookie.java │ │ │ ├── AddDateHeader.java │ │ │ ├── AddHeader.java │ │ │ ├── AddIntHeader.java │ │ │ ├── EncodeRedirectURL.java │ │ │ ├── EncodeURL.java │ │ │ ├── IsCommitted.java │ │ │ ├── SetBufferSize.java │ │ │ └── SetStatus.java │ │ ├── script │ │ │ ├── Evaluate.java │ │ │ ├── GetScriptEngine.java │ │ │ ├── Invoke.java │ │ │ └── InvokeFunction.java │ │ ├── security │ │ │ ├── HasPermission.java │ │ │ ├── HasRole.java │ │ │ ├── IsAuthenticated.java │ │ │ ├── IsGuest.java │ │ │ ├── IsUser.java │ │ │ ├── Principal.java │ │ │ └── SecurityExtensionFunctionCall.java │ │ ├── serialize │ │ │ └── Serialize.java │ │ ├── session │ │ │ ├── AttributeNames.java │ │ │ ├── GetAttribute.java │ │ │ ├── Invalidate.java │ │ │ ├── SetAttribute.java │ │ │ └── SetMaxInactiveInterval.java │ │ ├── sql │ │ │ ├── Close.java │ │ │ ├── CloseableAutoCloseableWrapper.java │ │ │ ├── Commit.java │ │ │ ├── ExecuteQuery.java │ │ │ ├── ExecuteUpdate.java │ │ │ ├── GetConnection.java │ │ │ ├── GetNextRow.java │ │ │ ├── ResultSetToNode.java │ │ │ └── Rollback.java │ │ ├── transform │ │ │ └── Transform.java │ │ ├── util │ │ │ ├── DiscardDocument.java │ │ │ ├── Parse.java │ │ │ └── ParseHtml.java │ │ ├── uuid │ │ │ └── UUID.java │ │ ├── webapp │ │ │ ├── GetAttribute.java │ │ │ ├── GetCacheValue.java │ │ │ ├── RemoveCacheValue.java │ │ │ ├── SetAttribute.java │ │ │ └── SetCacheValue.java │ │ └── zip │ │ │ ├── Unzip.java │ │ │ └── Zip.java │ ├── log │ │ └── Slf4JLogger.java │ ├── uriresolver │ │ └── XSLWebURIResolver.java │ └── utils │ │ ├── NodeInfoUtils.java │ │ ├── SaxonUtils.java │ │ └── SerializableNodeInfo.java │ ├── serializer │ ├── AbstractSerializer.java │ ├── BinarySerializer.java │ ├── FopSerializer.java │ ├── RequestSerializer.java │ ├── ResourceSerializer.java │ └── ZipSerializer.java │ ├── shiro │ ├── OidcAuthorizationGenerator.java │ └── ShiroFilter.java │ ├── utils │ ├── Closeable.java │ ├── ClosedStatusOutputStream.java │ ├── XMLUtils.java │ ├── XSLWebUtils.java │ └── ZipUtils.java │ ├── web │ ├── filter │ │ ├── PipelineGeneratorFilter.java │ │ ├── RequestSerializerFilter.java │ │ ├── SetCharacterEncodingFilter.java │ │ ├── StaticResourceFilter.java │ │ ├── WebAppFilter.java │ │ ├── WebDavFilter.java │ │ └── XSSEncodingFilter.java │ ├── listener │ │ └── WebAppEventListener.java │ └── servlet │ │ ├── DelegatingServletOutputStream.java │ │ ├── FileServlet.java │ │ ├── InternalRequest.java │ │ ├── LogServlet.java │ │ ├── XSLWebFilterChain.java │ │ ├── XSLWebFilterConfig.java │ │ ├── XSLWebHttpServletRequest.java │ │ ├── XSLWebHttpServletResponse.java │ │ ├── XSLWebHttpSession.java │ │ └── XSLWebServlet.java │ └── xml │ ├── BodyFilter.java │ ├── CleanupXMLStreamWriter.java │ └── SerializingContentHandler.java ├── resources ├── identity.xsl ├── mime-types.properties └── serialize-sequence.xsl └── webapp └── WEB-INF └── web.xml /.gitignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/.gitignore.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/README.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/docker/Readme.txt -------------------------------------------------------------------------------- /docker/build_docker.bat: -------------------------------------------------------------------------------- 1 | docker build --tag armatiek/xslweb . 2 | -------------------------------------------------------------------------------- /docker/build_docker.sh: -------------------------------------------------------------------------------- 1 | docker build --tag armatiek/xslweb . 2 | -------------------------------------------------------------------------------- /docker/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/docker/context.xml -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/docker/setenv.sh -------------------------------------------------------------------------------- /docs/XSLWeb Developer Manual.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/docs/XSLWeb Developer Manual.adoc -------------------------------------------------------------------------------- /docs/XSLWeb_3_0_Quick_Start.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/docs/XSLWeb_3_0_Quick_Start.pdf -------------------------------------------------------------------------------- /docs/docinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/docs/docinfo.html -------------------------------------------------------------------------------- /docs/images/XSLWeb.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/docs/images/XSLWeb.graphml -------------------------------------------------------------------------------- /docs/images/xslweb_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/docs/images/xslweb_flow.png -------------------------------------------------------------------------------- /docs/images/xslweb_flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/docs/images/xslweb_flow.svg -------------------------------------------------------------------------------- /home/common/xquery/lib/functx/functx-1.0.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/common/xquery/lib/functx/functx-1.0.xq -------------------------------------------------------------------------------- /home/common/xsl/lib/functx/functx-1.0.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/common/xsl/lib/functx/functx-1.0.xsl -------------------------------------------------------------------------------- /home/common/xsl/lib/xslweb/xslweb.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/common/xsl/lib/xslweb/xslweb.xsl -------------------------------------------------------------------------------- /home/common/xsl/system/authentication/basic-authentication.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/common/xsl/system/authentication/basic-authentication.xsl -------------------------------------------------------------------------------- /home/common/xsl/system/identity/identity.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/common/xsl/system/identity/identity.xsl -------------------------------------------------------------------------------- /home/common/xsl/system/response/response.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/common/xsl/system/response/response.xsl -------------------------------------------------------------------------------- /home/common/xsl/system/schematron/iso_abstract_expand.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/common/xsl/system/schematron/iso_abstract_expand.xsl -------------------------------------------------------------------------------- /home/common/xsl/system/schematron/iso_dsdl_include.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/common/xsl/system/schematron/iso_dsdl_include.xsl -------------------------------------------------------------------------------- /home/common/xsl/system/schematron/iso_schematron_message_xslt2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/common/xsl/system/schematron/iso_schematron_message_xslt2.xsl -------------------------------------------------------------------------------- /home/common/xsl/system/schematron/iso_schematron_skeleton_for_saxon.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/common/xsl/system/schematron/iso_schematron_skeleton_for_saxon.xsl -------------------------------------------------------------------------------- /home/common/xsl/system/schematron/iso_svrl_for_xslt2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/common/xsl/system/schematron/iso_svrl_for_xslt2.xsl -------------------------------------------------------------------------------- /home/common/xsl/system/schematron/sch-messages-cs.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/common/xsl/system/schematron/sch-messages-cs.xhtml -------------------------------------------------------------------------------- /home/common/xsl/system/schematron/sch-messages-de.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/common/xsl/system/schematron/sch-messages-de.xhtml -------------------------------------------------------------------------------- /home/common/xsl/system/schematron/sch-messages-en.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/common/xsl/system/schematron/sch-messages-en.xhtml -------------------------------------------------------------------------------- /home/common/xsl/system/schematron/sch-messages-fr.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/common/xsl/system/schematron/sch-messages-fr.xhtml -------------------------------------------------------------------------------- /home/common/xsl/system/schematron/sch-messages-nl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/common/xsl/system/schematron/sch-messages-nl.xhtml -------------------------------------------------------------------------------- /home/common/xsl/system/schematron/schematron-skeleton-api.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/common/xsl/system/schematron/schematron-skeleton-api.htm -------------------------------------------------------------------------------- /home/common/xsl/system/trace/timing.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/common/xsl/system/trace/timing.xsl -------------------------------------------------------------------------------- /home/config/c3p0-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/c3p0-config.xml -------------------------------------------------------------------------------- /home/config/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/logback.xml -------------------------------------------------------------------------------- /home/config/xsd/ehcache/ehcache-107-ext.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/xsd/ehcache/ehcache-107-ext.xsd -------------------------------------------------------------------------------- /home/config/xsd/ehcache/ehcache-core.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/xsd/ehcache/ehcache-core.xsd -------------------------------------------------------------------------------- /home/config/xsd/ehcache/ehcache-multi.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/xsd/ehcache/ehcache-multi.xsd -------------------------------------------------------------------------------- /home/config/xsd/ehcache/ehcache.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/xsd/ehcache/ehcache.xsd -------------------------------------------------------------------------------- /home/config/xsd/fop/fop-configuration.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/xsd/fop/fop-configuration.xsd -------------------------------------------------------------------------------- /home/config/xsd/quartz/job_scheduling_data_2_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/xsd/quartz/job_scheduling_data_2_0.xsd -------------------------------------------------------------------------------- /home/config/xsd/saxon/annotatedConfig.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/xsd/saxon/annotatedConfig.xsd -------------------------------------------------------------------------------- /home/config/xsd/saxon/config.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/xsd/saxon/config.xsd -------------------------------------------------------------------------------- /home/config/xsd/saxon/saxon-attributes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/xsd/saxon/saxon-attributes.xsd -------------------------------------------------------------------------------- /home/config/xsd/w3c/schema-for-serialization-parameters.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/xsd/w3c/schema-for-serialization-parameters.xsd -------------------------------------------------------------------------------- /home/config/xsd/xslweb/fop-serializer.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/xsd/xslweb/fop-serializer.xsd -------------------------------------------------------------------------------- /home/config/xsd/xslweb/pipeline.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/xsd/xslweb/pipeline.xsd -------------------------------------------------------------------------------- /home/config/xsd/xslweb/request.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/xsd/xslweb/request.xsd -------------------------------------------------------------------------------- /home/config/xsd/xslweb/response.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/xsd/xslweb/response.xsd -------------------------------------------------------------------------------- /home/config/xsd/xslweb/webapp.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/xsd/xslweb/webapp.xsd -------------------------------------------------------------------------------- /home/config/xsd/xslweb/zip-serializer.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/xsd/xslweb/zip-serializer.xsd -------------------------------------------------------------------------------- /home/config/xslweb-ehcache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/xslweb-ehcache.xml -------------------------------------------------------------------------------- /home/config/xslweb-jobs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/xslweb-jobs.xml -------------------------------------------------------------------------------- /home/config/xslweb-quartz.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/xslweb-quartz.properties -------------------------------------------------------------------------------- /home/config/xslweb.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/config/xslweb.properties -------------------------------------------------------------------------------- /home/webapps/ROOT/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/ROOT/static/favicon.ico -------------------------------------------------------------------------------- /home/webapps/ROOT/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: *' 2 | Disallow: / -------------------------------------------------------------------------------- /home/webapps/ROOT/static/styles/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/ROOT/static/styles/base.css -------------------------------------------------------------------------------- /home/webapps/ROOT/webapp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/ROOT/webapp.xml -------------------------------------------------------------------------------- /home/webapps/ROOT/xsl/itworks.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/ROOT/xsl/itworks.xsl -------------------------------------------------------------------------------- /home/webapps/ROOT/xsl/request-dispatcher.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/ROOT/xsl/request-dispatcher.xsl -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/.editorconfig -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/.gitattributes -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/.npmignore -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/.travis.yml -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/AUTHORS -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/CHANGELOG.md -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/CONTRIBUTING.md -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/LICENSE -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/README.md -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/comment/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/comment/comment.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/dialog/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/dialog/dialog.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/dialog/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/dialog/dialog.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/display/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/display/panel.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/display/rulers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/display/rulers.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/edit/closetag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/edit/closetag.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/edit/matchtags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/edit/matchtags.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/fold/brace-fold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/fold/brace-fold.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/fold/foldcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/fold/foldcode.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/fold/foldgutter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/fold/foldgutter.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/fold/xml-fold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/fold/xml-fold.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/hint/css-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/hint/css-hint.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/hint/html-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/hint/html-hint.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/hint/show-hint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/hint/show-hint.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/hint/show-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/hint/show-hint.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/hint/sql-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/hint/sql-hint.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/hint/xml-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/hint/xml-hint.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/lint/css-lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/lint/css-lint.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/lint/html-lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/lint/html-lint.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/lint/json-lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/lint/json-lint.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/lint/lint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/lint/lint.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/lint/lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/lint/lint.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/lint/yaml-lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/lint/yaml-lint.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/merge/merge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/merge/merge.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/merge/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/merge/merge.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/mode/keyword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/mode/keyword.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/mode/loadmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/mode/loadmode.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/mode/multiplex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/mode/multiplex.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/mode/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/mode/overlay.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/mode/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/mode/simple.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/runmode/runmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/runmode/runmode.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/search/search.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/tern/tern.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/tern/tern.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/tern/tern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/tern/tern.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/tern/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/tern/worker.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/addon/wrap/hardwrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/addon/wrap/hardwrap.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/bin/authors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/bin/authors.sh -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/bin/lint: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | process.exit(require("../test/lint").ok ? 0 : 1); 4 | -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/bin/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/bin/release -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/bin/source-highlight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/bin/source-highlight -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/bin/upload-release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/bin/upload-release.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/keymap/emacs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/keymap/emacs.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/keymap/sublime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/keymap/sublime.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/keymap/vim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/keymap/vim.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/lib/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/lib/codemirror.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/lib/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/lib/codemirror.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/apl/apl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/apl/apl.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/apl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/apl/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/asn.1/asn.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/asn.1/asn.1.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/asn.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/asn.1/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/asterisk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/asterisk/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/clike/clike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/clike/clike.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/clike/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/clike/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/clike/scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/clike/scala.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/clike/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/clike/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/clojure/clojure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/clojure/clojure.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/clojure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/clojure/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/clojure/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/clojure/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/cmake/cmake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/cmake/cmake.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/cmake/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/cmake/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/cobol/cobol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/cobol/cobol.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/cobol/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/cobol/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/crystal/crystal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/crystal/crystal.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/crystal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/crystal/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/css/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/css/css.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/css/gss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/css/gss.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/css/gss_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/css/gss_test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/css/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/css/less.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/css/less.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/css/less_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/css/less_test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/css/scss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/css/scss.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/css/scss_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/css/scss_test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/css/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/css/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/cypher/cypher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/cypher/cypher.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/cypher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/cypher/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/cypher/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/cypher/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/d/d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/d/d.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/d/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/d/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/d/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/dart/dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/dart/dart.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/dart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/dart/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/diff/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/diff/diff.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/diff/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/diff/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/django/django.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/django/django.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/django/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/django/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/dockerfile/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/dockerfile/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/dtd/dtd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/dtd/dtd.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/dtd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/dtd/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/dylan/dylan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/dylan/dylan.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/dylan/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/dylan/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/dylan/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/dylan/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/ebnf/ebnf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/ebnf/ebnf.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/ebnf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/ebnf/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/ecl/ecl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/ecl/ecl.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/ecl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/ecl/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/eiffel/eiffel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/eiffel/eiffel.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/eiffel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/eiffel/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/elm/elm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/elm/elm.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/elm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/elm/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/erlang/erlang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/erlang/erlang.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/erlang/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/erlang/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/factor/factor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/factor/factor.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/factor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/factor/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/fcl/fcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/fcl/fcl.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/fcl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/fcl/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/forth/forth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/forth/forth.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/forth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/forth/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/fortran/fortran.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/fortran/fortran.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/fortran/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/fortran/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/gas/gas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/gas/gas.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/gas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/gas/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/gfm/gfm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/gfm/gfm.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/gfm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/gfm/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/gfm/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/gfm/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/gherkin/gherkin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/gherkin/gherkin.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/gherkin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/gherkin/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/go/go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/go/go.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/go/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/go/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/groovy/groovy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/groovy/groovy.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/groovy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/groovy/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/haml/haml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/haml/haml.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/haml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/haml/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/haml/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/haml/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/haskell/haskell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/haskell/haskell.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/haskell/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/haskell/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/haxe/haxe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/haxe/haxe.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/haxe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/haxe/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/http/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/http/http.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/http/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/http/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/idl/idl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/idl/idl.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/idl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/idl/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/javascript/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/javascript/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/jinja2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/jinja2/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/jinja2/jinja2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/jinja2/jinja2.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/jsx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/jsx/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/jsx/jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/jsx/jsx.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/jsx/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/jsx/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/julia/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/julia/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/julia/julia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/julia/julia.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/lua/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/lua/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/lua/lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/lua/lua.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/markdown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/markdown/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/markdown/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/markdown/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/mbox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/mbox/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/mbox/mbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/mbox/mbox.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/meta.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/mirc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/mirc/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/mirc/mirc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/mirc/mirc.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/mllike/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/mllike/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/mllike/mllike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/mllike/mllike.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/modelica/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/modelica/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/mscgen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/mscgen/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/mscgen/mscgen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/mscgen/mscgen.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/mscgen/xu_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/mscgen/xu_test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/mumps/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/mumps/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/mumps/mumps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/mumps/mumps.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/nginx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/nginx/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/nginx/nginx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/nginx/nginx.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/nsis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/nsis/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/nsis/nsis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/nsis/nsis.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/ntriples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/ntriples/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/octave/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/octave/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/octave/octave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/octave/octave.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/oz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/oz/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/oz/oz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/oz/oz.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/pascal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/pascal/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/pascal/pascal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/pascal/pascal.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/pegjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/pegjs/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/pegjs/pegjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/pegjs/pegjs.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/perl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/perl/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/perl/perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/perl/perl.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/php/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/php/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/php/php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/php/php.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/php/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/php/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/pig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/pig/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/pig/pig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/pig/pig.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/powershell/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/powershell/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/protobuf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/protobuf/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/pug/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/pug/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/pug/pug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/pug/pug.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/puppet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/puppet/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/puppet/puppet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/puppet/puppet.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/python/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/python/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/python/python.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/python/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/python/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/q/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/q/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/q/q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/q/q.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/r/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/r/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/r/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/r/r.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/rpm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/rpm/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/rpm/rpm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/rpm/rpm.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/rst/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/rst/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/rst/rst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/rst/rst.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/ruby/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/ruby/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/ruby/ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/ruby/ruby.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/ruby/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/ruby/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/rust/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/rust/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/rust/rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/rust/rust.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/rust/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/rust/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/sas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/sas/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/sas/sas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/sas/sas.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/sass/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/sass/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/sass/sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/sass/sass.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/sass/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/sass/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/scheme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/scheme/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/scheme/scheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/scheme/scheme.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/shell/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/shell/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/shell/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/shell/shell.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/shell/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/shell/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/sieve/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/sieve/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/sieve/sieve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/sieve/sieve.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/slim/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/slim/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/slim/slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/slim/slim.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/slim/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/slim/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/smarty/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/smarty/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/smarty/smarty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/smarty/smarty.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/solr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/solr/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/solr/solr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/solr/solr.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/soy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/soy/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/soy/soy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/soy/soy.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/soy/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/soy/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/sparql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/sparql/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/sparql/sparql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/sparql/sparql.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/sql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/sql/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/sql/sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/sql/sql.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/stex/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/stex/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/stex/stex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/stex/stex.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/stex/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/stex/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/stylus/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/stylus/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/stylus/stylus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/stylus/stylus.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/swift/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/swift/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/swift/swift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/swift/swift.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/swift/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/swift/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/tcl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/tcl/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/tcl/tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/tcl/tcl.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/textile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/textile/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/textile/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/textile/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/textile/textile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/textile/textile.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/tiki/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/tiki/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/tiki/tiki.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/tiki/tiki.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/tiki/tiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/tiki/tiki.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/toml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/toml/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/toml/toml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/toml/toml.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/tornado/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/tornado/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/tornado/tornado.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/tornado/tornado.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/troff/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/troff/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/troff/troff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/troff/troff.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/ttcn-cfg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/ttcn-cfg/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/ttcn/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/ttcn/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/ttcn/ttcn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/ttcn/ttcn.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/turtle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/turtle/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/turtle/turtle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/turtle/turtle.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/twig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/twig/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/twig/twig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/twig/twig.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/vb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/vb/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/vb/vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/vb/vb.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/vbscript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/vbscript/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/velocity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/velocity/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/verilog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/verilog/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/verilog/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/verilog/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/verilog/verilog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/verilog/verilog.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/vhdl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/vhdl/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/vhdl/vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/vhdl/vhdl.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/vue/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/vue/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/vue/vue.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/wast/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/wast/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/wast/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/wast/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/wast/wast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/wast/wast.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/webidl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/webidl/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/webidl/webidl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/webidl/webidl.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/xml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/xml/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/xml/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/xml/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/xml/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/xml/xml.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/xquery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/xquery/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/xquery/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/xquery/test.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/xquery/xquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/xquery/xquery.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/yacas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/yacas/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/yacas/yacas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/yacas/yacas.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/yaml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/yaml/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/yaml/yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/yaml/yaml.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/z80/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/z80/index.html -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/mode/z80/z80.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/mode/z80/z80.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/package.json -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/rollup.config.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/3024-day.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/3024-day.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/3024-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/3024-night.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/abcdef.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/abcdef.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/ambiance.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/ambiance.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/ayu-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/ayu-dark.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/ayu-mirage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/ayu-mirage.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/base16-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/base16-dark.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/base16-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/base16-light.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/bespin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/bespin.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/blackboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/blackboard.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/cobalt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/cobalt.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/colorforth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/colorforth.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/darcula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/darcula.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/dracula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/dracula.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/duotone-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/duotone-dark.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/duotone-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/duotone-light.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/eclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/eclipse.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/elegant.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/elegant.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/erlang-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/erlang-dark.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/gruvbox-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/gruvbox-dark.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/hopscotch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/hopscotch.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/icecoder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/icecoder.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/idea.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/idea.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/isotope.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/isotope.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/lesser-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/lesser-dark.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/liquibyte.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/liquibyte.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/lucario.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/lucario.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/material-ocean.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/material-ocean.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/material.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/mbo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/mbo.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/mdn-like.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/mdn-like.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/midnight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/midnight.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/monokai.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/moxer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/moxer.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/neat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/neat.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/neo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/neo.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/night.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/nord.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/nord.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/oceanic-next.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/oceanic-next.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/panda-syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/panda-syntax.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/paraiso-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/paraiso-dark.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/paraiso-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/paraiso-light.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/pastel-on-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/pastel-on-dark.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/railscasts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/railscasts.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/rubyblue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/rubyblue.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/seti.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/seti.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/shadowfox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/shadowfox.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/solarized.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/ssms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/ssms.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/the-matrix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/the-matrix.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/ttcn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/ttcn.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/twilight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/twilight.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/vibrant-ink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/vibrant-ink.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/xq-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/xq-dark.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/xq-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/xq-light.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/yeti.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/yeti.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/yonce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/yonce.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/codemirror/5.58.3/theme/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/codemirror/5.58.3/theme/zenburn.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/css/debugger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/css/debugger.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/font-awesome/5.15.1/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/font-awesome/5.15.1/css/all.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/font-awesome/5.15.1/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/font-awesome/5.15.1/css/all.min.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/font-awesome/5.15.1/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/font-awesome/5.15.1/css/brands.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/font-awesome/5.15.1/css/brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/font-awesome/5.15.1/css/brands.min.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/font-awesome/5.15.1/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/font-awesome/5.15.1/css/fontawesome.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/font-awesome/5.15.1/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/font-awesome/5.15.1/css/regular.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/font-awesome/5.15.1/css/regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/font-awesome/5.15.1/css/regular.min.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/font-awesome/5.15.1/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/font-awesome/5.15.1/css/solid.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/font-awesome/5.15.1/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/font-awesome/5.15.1/css/solid.min.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/font-awesome/5.15.1/css/svg-with-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/font-awesome/5.15.1/css/svg-with-js.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/font-awesome/5.15.1/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/font-awesome/5.15.1/css/v4-shims.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/font-awesome/5.15.1/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/font-awesome/5.15.1/css/v4-shims.min.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/jquery-sse/0.14/jquery.sse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/jquery-sse/0.14/jquery.sse.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/jquery-sse/0.14/jquery.sse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/jquery-sse/0.14/jquery.sse.min.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/jquery/3.5.1/jquery-3.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/jquery/3.5.1/jquery-3.5.1.min.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/js/breakpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/js/breakpoint.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/js/breakpointspanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/js/breakpointspanel.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/js/callstackpanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/js/callstackpanel.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/js/contextpanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/js/contextpanel.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/js/debugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/js/debugger.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/js/evaluatepanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/js/evaluatepanel.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/js/expressionpanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/js/expressionpanel.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/js/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/js/globals.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/js/serveractions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/js/serveractions.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/js/utils.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/js/variablespanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/js/variablespanel.js -------------------------------------------------------------------------------- /home/webapps/debugger/static/w2ui/1.5.master/w2ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/w2ui/1.5.master/w2ui.min.css -------------------------------------------------------------------------------- /home/webapps/debugger/static/w2ui/1.5.master/w2ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/static/w2ui/1.5.master/w2ui.min.js -------------------------------------------------------------------------------- /home/webapps/debugger/webapp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/webapp.xml -------------------------------------------------------------------------------- /home/webapps/debugger/xsl/debugger.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/xsl/debugger.xsl -------------------------------------------------------------------------------- /home/webapps/debugger/xsl/request-dispatcher.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/debugger/xsl/request-dispatcher.xsl -------------------------------------------------------------------------------- /home/webapps/documentation/webapp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/documentation/webapp.xml -------------------------------------------------------------------------------- /home/webapps/examples/lib/HelloWorld.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/lib/HelloWorld.jar -------------------------------------------------------------------------------- /home/webapps/examples/lib/base64-2.3.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/lib/base64-2.3.8.jar -------------------------------------------------------------------------------- /home/webapps/examples/sch/example-25.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/sch/example-25.sch -------------------------------------------------------------------------------- /home/webapps/examples/static/images/hello-world.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/images/hello-world.jpg -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-basic.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-clj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-clj.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-css.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-dart.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-go.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-hs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-hs.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-lisp.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-llvm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-llvm.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-lua.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-ml.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-mumps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-mumps.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-n.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-proto.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-r.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-rd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-rd.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-scala.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-sql.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-tcl.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-tex.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-vb.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-vhdl.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-wiki.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-xq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-xq.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/lang-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/lang-yaml.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/google-code-prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/google-code-prettify/prettify.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/jquery-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/jquery-ui/index.html -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/jquery-ui/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/jquery-ui/jquery-ui.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/jquery-ui/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/jquery-ui/jquery-ui.min.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/saxon-js/SaxonJS2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/saxon-js/SaxonJS2.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/saxon-js/SaxonJS2.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/saxon-js/SaxonJS2.rt.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/saxon-js/lib/xpath/XPathJS.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/saxon-js/lib/xpath/XPathJS.min.js -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/saxon-js/opt/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/saxon-js/opt/categories.json -------------------------------------------------------------------------------- /home/webapps/examples/static/scripts/saxon-js/opt/functions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/scripts/saxon-js/opt/functions.json -------------------------------------------------------------------------------- /home/webapps/examples/static/styles/google-code-prettify/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/styles/google-code-prettify/prettify.css -------------------------------------------------------------------------------- /home/webapps/examples/static/styles/google-code-prettify/xslweb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/styles/google-code-prettify/xslweb.css -------------------------------------------------------------------------------- /home/webapps/examples/static/styles/jquery-ui/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/styles/jquery-ui/jquery-ui.css -------------------------------------------------------------------------------- /home/webapps/examples/static/styles/jquery-ui/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/styles/jquery-ui/jquery-ui.min.css -------------------------------------------------------------------------------- /home/webapps/examples/static/styles/jquery-ui/jquery-ui.structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/styles/jquery-ui/jquery-ui.structure.css -------------------------------------------------------------------------------- /home/webapps/examples/static/styles/jquery-ui/jquery-ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/styles/jquery-ui/jquery-ui.theme.css -------------------------------------------------------------------------------- /home/webapps/examples/static/styles/jquery-ui/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/styles/jquery-ui/jquery-ui.theme.min.css -------------------------------------------------------------------------------- /home/webapps/examples/static/styles/saxon-js/books.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/styles/saxon-js/books.css -------------------------------------------------------------------------------- /home/webapps/examples/static/styles/static.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/styles/static.css -------------------------------------------------------------------------------- /home/webapps/examples/static/styles/xslweb/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/static/styles/xslweb/base.css -------------------------------------------------------------------------------- /home/webapps/examples/stx/huge-file/huge-file.stx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/stx/huge-file/huge-file.stx -------------------------------------------------------------------------------- /home/webapps/examples/stx/huge-file/huge-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/stx/huge-file/huge-file.xml -------------------------------------------------------------------------------- /home/webapps/examples/webapp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/webapp.xml -------------------------------------------------------------------------------- /home/webapps/examples/xquery/tour/tour.xq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xquery/tour/tour.xq -------------------------------------------------------------------------------- /home/webapps/examples/xsd/example-25.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsd/example-25.xsd -------------------------------------------------------------------------------- /home/webapps/examples/xsl/attributes/attributes.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/attributes/attributes.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/authentication/authentication.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/authentication/authentication.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/caching/caching-extension-functions.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/caching/caching-extension-functions.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/caching/responsecaching.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/caching/responsecaching.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/common/example-page.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/common/example-page.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/cookies/cookies-extension-function.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/cookies/cookies-extension-function.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/cookies/cookies-response.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/cookies/cookies-response.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/custom-extension-function/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/custom-extension-function/HelloWorld.java -------------------------------------------------------------------------------- /home/webapps/examples/xsl/dynfunc/call-function.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/dynfunc/call-function.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/dynfunc/function.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/dynfunc/function.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/dynfunc/testbed.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/dynfunc/testbed.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/email/email-form.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/email/email-form.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/email/email-send.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/email/email-send.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/expath-file/expath-file.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/expath-file/expath-file.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/expath-http/expath-http.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/expath-http/expath-http.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/expath-zip/expath-zip.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/expath-zip/expath-zip.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/fop/fop-serialization.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/fop/fop-serialization.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/headers/headers-extension-function.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/headers/headers-extension-function.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/headers/headers-response.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/headers/headers-response.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/hello-world/hello-world-de.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/hello-world/hello-world-de.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/hello-world/hello-world-fr.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/hello-world/hello-world-fr.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/hello-world/hello-world.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/hello-world/hello-world.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/huge-file/huge-file.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/huge-file/huge-file.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/index.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/index.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/job-scheduling/job-scheduling.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/job-scheduling/job-scheduling.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/job-scheduling/writetime-job.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/job-scheduling/writetime-job.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/json/json-extension-functions.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/json/json-extension-functions.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/json/json-serialization.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/json/json-serialization.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/log/log.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/log/log.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/nestedpipeline/nestedpipeline.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/nestedpipeline/nestedpipeline.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/nestedpipeline/nestingpipeline.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/nestedpipeline/nestingpipeline.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/pipeline/pipeline-step1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/pipeline/pipeline-step1.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/pipeline/pipeline-step2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/pipeline/pipeline-step2.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/pipeline/pipeline-step3.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/pipeline/pipeline-step3.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/pipeline/pipeline-step4.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/pipeline/pipeline-step4.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/queued-request/queued-pdf.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/queued-request/queued-pdf.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/queued-request/queued-request-call.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/queued-request/queued-request-call.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/queued-request/queued-request-status.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/queued-request/queued-request-status.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/queued-request/queued-request.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/queued-request/queued-request.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/relational-database/relational-database.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/relational-database/relational-database.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/relational-database/worldcup.mv.mv.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/relational-database/worldcup.mv.mv.db -------------------------------------------------------------------------------- /home/webapps/examples/xsl/request-dispatcher.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/request-dispatcher.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/resource/leaves.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/resource/leaves.jpg -------------------------------------------------------------------------------- /home/webapps/examples/xsl/resource/resource-serialization.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/resource/resource-serialization.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/saxon-js/books-xml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/saxon-js/books-xml.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/saxon-js/books.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/saxon-js/books.xml -------------------------------------------------------------------------------- /home/webapps/examples/xsl/saxon-js/books.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/saxon-js/books.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/saxon-js/saxon-js.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/saxon-js/saxon-js.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/script/script.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/script/script.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/security/login.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/security/login.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/security/logout.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/security/logout.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/security/secured-for-admin-role.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/security/secured-for-admin-role.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/security/secured-for-read-permission.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/security/secured-for-read-permission.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/soap/soap-client.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/soap/soap-client.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/soap/soap-server.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/soap/soap-server.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/soap/soap-wsdl.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/soap/soap-wsdl.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/static/static.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/static/static.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/upload/upload-form.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/upload/upload-form.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/upload/upload-save.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/upload/upload-save.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/xml-validation/generate-sample.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/xml-validation/generate-sample.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/xml-validation/validation-report.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/xml-validation/validation-report.xsl -------------------------------------------------------------------------------- /home/webapps/examples/xsl/zip/zip-serialization.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/examples/xsl/zip/zip-serialization.xsl -------------------------------------------------------------------------------- /home/webapps/my-webapp/webapp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/my-webapp/webapp.xml -------------------------------------------------------------------------------- /home/webapps/my-webapp/xsl/my-stylesheet.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/my-webapp/xsl/my-stylesheet.xsl -------------------------------------------------------------------------------- /home/webapps/my-webapp/xsl/request-dispatcher.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/home/webapps/my-webapp/xsl/request-dispatcher.xsl -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/javanet/staxutils/Indentation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/javanet/staxutils/Indentation.java -------------------------------------------------------------------------------- /src/main/java/javanet/staxutils/IndentingXMLStreamWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/javanet/staxutils/IndentingXMLStreamWriter.java -------------------------------------------------------------------------------- /src/main/java/javanet/staxutils/helpers/StreamWriterDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/javanet/staxutils/helpers/StreamWriterDelegate.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/IMethodExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/IMethodExecutor.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/IMimeTyper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/IMimeTyper.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/ITransaction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/ITransaction.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/IWebdavStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/IWebdavStore.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/LocalFileSystemStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/LocalFileSystemStore.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/StoredObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/StoredObject.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/WebDavServletBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/WebDavServletBean.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/WebdavServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/WebdavServlet.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/WebdavStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/WebdavStatus.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/exceptions/AccessDeniedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/exceptions/AccessDeniedException.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/exceptions/LockFailedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/exceptions/LockFailedException.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/exceptions/ObjectNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/exceptions/ObjectNotFoundException.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/exceptions/UnauthenticatedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/exceptions/UnauthenticatedException.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/exceptions/WebdavException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/exceptions/WebdavException.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/fromcatalina/MD5Encoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/fromcatalina/MD5Encoder.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/fromcatalina/RequestUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/fromcatalina/RequestUtil.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/fromcatalina/URLEncoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/fromcatalina/URLEncoder.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/fromcatalina/XMLHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/fromcatalina/XMLHelper.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/fromcatalina/XMLWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/fromcatalina/XMLWriter.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/locking/IResourceLocks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/locking/IResourceLocks.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/locking/LockedObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/locking/LockedObject.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/locking/ResourceLocks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/locking/ResourceLocks.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/methods/AbstractMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/methods/AbstractMethod.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/methods/DeterminableMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/methods/DeterminableMethod.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/methods/DoCopy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/methods/DoCopy.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/methods/DoDelete.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/methods/DoDelete.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/methods/DoGet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/methods/DoGet.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/methods/DoHead.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/methods/DoHead.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/methods/DoLock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/methods/DoLock.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/methods/DoMkcol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/methods/DoMkcol.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/methods/DoMove.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/methods/DoMove.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/methods/DoNotImplemented.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/methods/DoNotImplemented.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/methods/DoOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/methods/DoOptions.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/methods/DoPropfind.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/methods/DoPropfind.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/methods/DoProppatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/methods/DoProppatch.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/methods/DoPut.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/methods/DoPut.java -------------------------------------------------------------------------------- /src/main/java/net/sf/webdav/methods/DoUnlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/net/sf/webdav/methods/DoUnlock.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/configuration/Attribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/configuration/Attribute.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/configuration/Context.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/configuration/Context.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/configuration/DataSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/configuration/DataSource.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/configuration/Definitions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/configuration/Definitions.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/configuration/Fingerprints.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/configuration/Fingerprints.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/configuration/Job.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/configuration/Job.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/configuration/Parameter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/configuration/Parameter.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/configuration/Queue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/configuration/Queue.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/configuration/Resource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/configuration/Resource.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/configuration/WebApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/configuration/WebApp.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/ehcache/DefaultExpiryPolicy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/ehcache/DefaultExpiryPolicy.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/error/XSLWebException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/error/XSLWebException.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/joost/MessageEmitter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/joost/MessageEmitter.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/BinarySerializerStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/BinarySerializerStep.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/Condition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/Condition.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/ConditionalPipelineStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/ConditionalPipelineStep.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/FopSerializerStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/FopSerializerStep.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/IdentityTransformerStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/IdentityTransformerStep.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/JSONSerializerStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/JSONSerializerStep.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/OtherwiseCondition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/OtherwiseCondition.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/PipelineHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/PipelineHandler.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/PipelineStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/PipelineStep.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/PipelineStepIterator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/PipelineStepIterator.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/QueryStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/QueryStep.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/ResourceSerializerStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/ResourceSerializerStep.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/ResponseStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/ResponseStep.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/SchemaValidatorStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/SchemaValidatorStep.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/SchematronValidatorStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/SchematronValidatorStep.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/SerializerStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/SerializerStep.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/StylesheetExportFileStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/StylesheetExportFileStep.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/SystemTransformerStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/SystemTransformerStep.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/TransformerSTXStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/TransformerSTXStep.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/TransformerStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/TransformerStep.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/WhenCondition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/WhenCondition.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/pipeline/ZipSerializerStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/pipeline/ZipSerializerStep.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/quartz/XSLWebJob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/quartz/XSLWebJob.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/quartz/XSLWebSchedulerListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/quartz/XSLWebSchedulerListener.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/debug/Breakpoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/debug/Breakpoint.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/debug/BreakpointInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/debug/BreakpointInfo.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/debug/DebugClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/debug/DebugClient.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/debug/DebugSSEServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/debug/DebugSSEServlet.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/debug/DebugServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/debug/DebugServlet.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/debug/DebugTraceListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/debug/DebugTraceListener.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/debug/DebugUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/debug/DebugUtils.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/debug/DebugXMLFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/debug/DebugXMLFilter.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/debug/DebugXMLReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/debug/DebugXMLReader.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/debug/EvaluateXPath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/debug/EvaluateXPath.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/cache/Remove.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/cache/Remove.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/dynfunc/Call.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/dynfunc/Call.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/dynfunc/Register.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/dynfunc/Register.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/exec/ExecExternal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/exec/ExecExternal.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/expath/file/Copy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/expath/file/Copy.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/expath/file/IsDir.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/expath/file/IsDir.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/expath/file/List.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/expath/file/List.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/expath/file/Move.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/expath/file/Move.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/expath/file/Name.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/expath/file/Name.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/expath/file/Size.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/expath/file/Size.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/expath/file/Write.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/expath/file/Write.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/image/Scale.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/image/Scale.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/image/Size.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/image/Size.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/json/ParseJSON.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/json/ParseJSON.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/log/Debug.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/log/Debug.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/log/DebugCall.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/log/DebugCall.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/log/Error.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/log/Error.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/log/ErrorCall.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/log/ErrorCall.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/log/Info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/log/Info.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/log/InfoCall.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/log/InfoCall.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/log/Log.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/log/Log.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/log/LogCall.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/log/LogCall.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/log/LogDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/log/LogDef.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/log/Trace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/log/Trace.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/log/TraceCall.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/log/TraceCall.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/log/Warn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/log/Warn.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/log/WarnCall.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/log/WarnCall.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/mail/SendMail.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/mail/SendMail.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/queue/GetInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/queue/GetInfo.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/script/Invoke.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/script/Invoke.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/sql/Close.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/sql/Close.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/sql/Commit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/sql/Commit.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/sql/GetNextRow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/sql/GetNextRow.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/sql/Rollback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/sql/Rollback.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/util/Parse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/util/Parse.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/util/ParseHtml.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/util/ParseHtml.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/uuid/UUID.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/uuid/UUID.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/zip/Unzip.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/zip/Unzip.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/functions/zip/Zip.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/functions/zip/Zip.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/log/Slf4JLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/log/Slf4JLogger.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/utils/NodeInfoUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/utils/NodeInfoUtils.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/saxon/utils/SaxonUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/saxon/utils/SaxonUtils.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/serializer/AbstractSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/serializer/AbstractSerializer.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/serializer/BinarySerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/serializer/BinarySerializer.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/serializer/FopSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/serializer/FopSerializer.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/serializer/RequestSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/serializer/RequestSerializer.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/serializer/ResourceSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/serializer/ResourceSerializer.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/serializer/ZipSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/serializer/ZipSerializer.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/shiro/ShiroFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/shiro/ShiroFilter.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/utils/Closeable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/utils/Closeable.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/utils/ClosedStatusOutputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/utils/ClosedStatusOutputStream.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/utils/XMLUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/utils/XMLUtils.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/utils/XSLWebUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/utils/XSLWebUtils.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/utils/ZipUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/utils/ZipUtils.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/web/filter/WebAppFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/web/filter/WebAppFilter.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/web/filter/WebDavFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/web/filter/WebDavFilter.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/web/filter/XSSEncodingFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/web/filter/XSSEncodingFilter.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/web/servlet/FileServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/web/servlet/FileServlet.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/web/servlet/InternalRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/web/servlet/InternalRequest.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/web/servlet/LogServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/web/servlet/LogServlet.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/web/servlet/XSLWebFilterChain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/web/servlet/XSLWebFilterChain.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/web/servlet/XSLWebFilterConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/web/servlet/XSLWebFilterConfig.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/web/servlet/XSLWebHttpSession.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/web/servlet/XSLWebHttpSession.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/web/servlet/XSLWebServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/web/servlet/XSLWebServlet.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/xml/BodyFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/xml/BodyFilter.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/xml/CleanupXMLStreamWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/xml/CleanupXMLStreamWriter.java -------------------------------------------------------------------------------- /src/main/java/nl/armatiek/xslweb/xml/SerializingContentHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/java/nl/armatiek/xslweb/xml/SerializingContentHandler.java -------------------------------------------------------------------------------- /src/main/resources/identity.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/resources/identity.xsl -------------------------------------------------------------------------------- /src/main/resources/mime-types.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/resources/mime-types.properties -------------------------------------------------------------------------------- /src/main/resources/serialize-sequence.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/resources/serialize-sequence.xsl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Armatiek/xslweb/HEAD/src/main/webapp/WEB-INF/web.xml --------------------------------------------------------------------------------