├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── Cakefile ├── LICENSE ├── Makefile ├── README.md ├── bin └── draughtsman ├── install ├── draughtsman.conf ├── install.js ├── org.draughtsman.plist └── uninstall.js ├── package.json ├── src ├── client │ ├── context.coffee │ ├── draughtsman.coffee │ ├── draughtsman.styl │ ├── favicon.ico │ └── listing.coffee ├── command.coffee ├── controllers.coffee ├── live.coffee ├── middleware.coffee ├── server.coffee ├── utils.coffee ├── vendor │ └── bootstrap │ │ └── 2.1.0 │ │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js └── views │ ├── base.jade │ ├── debug.jade │ ├── index.jade │ └── listing.jade └── test └── example ├── hello.dtl ├── hello.jade ├── hello.json ├── hello.txt ├── script.coffee └── style.styl /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log 4 | lib 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/Cakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/README.md -------------------------------------------------------------------------------- /bin/draughtsman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/bin/draughtsman -------------------------------------------------------------------------------- /install/draughtsman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/install/draughtsman.conf -------------------------------------------------------------------------------- /install/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/install/install.js -------------------------------------------------------------------------------- /install/org.draughtsman.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/install/org.draughtsman.plist -------------------------------------------------------------------------------- /install/uninstall.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/package.json -------------------------------------------------------------------------------- /src/client/context.coffee: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/client/draughtsman.coffee: -------------------------------------------------------------------------------- 1 | $(document).ready -> 2 | $('.nav').tab() -------------------------------------------------------------------------------- /src/client/draughtsman.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/src/client/draughtsman.styl -------------------------------------------------------------------------------- /src/client/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/src/client/favicon.ico -------------------------------------------------------------------------------- /src/client/listing.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/src/client/listing.coffee -------------------------------------------------------------------------------- /src/command.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/src/command.coffee -------------------------------------------------------------------------------- /src/controllers.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/src/controllers.coffee -------------------------------------------------------------------------------- /src/live.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/src/live.coffee -------------------------------------------------------------------------------- /src/middleware.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/src/middleware.coffee -------------------------------------------------------------------------------- /src/server.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/src/server.coffee -------------------------------------------------------------------------------- /src/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/src/utils.coffee -------------------------------------------------------------------------------- /src/vendor/bootstrap/2.1.0/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/src/vendor/bootstrap/2.1.0/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /src/vendor/bootstrap/2.1.0/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/src/vendor/bootstrap/2.1.0/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /src/vendor/bootstrap/2.1.0/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/src/vendor/bootstrap/2.1.0/css/bootstrap.css -------------------------------------------------------------------------------- /src/vendor/bootstrap/2.1.0/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/src/vendor/bootstrap/2.1.0/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/vendor/bootstrap/2.1.0/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/src/vendor/bootstrap/2.1.0/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /src/vendor/bootstrap/2.1.0/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/src/vendor/bootstrap/2.1.0/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /src/vendor/bootstrap/2.1.0/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/src/vendor/bootstrap/2.1.0/js/bootstrap.js -------------------------------------------------------------------------------- /src/vendor/bootstrap/2.1.0/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/src/vendor/bootstrap/2.1.0/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/views/base.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/src/views/base.jade -------------------------------------------------------------------------------- /src/views/debug.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/src/views/debug.jade -------------------------------------------------------------------------------- /src/views/index.jade: -------------------------------------------------------------------------------- 1 | extends base 2 | block body 3 | include listing -------------------------------------------------------------------------------- /src/views/listing.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/src/views/listing.jade -------------------------------------------------------------------------------- /test/example/hello.dtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/test/example/hello.dtl -------------------------------------------------------------------------------- /test/example/hello.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/test/example/hello.jade -------------------------------------------------------------------------------- /test/example/hello.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/test/example/hello.json -------------------------------------------------------------------------------- /test/example/hello.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/test/example/hello.txt -------------------------------------------------------------------------------- /test/example/script.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/test/example/script.coffee -------------------------------------------------------------------------------- /test/example/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debrouwere/draughtsman/HEAD/test/example/style.styl --------------------------------------------------------------------------------