├── .gitignore ├── LICENSE ├── README ├── Rakefile ├── dist └── .gitignore ├── lib ├── builder.js ├── protodoc.rb └── prototype.js ├── pkg └── .gitignore ├── spec ├── base.js ├── fixtures │ └── results.js ├── gsa.html ├── json.html ├── lib │ ├── JSSpec.css │ ├── JSSpec.js │ └── diff_match_patch.js ├── results.html └── script │ ├── autotest │ └── rstakeout ├── src ├── gsa-prototype.js.erb ├── gsa.js ├── json.js └── results.js └── xsl └── json.xsl /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | demo.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/README -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/Rakefile -------------------------------------------------------------------------------- /dist/.gitignore: -------------------------------------------------------------------------------- 1 | [^.]* 2 | -------------------------------------------------------------------------------- /lib/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/lib/builder.js -------------------------------------------------------------------------------- /lib/protodoc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/lib/protodoc.rb -------------------------------------------------------------------------------- /lib/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/lib/prototype.js -------------------------------------------------------------------------------- /pkg/.gitignore: -------------------------------------------------------------------------------- 1 | [^.]* 2 | -------------------------------------------------------------------------------- /spec/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/spec/base.js -------------------------------------------------------------------------------- /spec/fixtures/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/spec/fixtures/results.js -------------------------------------------------------------------------------- /spec/gsa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/spec/gsa.html -------------------------------------------------------------------------------- /spec/json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/spec/json.html -------------------------------------------------------------------------------- /spec/lib/JSSpec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/spec/lib/JSSpec.css -------------------------------------------------------------------------------- /spec/lib/JSSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/spec/lib/JSSpec.js -------------------------------------------------------------------------------- /spec/lib/diff_match_patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/spec/lib/diff_match_patch.js -------------------------------------------------------------------------------- /spec/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/spec/results.html -------------------------------------------------------------------------------- /spec/script/autotest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/spec/script/autotest -------------------------------------------------------------------------------- /spec/script/rstakeout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/spec/script/rstakeout -------------------------------------------------------------------------------- /src/gsa-prototype.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/src/gsa-prototype.js.erb -------------------------------------------------------------------------------- /src/gsa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/src/gsa.js -------------------------------------------------------------------------------- /src/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/src/json.js -------------------------------------------------------------------------------- /src/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/src/results.js -------------------------------------------------------------------------------- /xsl/json.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnewland/gsa-prototype/HEAD/xsl/json.xsl --------------------------------------------------------------------------------