├── .github ├── dependabot.yml └── workflows │ └── scala.yml ├── .gitignore ├── 2.3 ├── async │ ├── akka-examples │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── logback.xml │ │ │ │ └── rebel.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── app │ │ │ │ │ ├── FutureController.scala │ │ │ │ │ └── MyActorApp.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ ├── layouts │ │ │ │ └── default.scaml │ │ │ │ ├── views │ │ │ │ └── hello-scalate.scaml │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── com │ │ │ └── example │ │ │ └── app │ │ │ ├── FutureControllerSpec.scala │ │ │ └── MyActorAppSpec.scala │ ├── scalatra-atmosphere-embedded │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── logback.xml │ │ │ │ └── rebel.xml │ │ │ ├── scala │ │ │ │ ├── JettyLauncher.scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ └── atmosphere │ │ │ │ │ └── ChatController.scala │ │ │ └── webapp │ │ │ │ ├── WEB-INF │ │ │ │ ├── layouts │ │ │ │ │ └── default.ssp │ │ │ │ ├── views │ │ │ │ │ └── index.ssp │ │ │ │ └── web.xml │ │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ │ └── js │ │ │ │ ├── application.js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── html5shiv.js │ │ │ │ ├── jquery-1.9.0.js │ │ │ │ ├── jquery-atmosphere.js │ │ │ │ ├── jquery.atmosphere.js │ │ │ │ └── respond.min.js │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── atmosphere-example │ │ │ └── ChatControllerSpec.scala │ └── scalatra-atmosphere-example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ ├── build.properties │ │ ├── build.scala │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ ├── logback.xml │ │ │ └── rebel.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ └── atmosphere │ │ │ │ └── ChatController.scala │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── layouts │ │ │ │ └── default.ssp │ │ │ ├── views │ │ │ │ └── index.ssp │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ ├── application.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── html5shiv.js │ │ │ ├── jquery-1.9.0.js │ │ │ ├── jquery-atmosphere.js │ │ │ ├── jquery.atmosphere.js │ │ │ └── respond.min.js │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── atmosphere-example │ │ └── ChatControllerSpec.scala ├── deployment │ ├── scalatra-heroku │ │ ├── .gitignore │ │ ├── Procfile │ │ ├── README.md │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ ├── src │ │ │ ├── main │ │ │ │ ├── resources │ │ │ │ │ └── logback.xml │ │ │ │ ├── scala │ │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ │ └── org │ │ │ │ │ │ └── scalatra │ │ │ │ │ │ ├── JettyLauncher.scala │ │ │ │ │ │ └── example │ │ │ │ │ │ ├── HerokuApp.scala │ │ │ │ │ │ └── HerokuExampleStack.scala │ │ │ │ └── webapp │ │ │ │ │ └── WEB-INF │ │ │ │ │ ├── templates │ │ │ │ │ ├── layouts │ │ │ │ │ │ └── default.jade │ │ │ │ │ └── views │ │ │ │ │ │ └── hello-scalate.jade │ │ │ │ │ └── web.xml │ │ │ └── test │ │ │ │ └── scala │ │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ └── HerokuAppSpec.scala │ │ └── system.properties │ └── scalatra-jelastic │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ ├── build.scala │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ └── main │ │ ├── scala │ │ ├── JelasticApp.scala │ │ └── ScalatraBootstrap.scala │ │ └── webapp │ │ └── WEB-INF │ │ └── web.xml ├── formats │ └── scalatra-commands │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ ├── build.properties │ │ ├── build.scala │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ ├── logback.xml │ │ │ └── rebel.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ └── databinding │ │ │ │ ├── TodosController.scala │ │ │ │ ├── commands │ │ │ │ └── TodoCommands.scala │ │ │ │ ├── data │ │ │ │ └── TodoData.scala │ │ │ │ ├── models │ │ │ │ └── Models.scala │ │ │ │ └── utils │ │ │ │ └── Logger.scala │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── layouts │ │ │ │ └── default.ssp │ │ │ ├── views │ │ │ │ └── todos │ │ │ │ │ └── index.ssp │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ └── todo.css │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ └── test │ │ └── scala │ │ └── com │ │ └── futurechimps │ │ └── example │ │ └── databindings │ │ └── TodosControllerSpec.scala ├── http │ ├── authentication-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── logback.xml │ │ │ │ └── rebel.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ ├── AuthDemo.scala │ │ │ │ │ └── AuthenticationSupport.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ ├── layouts │ │ │ │ └── default.scaml │ │ │ │ ├── views │ │ │ │ └── hello-scalate.scaml │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── AuthDemoSpec.scala │ ├── scalatra-gzip │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ └── main │ │ │ ├── scala │ │ │ ├── GZipApp.scala │ │ │ └── ScalatraBootstrap.scala │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ ├── scalatra-http-client │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ └── main │ │ │ ├── scala │ │ │ ├── DispatchApp.scala │ │ │ └── ScalatraBootstrap.scala │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ ├── scalatra-http-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ ├── CookiesExample.scala │ │ │ │ │ ├── FileUploadExample.scala │ │ │ │ │ ├── FilterExample.scala │ │ │ │ │ └── HttpExample.scala │ │ │ └── webapp │ │ │ │ ├── WEB-INF │ │ │ │ ├── templates │ │ │ │ │ ├── layouts │ │ │ │ │ │ └── default.jade │ │ │ │ │ └── views │ │ │ │ │ │ └── hello-scalate.jade │ │ │ │ └── web.xml │ │ │ │ └── assets │ │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── scalatra.css │ │ │ │ └── syntax.css │ │ │ │ ├── img │ │ │ │ ├── back_pattern.png │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ ├── logo-s.png │ │ │ │ ├── logo-x.png │ │ │ │ ├── scalatra_logo.png │ │ │ │ └── skeletal_weave.png │ │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── jquery.min.js │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── HttpExampleSpec.scala │ └── scentry-auth-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ ├── build.properties │ │ ├── build.scala │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── logback.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── com │ │ │ │ └── constructiveproof │ │ │ │ └── example │ │ │ │ ├── ProtectedController.scala │ │ │ │ ├── ScentryauthdemoStack.scala │ │ │ │ ├── SessionsController.scala │ │ │ │ ├── auth │ │ │ │ ├── AuthenticationSupport.scala │ │ │ │ └── strategies │ │ │ │ │ ├── RememberMeStrategy.scala │ │ │ │ │ └── UserPasswordStrategy.scala │ │ │ │ └── models │ │ │ │ └── User.scala │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── templates │ │ │ ├── layouts │ │ │ │ └── default.ssp │ │ │ └── views │ │ │ │ └── sessions │ │ │ │ └── new.ssp │ │ │ └── web.xml │ │ └── test │ │ └── scala │ │ └── com │ │ └── constructiveproof │ │ └── example │ │ └── ProtectedServletSpec.scala ├── persistence │ ├── riak-example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ ├── RiakExampleStack.scala │ │ │ │ │ ├── RiakSupport.scala │ │ │ │ │ └── SimpleRiakController.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ ├── templates │ │ │ │ ├── layouts │ │ │ │ │ └── default.jade │ │ │ │ └── views │ │ │ │ │ └── hello-scalate.jade │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── RiakControllerTest.scala │ ├── scalatra-casbah-example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ ├── MongoController.scala │ │ │ │ │ ├── ScalatraCasbahExampleStack.scala │ │ │ │ │ └── json_conversion.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ ├── templates │ │ │ │ ├── layouts │ │ │ │ │ └── default.jade │ │ │ │ └── views │ │ │ │ │ └── hello-scalate.jade │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── MongoControllerSpec.scala │ ├── scalatra-slick │ │ ├── .gitignore │ │ ├── .project │ │ ├── README.md │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ ├── c3p0.properties │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── slicksupport │ │ │ │ └── slick.scala │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ └── scalatra-squeryl │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ ├── build.properties │ │ ├── build.scala │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── logback.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ ├── ArticlesController.scala │ │ │ │ ├── init │ │ │ │ ├── DatabaseInit.scala │ │ │ │ └── DatabaseSessionSupport.scala │ │ │ │ └── models │ │ │ │ └── BlogDb.scala │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── layouts │ │ │ │ └── default.ssp │ │ │ ├── views │ │ │ │ └── articles │ │ │ │ │ ├── index.ssp │ │ │ │ │ └── new.ssp │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ │ ├── favicon.ico │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ ├── angular-1.0.1.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── jquery.min.js │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── example │ │ └── ArticlesControllerSpec.scala ├── resources │ ├── scalatra-coffeescript │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ └── main │ │ │ ├── scala │ │ │ ├── CoffeeScriptApp.scala │ │ │ └── ScalatraBootstrap.scala │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── web.xml │ │ │ ├── wro.properties │ │ │ └── wro.xml │ │ │ └── coffee │ │ │ └── main.coffee │ └── scalatra-less-css │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ ├── build.scala │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ └── main │ │ ├── scala │ │ ├── LessCssApp.scala │ │ └── ScalatraBootstrap.scala │ │ └── webapp │ │ ├── WEB-INF │ │ ├── web.xml │ │ ├── wro.properties │ │ └── wro.xml │ │ └── less │ │ └── main.less └── swagger-example │ ├── .gitignore │ ├── README.md │ ├── project │ ├── build.properties │ ├── build.scala │ └── plugins.sbt │ ├── sbt │ └── src │ ├── main │ ├── resources │ │ └── logback.xml │ ├── scala │ │ ├── ScalatraBootstrap.scala │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── swagger │ │ │ ├── FlowersController.scala │ │ │ └── FlowersSwagger.scala │ └── webapp │ │ └── WEB-INF │ │ ├── layouts │ │ └── default.scaml │ │ ├── views │ │ └── hello-scalate.scaml │ │ └── web.xml │ └── test │ └── scala │ └── org │ └── scalatra │ └── example │ └── swagger │ └── FlowersSpec.scala ├── 2.4 ├── async │ ├── akka-examples │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── logback.xml │ │ │ │ └── rebel.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── app │ │ │ │ │ ├── FutureController.scala │ │ │ │ │ └── MyActorApp.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ ├── layouts │ │ │ │ └── default.scaml │ │ │ │ ├── views │ │ │ │ └── hello-scalate.scaml │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── com │ │ │ └── example │ │ │ └── app │ │ │ ├── FutureControllerSpec.scala │ │ │ └── MyActorAppSpec.scala │ ├── scalatra-atmosphere-embedded │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── logback.xml │ │ │ │ └── rebel.xml │ │ │ ├── scala │ │ │ │ ├── JettyLauncher.scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ └── atmosphere │ │ │ │ │ └── ChatController.scala │ │ │ └── webapp │ │ │ │ ├── WEB-INF │ │ │ │ ├── layouts │ │ │ │ │ └── default.ssp │ │ │ │ ├── views │ │ │ │ │ └── index.ssp │ │ │ │ └── web.xml │ │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ │ └── js │ │ │ │ ├── application.js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── html5shiv.js │ │ │ │ ├── jquery-1.9.0.js │ │ │ │ ├── jquery-atmosphere.js │ │ │ │ ├── jquery.atmosphere.js │ │ │ │ └── respond.min.js │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── atmosphere-example │ │ │ └── ChatControllerSpec.scala │ └── scalatra-atmosphere-example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ ├── build.properties │ │ ├── build.scala │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ ├── logback.xml │ │ │ └── rebel.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ └── atmosphere │ │ │ │ └── ChatController.scala │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── layouts │ │ │ │ └── default.ssp │ │ │ ├── views │ │ │ │ └── index.ssp │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ ├── application.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── html5shiv.js │ │ │ ├── jquery-1.9.0.js │ │ │ ├── jquery-atmosphere.js │ │ │ ├── jquery.atmosphere.js │ │ │ └── respond.min.js │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── atmosphere-example │ │ └── ChatControllerSpec.scala ├── deployment │ ├── scalatra-heroku │ │ ├── .gitignore │ │ ├── Procfile │ │ ├── README.md │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ └── main │ │ │ ├── scala │ │ │ ├── HerokuApp.scala │ │ │ ├── JettyLauncher.scala │ │ │ └── ScalatraBootstrap.scala │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ └── scalatra-jelastic │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ ├── build.scala │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ └── main │ │ ├── scala │ │ ├── JelasticApp.scala │ │ └── ScalatraBootstrap.scala │ │ └── webapp │ │ └── WEB-INF │ │ └── web.xml ├── formats │ └── scalatra-commands │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ ├── build.properties │ │ ├── build.scala │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ ├── logback.xml │ │ │ └── rebel.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ └── databinding │ │ │ │ ├── TodosController.scala │ │ │ │ ├── commands │ │ │ │ └── TodoCommands.scala │ │ │ │ ├── data │ │ │ │ └── TodoData.scala │ │ │ │ ├── models │ │ │ │ └── Models.scala │ │ │ │ └── utils │ │ │ │ └── Logger.scala │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── layouts │ │ │ │ └── default.ssp │ │ │ ├── views │ │ │ │ └── todos │ │ │ │ │ └── index.ssp │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ └── todo.css │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ └── test │ │ └── scala │ │ └── com │ │ └── futurechimps │ │ └── example │ │ └── databindings │ │ └── TodosControllerSpec.scala ├── http │ ├── authentication-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ └── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ ├── AuthDemo.scala │ │ │ │ └── AuthenticationSupport.scala │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── AuthDemoSpec.scala │ ├── scalatra-gzip │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ └── main │ │ │ ├── scala │ │ │ ├── GZipApp.scala │ │ │ └── ScalatraBootstrap.scala │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ ├── scalatra-http-client │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ └── main │ │ │ ├── scala │ │ │ ├── DispatchApp.scala │ │ │ └── ScalatraBootstrap.scala │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ ├── scalatra-http-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ ├── CookiesExample.scala │ │ │ │ │ ├── FileUploadExample.scala │ │ │ │ │ ├── FilterExample.scala │ │ │ │ │ └── HttpExample.scala │ │ │ └── webapp │ │ │ │ ├── WEB-INF │ │ │ │ ├── templates │ │ │ │ │ ├── layouts │ │ │ │ │ │ └── default.jade │ │ │ │ │ └── views │ │ │ │ │ │ └── hello-scalate.jade │ │ │ │ └── web.xml │ │ │ │ └── assets │ │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── scalatra.css │ │ │ │ └── syntax.css │ │ │ │ ├── img │ │ │ │ ├── back_pattern.png │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ ├── logo-s.png │ │ │ │ ├── logo-x.png │ │ │ │ ├── scalatra_logo.png │ │ │ │ └── skeletal_weave.png │ │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── jquery.min.js │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── HttpExampleSpec.scala │ └── scentry-auth-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ ├── build.properties │ │ ├── build.scala │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── logback.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── com │ │ │ │ └── constructiveproof │ │ │ │ └── example │ │ │ │ ├── ProtectedController.scala │ │ │ │ ├── ScentryauthdemoStack.scala │ │ │ │ ├── SessionsController.scala │ │ │ │ ├── auth │ │ │ │ ├── AuthenticationSupport.scala │ │ │ │ └── strategies │ │ │ │ │ ├── RememberMeStrategy.scala │ │ │ │ │ └── UserPasswordStrategy.scala │ │ │ │ └── models │ │ │ │ └── User.scala │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── templates │ │ │ ├── layouts │ │ │ │ └── default.ssp │ │ │ └── views │ │ │ │ └── sessions │ │ │ │ └── new.ssp │ │ │ └── web.xml │ │ └── test │ │ └── scala │ │ └── com │ │ └── constructiveproof │ │ └── example │ │ └── ProtectedServletSpec.scala ├── persistence │ ├── riak-example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ ├── RiakExampleStack.scala │ │ │ │ │ ├── RiakSupport.scala │ │ │ │ │ └── SimpleRiakController.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ ├── templates │ │ │ │ ├── layouts │ │ │ │ │ └── default.jade │ │ │ │ └── views │ │ │ │ │ └── hello-scalate.jade │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── RiakControllerTest.scala │ ├── scalatra-casbah-example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ ├── MongoController.scala │ │ │ │ │ ├── ScalatraCasbahExampleStack.scala │ │ │ │ │ └── json_conversion.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ ├── templates │ │ │ │ ├── layouts │ │ │ │ │ └── default.jade │ │ │ │ └── views │ │ │ │ │ └── hello-scalate.jade │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── MongoControllerSpec.scala │ ├── scalatra-slick │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ ├── c3p0.properties │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── slickexample │ │ │ │ └── slick.scala │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ └── scalatra-squeryl │ │ ├── .gitignore │ │ ├── README.md │ │ ├── project │ │ ├── build.properties │ │ ├── build.scala │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── logback.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ ├── ArticlesController.scala │ │ │ │ ├── init │ │ │ │ ├── DatabaseInit.scala │ │ │ │ └── DatabaseSessionSupport.scala │ │ │ │ └── models │ │ │ │ └── BlogDb.scala │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── layouts │ │ │ │ └── default.ssp │ │ │ ├── views │ │ │ │ └── articles │ │ │ │ │ ├── index.ssp │ │ │ │ │ └── new.ssp │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ │ ├── favicon.ico │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ ├── angular-1.0.1.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── jquery.min.js │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── example │ │ └── ArticlesControllerSpec.scala ├── resources │ ├── scalatra-coffeescript │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ ├── build.scala │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ └── main │ │ │ ├── scala │ │ │ ├── CoffeeScriptApp.scala │ │ │ └── ScalatraBootstrap.scala │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── web.xml │ │ │ ├── wro.properties │ │ │ └── wro.xml │ │ │ └── coffee │ │ │ └── main.coffee │ └── scalatra-less-css │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ ├── build.scala │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ └── main │ │ ├── scala │ │ ├── LessCssApp.scala │ │ └── ScalatraBootstrap.scala │ │ └── webapp │ │ ├── WEB-INF │ │ ├── web.xml │ │ ├── wro.properties │ │ └── wro.xml │ │ └── less │ │ └── main.less └── swagger-example │ ├── .gitignore │ ├── README.md │ ├── project │ ├── build.properties │ ├── build.scala │ └── plugins.sbt │ ├── sbt │ └── src │ ├── main │ ├── resources │ │ └── logback.xml │ ├── scala │ │ ├── ScalatraBootstrap.scala │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── swagger │ │ │ ├── FlowersController.scala │ │ │ └── FlowersSwagger.scala │ └── webapp │ │ └── WEB-INF │ │ ├── layouts │ │ └── default.scaml │ │ ├── views │ │ └── hello-scalate.scaml │ │ └── web.xml │ └── test │ └── scala │ └── org │ └── scalatra │ └── example │ └── swagger │ └── FlowersSpec.scala ├── 2.5 ├── async │ ├── akka-examples │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── logback.xml │ │ │ │ └── rebel.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── app │ │ │ │ │ ├── FutureController.scala │ │ │ │ │ └── MyActorApp.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ ├── layouts │ │ │ │ └── default.scaml │ │ │ │ ├── views │ │ │ │ └── hello-scalate.scaml │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── com │ │ │ └── example │ │ │ └── app │ │ │ ├── FutureControllerSpec.scala │ │ │ └── MyActorAppSpec.scala │ ├── scalatra-atmosphere-embedded │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── logback.xml │ │ │ │ └── rebel.xml │ │ │ ├── scala │ │ │ │ ├── JettyLauncher.scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ └── atmosphere │ │ │ │ │ └── ChatController.scala │ │ │ └── webapp │ │ │ │ ├── WEB-INF │ │ │ │ ├── layouts │ │ │ │ │ └── default.ssp │ │ │ │ ├── views │ │ │ │ │ └── index.ssp │ │ │ │ └── web.xml │ │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ │ └── js │ │ │ │ ├── application.js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── html5shiv.js │ │ │ │ ├── jquery-1.9.0.js │ │ │ │ ├── jquery.atmosphere.js │ │ │ │ └── respond.min.js │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── atmosphere-example │ │ │ └── ChatControllerSpec.scala │ └── scalatra-atmosphere-example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ ├── logback.xml │ │ │ └── rebel.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ └── atmosphere │ │ │ │ └── ChatController.scala │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── layouts │ │ │ │ └── default.ssp │ │ │ ├── views │ │ │ │ └── index.ssp │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ ├── application.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── html5shiv.js │ │ │ ├── jquery-1.9.0.js │ │ │ ├── jquery.atmosphere.js │ │ │ └── respond.min.js │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── atmosphere-example │ │ └── ChatControllerSpec.scala ├── deployment │ └── scalatra-heroku │ │ ├── .gitignore │ │ ├── Procfile │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ └── main │ │ ├── scala │ │ ├── HerokuApp.scala │ │ ├── JettyLauncher.scala │ │ └── ScalatraBootstrap.scala │ │ └── webapp │ │ └── WEB-INF │ │ └── web.xml ├── formats │ └── scalatra-commands │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ ├── logback.xml │ │ │ └── rebel.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ └── databinding │ │ │ │ ├── TodosController.scala │ │ │ │ ├── commands │ │ │ │ └── TodoCommands.scala │ │ │ │ ├── data │ │ │ │ └── TodoData.scala │ │ │ │ ├── models │ │ │ │ └── Models.scala │ │ │ │ └── utils │ │ │ │ └── Logger.scala │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── layouts │ │ │ │ └── default.ssp │ │ │ ├── views │ │ │ │ └── todos │ │ │ │ │ └── index.ssp │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ └── todo.css │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ └── test │ │ └── scala │ │ └── com │ │ └── futurechimps │ │ └── example │ │ └── databindings │ │ └── TodosControllerSpec.scala ├── http │ ├── authentication-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ ├── AuthDemo.scala │ │ │ │ │ └── AuthenticationSupport.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── AuthDemoSpec.scala │ ├── scalatra-gzip │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ └── main │ │ │ ├── scala │ │ │ ├── GZipApp.scala │ │ │ └── ScalatraBootstrap.scala │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ ├── scalatra-http-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ ├── CookiesExample.scala │ │ │ │ │ ├── FileUploadExample.scala │ │ │ │ │ ├── FilterExample.scala │ │ │ │ │ └── HttpExample.scala │ │ │ └── webapp │ │ │ │ ├── WEB-INF │ │ │ │ ├── templates │ │ │ │ │ ├── layouts │ │ │ │ │ │ └── default.jade │ │ │ │ │ └── views │ │ │ │ │ │ └── hello-scalate.jade │ │ │ │ └── web.xml │ │ │ │ └── assets │ │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── scalatra.css │ │ │ │ └── syntax.css │ │ │ │ ├── img │ │ │ │ ├── back_pattern.png │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ ├── logo-s.png │ │ │ │ ├── logo-x.png │ │ │ │ ├── scalatra_logo.png │ │ │ │ └── skeletal_weave.png │ │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── jquery.min.js │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── HttpExampleSpec.scala │ └── scentry-auth-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── logback.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── com │ │ │ │ └── constructiveproof │ │ │ │ └── example │ │ │ │ ├── ProtectedController.scala │ │ │ │ ├── ScentryauthdemoStack.scala │ │ │ │ ├── SessionsController.scala │ │ │ │ ├── auth │ │ │ │ ├── AuthenticationSupport.scala │ │ │ │ └── strategies │ │ │ │ │ ├── RememberMeStrategy.scala │ │ │ │ │ └── UserPasswordStrategy.scala │ │ │ │ └── models │ │ │ │ └── User.scala │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── templates │ │ │ ├── layouts │ │ │ │ └── default.ssp │ │ │ └── views │ │ │ │ └── sessions │ │ │ │ └── new.ssp │ │ │ └── web.xml │ │ └── test │ │ └── scala │ │ └── com │ │ └── constructiveproof │ │ └── example │ │ └── ProtectedServletSpec.scala ├── persistence │ ├── riak-example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ ├── RiakExampleStack.scala │ │ │ │ │ ├── RiakSupport.scala │ │ │ │ │ └── SimpleRiakController.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ ├── templates │ │ │ │ ├── layouts │ │ │ │ │ └── default.jade │ │ │ │ └── views │ │ │ │ │ └── hello-scalate.jade │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── RiakControllerTest.scala │ ├── scalatra-casbah-example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ ├── MongoController.scala │ │ │ │ │ ├── ScalatraCasbahExampleStack.scala │ │ │ │ │ └── json_conversion.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ ├── templates │ │ │ │ ├── layouts │ │ │ │ │ └── default.jade │ │ │ │ └── views │ │ │ │ │ └── hello-scalate.jade │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── MongoControllerSpec.scala │ ├── scalatra-slick │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ ├── c3p0.properties │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── slickexample │ │ │ │ └── slick.scala │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ └── scalatra-squeryl │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── logback.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ ├── ArticlesController.scala │ │ │ │ ├── init │ │ │ │ ├── DatabaseInit.scala │ │ │ │ └── DatabaseSessionSupport.scala │ │ │ │ └── models │ │ │ │ └── BlogDb.scala │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── layouts │ │ │ │ └── default.ssp │ │ │ ├── views │ │ │ │ └── articles │ │ │ │ │ ├── index.ssp │ │ │ │ │ └── new.ssp │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ │ ├── favicon.ico │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ ├── angular-1.0.1.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── jquery.min.js │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── example │ │ └── ArticlesControllerSpec.scala ├── resources │ ├── scalatra-coffeescript │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ └── main │ │ │ ├── scala │ │ │ ├── CoffeeScriptApp.scala │ │ │ └── ScalatraBootstrap.scala │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── web.xml │ │ │ ├── wro.properties │ │ │ └── wro.xml │ │ │ └── coffee │ │ │ └── main.coffee │ └── scalatra-less-css │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ └── main │ │ ├── scala │ │ ├── LessCssApp.scala │ │ └── ScalatraBootstrap.scala │ │ └── webapp │ │ ├── WEB-INF │ │ ├── web.xml │ │ ├── wro.properties │ │ └── wro.xml │ │ └── less │ │ └── main.less ├── swagger-example │ ├── .gitignore │ ├── README.md │ ├── build.sbt │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ ├── sbt │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── logback.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ └── swagger │ │ │ │ ├── FlowersController.scala │ │ │ │ └── FlowersSwagger.scala │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── layouts │ │ │ └── default.scaml │ │ │ ├── views │ │ │ └── hello-scalate.scaml │ │ │ └── web.xml │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── example │ │ └── swagger │ │ └── FlowersSpec.scala └── views │ └── scalatra-twirl │ ├── .gitignore │ ├── README.md │ ├── build.sbt │ ├── project │ ├── build.properties │ └── plugins.sbt │ ├── sbt │ └── src │ ├── main │ ├── resources │ │ └── logback.xml │ ├── scala │ │ ├── ScalatraBootstrap.scala │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── ScalatraTwirlServlet.scala │ ├── twirl │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── hello.scala.html │ └── webapp │ │ └── WEB-INF │ │ └── web.xml │ └── test │ └── scala │ └── com │ └── example │ └── TwirlExampleSpec.scala ├── 2.6 ├── async │ ├── akka-examples │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── logback.xml │ │ │ │ └── rebel.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ ├── FutureController.scala │ │ │ │ │ └── MyActorApp.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ ├── layouts │ │ │ │ └── default.scaml │ │ │ │ ├── views │ │ │ │ └── hello-scalate.scaml │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ ├── FutureControllerSpec.scala │ │ │ └── MyActorAppSpec.scala │ ├── scalatra-atmosphere-embedded │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── logback.xml │ │ │ │ └── rebel.xml │ │ │ ├── scala │ │ │ │ ├── JettyLauncher.scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ └── atmosphere │ │ │ │ │ └── ChatController.scala │ │ │ └── webapp │ │ │ │ ├── WEB-INF │ │ │ │ ├── layouts │ │ │ │ │ └── default.ssp │ │ │ │ ├── views │ │ │ │ │ └── index.ssp │ │ │ │ └── web.xml │ │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ │ └── js │ │ │ │ ├── application.js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── html5shiv.js │ │ │ │ ├── jquery-1.9.0.js │ │ │ │ ├── jquery.atmosphere.js │ │ │ │ └── respond.min.js │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── atmosphere-example │ │ │ └── ChatControllerSpec.scala │ └── scalatra-atmosphere-example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── logback.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ └── atmosphere │ │ │ │ └── ChatController.scala │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── layouts │ │ │ │ └── default.ssp │ │ │ ├── views │ │ │ │ └── index.ssp │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ ├── application.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── html5shiv.js │ │ │ ├── jquery-1.9.0.js │ │ │ ├── jquery.atmosphere.js │ │ │ └── respond.min.js │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── atmosphere-example │ │ └── ChatControllerSpec.scala ├── deployment │ └── scalatra-heroku │ │ ├── .gitignore │ │ ├── Procfile │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── scala │ │ │ ├── JettyLauncher.scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ └── HerokuApp.scala │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── example │ │ └── HerokuAppSpec.scala ├── formats │ └── scalatra-forms │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ ├── logback.xml │ │ │ └── rebel.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ └── forms │ │ │ │ └── FormsController.scala │ │ ├── twirl │ │ │ ├── form.scala.html │ │ │ └── result.scala.html │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── example │ │ └── forms │ │ └── FormsControllerSpec.scala ├── http │ ├── authentication-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ ├── AuthDemo.scala │ │ │ │ │ └── AuthenticationSupport.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── AuthDemoSpec.scala │ ├── scalatra-gzip │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ └── GZipApp.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── GZipSpec.scala │ ├── scalatra-http-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ ├── CookiesExample.scala │ │ │ │ │ ├── FileUploadExample.scala │ │ │ │ │ ├── FilterExample.scala │ │ │ │ │ └── HttpExample.scala │ │ │ └── webapp │ │ │ │ ├── WEB-INF │ │ │ │ └── web.xml │ │ │ │ └── assets │ │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── scalatra.css │ │ │ │ └── syntax.css │ │ │ │ ├── img │ │ │ │ ├── back_pattern.png │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ ├── logo-s.png │ │ │ │ ├── logo-x.png │ │ │ │ ├── scalatra_logo.png │ │ │ │ └── skeletal_weave.png │ │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── jquery.min.js │ │ │ └── test │ │ │ ├── resources │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ └── scalatra.txt │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ ├── CookiesExampleSpec.scala │ │ │ ├── FileUploadExampleSpec.scala │ │ │ ├── FilterExampleSpec.scala │ │ │ └── HttpExampleSpec.scala │ └── scentry-auth-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── logback.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── com │ │ │ │ └── constructiveproof │ │ │ │ └── example │ │ │ │ ├── ProtectedController.scala │ │ │ │ ├── ScentryauthdemoStack.scala │ │ │ │ ├── SessionsController.scala │ │ │ │ ├── auth │ │ │ │ ├── AuthenticationSupport.scala │ │ │ │ └── strategies │ │ │ │ │ ├── RememberMeStrategy.scala │ │ │ │ │ └── UserPasswordStrategy.scala │ │ │ │ └── models │ │ │ │ └── User.scala │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── templates │ │ │ ├── layouts │ │ │ │ └── default.ssp │ │ │ └── views │ │ │ │ └── sessions │ │ │ │ └── new.ssp │ │ │ └── web.xml │ │ └── test │ │ └── scala │ │ └── com │ │ └── constructiveproof │ │ └── example │ │ ├── ScentryAuthFailureSpec.scala │ │ └── ScentryAuthSuccessSpec.scala ├── persistence │ ├── scalatra-slick │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── c3p0.properties │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── slickexample │ │ │ │ │ └── SlickApp.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── slickexample │ │ │ └── SlickAppSpec.scala │ └── scalatra-squeryl │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── logback.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ ├── ArticlesController.scala │ │ │ │ ├── init │ │ │ │ ├── DatabaseInit.scala │ │ │ │ └── DatabaseSessionSupport.scala │ │ │ │ └── models │ │ │ │ └── BlogDb.scala │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── layouts │ │ │ │ └── default.ssp │ │ │ ├── views │ │ │ │ └── articles │ │ │ │ │ ├── index.ssp │ │ │ │ │ └── new.ssp │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ │ ├── favicon.ico │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ ├── angular-1.0.1.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── jquery.min.js │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── example │ │ └── ArticlesControllerSpec.scala ├── swagger-example │ ├── .gitignore │ ├── README.md │ ├── build.sbt │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ ├── sbt │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── logback.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ └── swagger │ │ │ │ ├── FlowersController.scala │ │ │ │ └── FlowersSwagger.scala │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── layouts │ │ │ └── default.scaml │ │ │ ├── views │ │ │ └── hello-scalate.scaml │ │ │ └── web.xml │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── example │ │ └── swagger │ │ └── FlowersSpec.scala └── views │ └── scalatra-twirl │ ├── .gitignore │ ├── README.md │ ├── build.sbt │ ├── project │ ├── build.properties │ └── plugins.sbt │ ├── sbt │ └── src │ ├── main │ ├── resources │ │ └── logback.xml │ ├── scala │ │ ├── ScalatraBootstrap.scala │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── ScalatraTwirlServlet.scala │ ├── twirl │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── hello.scala.html │ └── webapp │ │ └── WEB-INF │ │ └── web.xml │ └── test │ └── scala │ └── com │ └── example │ └── TwirlExampleSpec.scala ├── 2.7 ├── async │ ├── akka-examples │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── logback.xml │ │ │ │ └── rebel.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── app │ │ │ │ │ ├── FutureController.scala │ │ │ │ │ └── MyActorApp.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ ├── layouts │ │ │ │ └── default.scaml │ │ │ │ ├── views │ │ │ │ └── hello-scalate.scaml │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── com │ │ │ └── example │ │ │ └── app │ │ │ ├── FutureControllerSpec.scala │ │ │ └── MyActorAppSpec.scala │ ├── scalatra-atmosphere-embedded │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── logback.xml │ │ │ │ └── rebel.xml │ │ │ ├── scala │ │ │ │ ├── JettyLauncher.scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ └── atmosphere │ │ │ │ │ └── ChatController.scala │ │ │ └── webapp │ │ │ │ ├── WEB-INF │ │ │ │ ├── layouts │ │ │ │ │ └── default.ssp │ │ │ │ ├── views │ │ │ │ │ └── index.ssp │ │ │ │ └── web.xml │ │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ │ └── js │ │ │ │ ├── application.js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── html5shiv.js │ │ │ │ ├── jquery-1.9.0.js │ │ │ │ ├── jquery.atmosphere.js │ │ │ │ └── respond.min.js │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── atmosphere-example │ │ │ └── ChatControllerSpec.scala │ └── scalatra-atmosphere-example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ ├── logback.xml │ │ │ └── rebel.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ └── atmosphere │ │ │ │ └── ChatController.scala │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── layouts │ │ │ │ └── default.ssp │ │ │ ├── views │ │ │ │ └── index.ssp │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ ├── application.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── html5shiv.js │ │ │ ├── jquery-1.9.0.js │ │ │ ├── jquery.atmosphere.js │ │ │ └── respond.min.js │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── atmosphere-example │ │ └── ChatControllerSpec.scala ├── deployment │ └── scalatra-heroku │ │ ├── .gitignore │ │ ├── Procfile │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ └── main │ │ ├── scala │ │ ├── HerokuApp.scala │ │ ├── JettyLauncher.scala │ │ └── ScalatraBootstrap.scala │ │ └── webapp │ │ └── WEB-INF │ │ └── web.xml ├── formats │ └── scalatra-forms │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ ├── logback.xml │ │ │ └── rebel.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ └── forms │ │ │ │ └── FormsController.scala │ │ ├── twirl │ │ │ ├── form.scala.html │ │ │ └── result.scala.html │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── example │ │ └── forms │ │ └── FormsControllerSpec.scala ├── http │ ├── authentication-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ ├── AuthDemo.scala │ │ │ │ │ └── AuthenticationSupport.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── AuthDemoSpec.scala │ ├── scalatra-gzip │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ └── GZipApp.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── GZipSpec.scala │ ├── scalatra-http-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ ├── CookiesExample.scala │ │ │ │ │ ├── FileUploadExample.scala │ │ │ │ │ ├── FilterExample.scala │ │ │ │ │ └── HttpExample.scala │ │ │ └── webapp │ │ │ │ ├── WEB-INF │ │ │ │ ├── templates │ │ │ │ │ ├── layouts │ │ │ │ │ │ └── default.jade │ │ │ │ │ └── views │ │ │ │ │ │ └── hello-scalate.jade │ │ │ │ └── web.xml │ │ │ │ └── assets │ │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── scalatra.css │ │ │ │ └── syntax.css │ │ │ │ ├── img │ │ │ │ ├── back_pattern.png │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ ├── logo-s.png │ │ │ │ ├── logo-x.png │ │ │ │ ├── scalatra_logo.png │ │ │ │ └── skeletal_weave.png │ │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── jquery.min.js │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── HttpExampleSpec.scala │ └── scentry-auth-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── logback.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── com │ │ │ │ └── constructiveproof │ │ │ │ └── example │ │ │ │ ├── ProtectedController.scala │ │ │ │ ├── ScentryauthdemoStack.scala │ │ │ │ ├── SessionsController.scala │ │ │ │ ├── auth │ │ │ │ ├── AuthenticationSupport.scala │ │ │ │ └── strategies │ │ │ │ │ ├── RememberMeStrategy.scala │ │ │ │ │ └── UserPasswordStrategy.scala │ │ │ │ └── models │ │ │ │ └── User.scala │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── templates │ │ │ ├── layouts │ │ │ │ └── default.ssp │ │ │ └── views │ │ │ │ └── sessions │ │ │ │ └── new.ssp │ │ │ └── web.xml │ │ └── test │ │ └── scala │ │ └── com │ │ └── constructiveproof │ │ └── example │ │ ├── ScentryAuthFailureSpec.scala │ │ └── ScentryAuthSuccessSpec.scala ├── persistence │ ├── scalatra-mongo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ ├── MongoController.scala │ │ │ │ └── ScalatraMongoExample.scala │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ ├── scalatra-slick │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── c3p0.properties │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── slickexample │ │ │ │ │ └── SlickApp.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── slickexample │ │ │ └── SlickAppSpec.scala │ └── scalatra-squeryl │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── logback.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ ├── ArticlesController.scala │ │ │ │ ├── init │ │ │ │ ├── DatabaseInit.scala │ │ │ │ └── DatabaseSessionSupport.scala │ │ │ │ └── models │ │ │ │ └── BlogDb.scala │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── layouts │ │ │ │ └── default.ssp │ │ │ ├── views │ │ │ │ └── articles │ │ │ │ │ ├── index.ssp │ │ │ │ │ └── new.ssp │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ │ ├── favicon.ico │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ ├── angular-1.0.1.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── jquery.min.js │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── example │ │ └── ArticlesControllerSpec.scala ├── swagger-example │ ├── .gitignore │ ├── README.md │ ├── build.sbt │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ ├── sbt │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── logback.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ └── swagger │ │ │ │ ├── FlowersController.scala │ │ │ │ └── FlowersSwagger.scala │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── layouts │ │ │ └── default.scaml │ │ │ ├── views │ │ │ └── hello-scalate.scaml │ │ │ └── web.xml │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── example │ │ └── swagger │ │ └── FlowersSpec.scala └── views │ └── scalatra-twirl │ ├── .gitignore │ ├── README.md │ ├── build.sbt │ ├── project │ ├── build.properties │ └── plugins.sbt │ ├── sbt │ └── src │ ├── main │ ├── resources │ │ └── logback.xml │ ├── scala │ │ ├── ScalatraBootstrap.scala │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── ScalatraTwirlServlet.scala │ ├── twirl │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── hello.scala.html │ └── webapp │ │ └── WEB-INF │ │ └── web.xml │ └── test │ └── scala │ └── com │ └── example │ └── TwirlExampleSpec.scala ├── 2.8 ├── async │ └── akka-examples │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ ├── logback.xml │ │ │ └── rebel.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── app │ │ │ │ ├── FutureController.scala │ │ │ │ └── MyActorApp.scala │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ │ └── test │ │ └── scala │ │ └── com │ │ └── example │ │ └── app │ │ ├── FutureControllerSpec.scala │ │ └── MyActorAppSpec.scala ├── deployment │ └── scalatra-heroku │ │ ├── .gitignore │ │ ├── Procfile │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ └── main │ │ ├── scala │ │ ├── HerokuApp.scala │ │ ├── JettyLauncher.scala │ │ └── ScalatraBootstrap.scala │ │ └── webapp │ │ └── WEB-INF │ │ └── web.xml ├── formats │ └── scalatra-forms │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ ├── logback.xml │ │ │ └── rebel.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ └── forms │ │ │ │ └── FormsController.scala │ │ ├── twirl │ │ │ ├── form.scala.html │ │ │ └── result.scala.html │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── example │ │ └── forms │ │ └── FormsControllerSpec.scala ├── http │ ├── authentication-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ ├── AuthDemo.scala │ │ │ │ │ └── AuthenticationSupport.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── AuthDemoSpec.scala │ ├── scalatra-gzip │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ └── GZipApp.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── GZipSpec.scala │ ├── scalatra-http-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ ├── CookiesExample.scala │ │ │ │ │ ├── FileUploadExample.scala │ │ │ │ │ ├── FilterExample.scala │ │ │ │ │ └── HttpExample.scala │ │ │ └── webapp │ │ │ │ ├── WEB-INF │ │ │ │ └── web.xml │ │ │ │ └── assets │ │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── scalatra.css │ │ │ │ └── syntax.css │ │ │ │ ├── img │ │ │ │ ├── back_pattern.png │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ ├── logo-s.png │ │ │ │ ├── logo-x.png │ │ │ │ ├── scalatra_logo.png │ │ │ │ └── skeletal_weave.png │ │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── jquery.min.js │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── HttpExampleSpec.scala │ └── scentry-auth-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── logback.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── com │ │ │ │ └── constructiveproof │ │ │ │ └── example │ │ │ │ ├── ProtectedController.scala │ │ │ │ ├── SessionsController.scala │ │ │ │ ├── auth │ │ │ │ ├── AuthenticationSupport.scala │ │ │ │ └── strategies │ │ │ │ │ ├── RememberMeStrategy.scala │ │ │ │ │ └── UserPasswordStrategy.scala │ │ │ │ └── models │ │ │ │ └── User.scala │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ │ └── test │ │ └── scala │ │ └── com │ │ └── constructiveproof │ │ └── example │ │ ├── ScentryAuthFailureSpec.scala │ │ └── ScentryAuthSuccessSpec.scala ├── persistence │ ├── scalatra-mongo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ ├── MongoController.scala │ │ │ │ └── ScalatraMongoExample.scala │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ ├── scalatra-slick │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── c3p0.properties │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── slickexample │ │ │ │ │ └── SlickApp.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── slickexample │ │ │ └── SlickAppSpec.scala │ └── scalatra-squeryl │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── logback.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ ├── ArticlesController.scala │ │ │ │ ├── init │ │ │ │ ├── DatabaseInit.scala │ │ │ │ └── DatabaseSessionSupport.scala │ │ │ │ └── models │ │ │ │ └── BlogDb.scala │ │ ├── twirl │ │ │ ├── form.scala.html │ │ │ ├── index.scala.html │ │ │ └── layout.scala.html │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── layouts │ │ │ │ └── default.ssp │ │ │ ├── views │ │ │ │ └── articles │ │ │ │ │ ├── index.ssp │ │ │ │ │ └── new.ssp │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ │ ├── favicon.ico │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ ├── angular-1.0.1.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── jquery.min.js │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── example │ │ └── ArticlesControllerSpec.scala ├── swagger-example │ ├── .gitignore │ ├── README.md │ ├── build.sbt │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ ├── sbt │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── logback.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ └── swagger │ │ │ │ ├── FlowersController.scala │ │ │ │ └── FlowersSwagger.scala │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── example │ │ └── swagger │ │ └── FlowersSpec.scala └── views │ └── scalatra-twirl │ ├── .gitignore │ ├── README.md │ ├── build.sbt │ ├── project │ ├── build.properties │ └── plugins.sbt │ ├── sbt │ └── src │ ├── main │ ├── resources │ │ └── logback.xml │ ├── scala │ │ ├── ScalatraBootstrap.scala │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── ScalatraTwirlServlet.scala │ ├── twirl │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── hello.scala.html │ └── webapp │ │ └── WEB-INF │ │ └── web.xml │ └── test │ └── scala │ └── com │ └── example │ └── TwirlExampleSpec.scala ├── 3.0 ├── async │ └── pekko-examples │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ ├── logback.xml │ │ │ └── rebel.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── app │ │ │ │ ├── FutureController.scala │ │ │ │ └── MyActorApp.scala │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ │ └── test │ │ └── scala │ │ └── com │ │ └── example │ │ └── app │ │ ├── FutureControllerSpec.scala │ │ └── MyActorAppSpec.scala ├── formats │ └── scalatra-forms │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ ├── logback.xml │ │ │ └── rebel.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ └── forms │ │ │ │ └── FormsController.scala │ │ ├── twirl │ │ │ ├── form.scala.html │ │ │ └── result.scala.html │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── example │ │ └── forms │ │ └── FormsControllerSpec.scala ├── http │ ├── authentication-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ ├── AuthDemo.scala │ │ │ │ │ └── AuthenticationSupport.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── AuthDemoSpec.scala │ ├── scalatra-gzip │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ └── GZipApp.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── GZipSpec.scala │ ├── scalatra-http-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── example │ │ │ │ │ ├── CookiesExample.scala │ │ │ │ │ ├── FileUploadExample.scala │ │ │ │ │ ├── FilterExample.scala │ │ │ │ │ └── HttpExample.scala │ │ │ └── webapp │ │ │ │ ├── WEB-INF │ │ │ │ └── web.xml │ │ │ │ └── assets │ │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── scalatra.css │ │ │ │ └── syntax.css │ │ │ │ ├── img │ │ │ │ ├── back_pattern.png │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ ├── logo-s.png │ │ │ │ ├── logo-x.png │ │ │ │ ├── scalatra_logo.png │ │ │ │ └── skeletal_weave.png │ │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── jquery.min.js │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── HttpExampleSpec.scala │ └── scentry-auth-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── logback.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── com │ │ │ │ └── constructiveproof │ │ │ │ └── example │ │ │ │ ├── ProtectedController.scala │ │ │ │ ├── SessionsController.scala │ │ │ │ ├── auth │ │ │ │ ├── AuthenticationSupport.scala │ │ │ │ └── strategies │ │ │ │ │ ├── RememberMeStrategy.scala │ │ │ │ │ └── UserPasswordStrategy.scala │ │ │ │ └── models │ │ │ │ └── User.scala │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ │ └── test │ │ └── scala │ │ └── com │ │ └── constructiveproof │ │ └── example │ │ ├── ScentryAuthFailureSpec.scala │ │ └── ScentryAuthSuccessSpec.scala ├── persistence │ ├── scalatra-slick │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── c3p0.properties │ │ │ │ └── logback.xml │ │ │ ├── scala │ │ │ │ ├── ScalatraBootstrap.scala │ │ │ │ └── org │ │ │ │ │ └── scalatra │ │ │ │ │ └── slickexample │ │ │ │ │ └── SlickApp.scala │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── scala │ │ │ └── org │ │ │ └── scalatra │ │ │ └── slickexample │ │ │ └── SlickAppSpec.scala │ └── scalatra-squeryl │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── sbt │ │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── logback.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ ├── ArticlesController.scala │ │ │ │ ├── init │ │ │ │ ├── DatabaseInit.scala │ │ │ │ └── DatabaseSessionSupport.scala │ │ │ │ └── models │ │ │ │ └── BlogDb.scala │ │ ├── twirl │ │ │ ├── form.scala.html │ │ │ ├── index.scala.html │ │ │ └── layout.scala.html │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── layouts │ │ │ │ └── default.ssp │ │ │ ├── views │ │ │ │ └── articles │ │ │ │ │ ├── index.ssp │ │ │ │ │ └── new.ssp │ │ │ └── web.xml │ │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ │ ├── favicon.ico │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ ├── angular-1.0.1.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── jquery.min.js │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── example │ │ └── ArticlesControllerSpec.scala ├── swagger-example │ ├── .gitignore │ ├── README.md │ ├── build.sbt │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ ├── sbt │ └── src │ │ ├── main │ │ ├── resources │ │ │ └── logback.xml │ │ ├── scala │ │ │ ├── ScalatraBootstrap.scala │ │ │ └── org │ │ │ │ └── scalatra │ │ │ │ └── example │ │ │ │ └── swagger │ │ │ │ ├── FlowersController.scala │ │ │ │ └── FlowersSwagger.scala │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ │ └── test │ │ └── scala │ │ └── org │ │ └── scalatra │ │ └── example │ │ └── swagger │ │ └── FlowersSpec.scala └── views │ └── scalatra-twirl │ ├── .gitignore │ ├── README.md │ ├── build.sbt │ ├── project │ ├── build.properties │ └── plugins.sbt │ ├── sbt │ └── src │ ├── main │ ├── resources │ │ └── logback.xml │ ├── scala │ │ ├── ScalatraBootstrap.scala │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── ScalatraTwirlServlet.scala │ ├── twirl │ │ └── org │ │ │ └── scalatra │ │ │ └── example │ │ │ └── hello.scala.html │ └── webapp │ │ └── WEB-INF │ │ └── web.xml │ └── test │ └── scala │ └── com │ └── example │ └── TwirlExampleSpec.scala └── README.md /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/scala.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/.github/workflows/scala.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /2.3/async/akka-examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/async/akka-examples/.gitignore -------------------------------------------------------------------------------- /2.3/async/akka-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/async/akka-examples/README.md -------------------------------------------------------------------------------- /2.3/async/akka-examples/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | 3 | -------------------------------------------------------------------------------- /2.3/async/akka-examples/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/async/akka-examples/project/build.scala -------------------------------------------------------------------------------- /2.3/async/akka-examples/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/async/akka-examples/project/plugins.sbt -------------------------------------------------------------------------------- /2.3/async/akka-examples/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/async/akka-examples/sbt -------------------------------------------------------------------------------- /2.3/async/akka-examples/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/async/akka-examples/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.3/async/akka-examples/src/main/resources/rebel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/async/akka-examples/src/main/resources/rebel.xml -------------------------------------------------------------------------------- /2.3/async/akka-examples/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/async/akka-examples/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.3/async/scalatra-atmosphere-embedded/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/async/scalatra-atmosphere-embedded/.gitignore -------------------------------------------------------------------------------- /2.3/async/scalatra-atmosphere-embedded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/async/scalatra-atmosphere-embedded/README.md -------------------------------------------------------------------------------- /2.3/async/scalatra-atmosphere-embedded/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | -------------------------------------------------------------------------------- /2.3/async/scalatra-atmosphere-embedded/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/async/scalatra-atmosphere-embedded/project/build.scala -------------------------------------------------------------------------------- /2.3/async/scalatra-atmosphere-embedded/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/async/scalatra-atmosphere-embedded/project/plugins.sbt -------------------------------------------------------------------------------- /2.3/async/scalatra-atmosphere-embedded/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/async/scalatra-atmosphere-embedded/sbt -------------------------------------------------------------------------------- /2.3/async/scalatra-atmosphere-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/async/scalatra-atmosphere-example/.gitignore -------------------------------------------------------------------------------- /2.3/async/scalatra-atmosphere-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/async/scalatra-atmosphere-example/README.md -------------------------------------------------------------------------------- /2.3/async/scalatra-atmosphere-example/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | -------------------------------------------------------------------------------- /2.3/async/scalatra-atmosphere-example/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/async/scalatra-atmosphere-example/project/build.scala -------------------------------------------------------------------------------- /2.3/async/scalatra-atmosphere-example/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/async/scalatra-atmosphere-example/project/plugins.sbt -------------------------------------------------------------------------------- /2.3/async/scalatra-atmosphere-example/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/async/scalatra-atmosphere-example/sbt -------------------------------------------------------------------------------- /2.3/deployment/scalatra-heroku/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/deployment/scalatra-heroku/.gitignore -------------------------------------------------------------------------------- /2.3/deployment/scalatra-heroku/Procfile: -------------------------------------------------------------------------------- 1 | web: target/universal/stage/bin/heroku-example -Dhttp.port=$PORT 2 | -------------------------------------------------------------------------------- /2.3/deployment/scalatra-heroku/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/deployment/scalatra-heroku/README.md -------------------------------------------------------------------------------- /2.3/deployment/scalatra-heroku/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | -------------------------------------------------------------------------------- /2.3/deployment/scalatra-heroku/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/deployment/scalatra-heroku/project/build.scala -------------------------------------------------------------------------------- /2.3/deployment/scalatra-heroku/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/deployment/scalatra-heroku/project/plugins.sbt -------------------------------------------------------------------------------- /2.3/deployment/scalatra-heroku/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/deployment/scalatra-heroku/sbt -------------------------------------------------------------------------------- /2.3/deployment/scalatra-heroku/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/deployment/scalatra-heroku/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.3/deployment/scalatra-heroku/system.properties: -------------------------------------------------------------------------------- 1 | java.runtime.version=1.7 2 | -------------------------------------------------------------------------------- /2.3/deployment/scalatra-jelastic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/deployment/scalatra-jelastic/.gitignore -------------------------------------------------------------------------------- /2.3/deployment/scalatra-jelastic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/deployment/scalatra-jelastic/README.md -------------------------------------------------------------------------------- /2.3/deployment/scalatra-jelastic/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/deployment/scalatra-jelastic/build.sbt -------------------------------------------------------------------------------- /2.3/deployment/scalatra-jelastic/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | -------------------------------------------------------------------------------- /2.3/deployment/scalatra-jelastic/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/deployment/scalatra-jelastic/project/build.scala -------------------------------------------------------------------------------- /2.3/deployment/scalatra-jelastic/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/deployment/scalatra-jelastic/project/plugins.sbt -------------------------------------------------------------------------------- /2.3/deployment/scalatra-jelastic/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/deployment/scalatra-jelastic/sbt -------------------------------------------------------------------------------- /2.3/formats/scalatra-commands/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/formats/scalatra-commands/.gitignore -------------------------------------------------------------------------------- /2.3/formats/scalatra-commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/formats/scalatra-commands/README.md -------------------------------------------------------------------------------- /2.3/formats/scalatra-commands/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | -------------------------------------------------------------------------------- /2.3/formats/scalatra-commands/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/formats/scalatra-commands/project/build.scala -------------------------------------------------------------------------------- /2.3/formats/scalatra-commands/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/formats/scalatra-commands/project/plugins.sbt -------------------------------------------------------------------------------- /2.3/formats/scalatra-commands/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/formats/scalatra-commands/sbt -------------------------------------------------------------------------------- /2.3/formats/scalatra-commands/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/formats/scalatra-commands/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.3/formats/scalatra-commands/src/main/resources/rebel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/formats/scalatra-commands/src/main/resources/rebel.xml -------------------------------------------------------------------------------- /2.3/formats/scalatra-commands/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/formats/scalatra-commands/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.3/formats/scalatra-commands/src/main/webapp/css/todo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/formats/scalatra-commands/src/main/webapp/css/todo.css -------------------------------------------------------------------------------- /2.3/formats/scalatra-commands/src/main/webapp/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/formats/scalatra-commands/src/main/webapp/js/bootstrap.js -------------------------------------------------------------------------------- /2.3/http/authentication-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/authentication-demo/.gitignore -------------------------------------------------------------------------------- /2.3/http/authentication-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/authentication-demo/README.md -------------------------------------------------------------------------------- /2.3/http/authentication-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | -------------------------------------------------------------------------------- /2.3/http/authentication-demo/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/authentication-demo/project/build.scala -------------------------------------------------------------------------------- /2.3/http/authentication-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/authentication-demo/project/plugins.sbt -------------------------------------------------------------------------------- /2.3/http/authentication-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/authentication-demo/sbt -------------------------------------------------------------------------------- /2.3/http/authentication-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/authentication-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.3/http/authentication-demo/src/main/resources/rebel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/authentication-demo/src/main/resources/rebel.xml -------------------------------------------------------------------------------- /2.3/http/authentication-demo/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/authentication-demo/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.3/http/scalatra-gzip/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-gzip/.gitignore -------------------------------------------------------------------------------- /2.3/http/scalatra-gzip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-gzip/README.md -------------------------------------------------------------------------------- /2.3/http/scalatra-gzip/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | -------------------------------------------------------------------------------- /2.3/http/scalatra-gzip/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-gzip/project/build.scala -------------------------------------------------------------------------------- /2.3/http/scalatra-gzip/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-gzip/project/plugins.sbt -------------------------------------------------------------------------------- /2.3/http/scalatra-gzip/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-gzip/sbt -------------------------------------------------------------------------------- /2.3/http/scalatra-gzip/src/main/scala/GZipApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-gzip/src/main/scala/GZipApp.scala -------------------------------------------------------------------------------- /2.3/http/scalatra-gzip/src/main/scala/ScalatraBootstrap.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-gzip/src/main/scala/ScalatraBootstrap.scala -------------------------------------------------------------------------------- /2.3/http/scalatra-gzip/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-gzip/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.3/http/scalatra-http-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-http-client/.gitignore -------------------------------------------------------------------------------- /2.3/http/scalatra-http-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-http-client/README.md -------------------------------------------------------------------------------- /2.3/http/scalatra-http-client/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | -------------------------------------------------------------------------------- /2.3/http/scalatra-http-client/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-http-client/project/build.scala -------------------------------------------------------------------------------- /2.3/http/scalatra-http-client/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-http-client/project/plugins.sbt -------------------------------------------------------------------------------- /2.3/http/scalatra-http-client/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-http-client/sbt -------------------------------------------------------------------------------- /2.3/http/scalatra-http-client/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-http-client/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.3/http/scalatra-http-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-http-demo/.gitignore -------------------------------------------------------------------------------- /2.3/http/scalatra-http-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-http-demo/README.md -------------------------------------------------------------------------------- /2.3/http/scalatra-http-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | -------------------------------------------------------------------------------- /2.3/http/scalatra-http-demo/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-http-demo/project/build.scala -------------------------------------------------------------------------------- /2.3/http/scalatra-http-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-http-demo/project/plugins.sbt -------------------------------------------------------------------------------- /2.3/http/scalatra-http-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-http-demo/sbt -------------------------------------------------------------------------------- /2.3/http/scalatra-http-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-http-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.3/http/scalatra-http-demo/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scalatra-http-demo/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.3/http/scentry-auth-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scentry-auth-demo/.gitignore -------------------------------------------------------------------------------- /2.3/http/scentry-auth-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scentry-auth-demo/README.md -------------------------------------------------------------------------------- /2.3/http/scentry-auth-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | -------------------------------------------------------------------------------- /2.3/http/scentry-auth-demo/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scentry-auth-demo/project/build.scala -------------------------------------------------------------------------------- /2.3/http/scentry-auth-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scentry-auth-demo/project/plugins.sbt -------------------------------------------------------------------------------- /2.3/http/scentry-auth-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scentry-auth-demo/sbt -------------------------------------------------------------------------------- /2.3/http/scentry-auth-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scentry-auth-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.3/http/scentry-auth-demo/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/http/scentry-auth-demo/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.3/persistence/riak-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/riak-example/.gitignore -------------------------------------------------------------------------------- /2.3/persistence/riak-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/riak-example/README.md -------------------------------------------------------------------------------- /2.3/persistence/riak-example/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | -------------------------------------------------------------------------------- /2.3/persistence/riak-example/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/riak-example/project/build.scala -------------------------------------------------------------------------------- /2.3/persistence/riak-example/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/riak-example/project/plugins.sbt -------------------------------------------------------------------------------- /2.3/persistence/riak-example/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/riak-example/sbt -------------------------------------------------------------------------------- /2.3/persistence/riak-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/riak-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.3/persistence/riak-example/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/riak-example/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.3/persistence/scalatra-casbah-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/scalatra-casbah-example/.gitignore -------------------------------------------------------------------------------- /2.3/persistence/scalatra-casbah-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/scalatra-casbah-example/README.md -------------------------------------------------------------------------------- /2.3/persistence/scalatra-casbah-example/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | -------------------------------------------------------------------------------- /2.3/persistence/scalatra-casbah-example/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/scalatra-casbah-example/project/build.scala -------------------------------------------------------------------------------- /2.3/persistence/scalatra-casbah-example/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/scalatra-casbah-example/project/plugins.sbt -------------------------------------------------------------------------------- /2.3/persistence/scalatra-casbah-example/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/scalatra-casbah-example/sbt -------------------------------------------------------------------------------- /2.3/persistence/scalatra-slick/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/scalatra-slick/.gitignore -------------------------------------------------------------------------------- /2.3/persistence/scalatra-slick/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/scalatra-slick/.project -------------------------------------------------------------------------------- /2.3/persistence/scalatra-slick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/scalatra-slick/README.md -------------------------------------------------------------------------------- /2.3/persistence/scalatra-slick/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | -------------------------------------------------------------------------------- /2.3/persistence/scalatra-slick/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/scalatra-slick/project/build.scala -------------------------------------------------------------------------------- /2.3/persistence/scalatra-slick/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/scalatra-slick/project/plugins.sbt -------------------------------------------------------------------------------- /2.3/persistence/scalatra-slick/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/scalatra-slick/sbt -------------------------------------------------------------------------------- /2.3/persistence/scalatra-slick/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/scalatra-slick/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.3/persistence/scalatra-squeryl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/scalatra-squeryl/.gitignore -------------------------------------------------------------------------------- /2.3/persistence/scalatra-squeryl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/scalatra-squeryl/README.md -------------------------------------------------------------------------------- /2.3/persistence/scalatra-squeryl/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | -------------------------------------------------------------------------------- /2.3/persistence/scalatra-squeryl/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/scalatra-squeryl/project/build.scala -------------------------------------------------------------------------------- /2.3/persistence/scalatra-squeryl/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/scalatra-squeryl/project/plugins.sbt -------------------------------------------------------------------------------- /2.3/persistence/scalatra-squeryl/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/persistence/scalatra-squeryl/sbt -------------------------------------------------------------------------------- /2.3/resources/scalatra-coffeescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/resources/scalatra-coffeescript/.gitignore -------------------------------------------------------------------------------- /2.3/resources/scalatra-coffeescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/resources/scalatra-coffeescript/README.md -------------------------------------------------------------------------------- /2.3/resources/scalatra-coffeescript/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/resources/scalatra-coffeescript/build.sbt -------------------------------------------------------------------------------- /2.3/resources/scalatra-coffeescript/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | -------------------------------------------------------------------------------- /2.3/resources/scalatra-coffeescript/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/resources/scalatra-coffeescript/project/build.scala -------------------------------------------------------------------------------- /2.3/resources/scalatra-coffeescript/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/resources/scalatra-coffeescript/project/plugins.sbt -------------------------------------------------------------------------------- /2.3/resources/scalatra-coffeescript/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/resources/scalatra-coffeescript/sbt -------------------------------------------------------------------------------- /2.3/resources/scalatra-coffeescript/src/main/webapp/coffee/main.coffee: -------------------------------------------------------------------------------- 1 | alert "Hello CoffeeScript!" 2 | -------------------------------------------------------------------------------- /2.3/resources/scalatra-less-css/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/resources/scalatra-less-css/.gitignore -------------------------------------------------------------------------------- /2.3/resources/scalatra-less-css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/resources/scalatra-less-css/README.md -------------------------------------------------------------------------------- /2.3/resources/scalatra-less-css/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/resources/scalatra-less-css/build.sbt -------------------------------------------------------------------------------- /2.3/resources/scalatra-less-css/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | -------------------------------------------------------------------------------- /2.3/resources/scalatra-less-css/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/resources/scalatra-less-css/project/build.scala -------------------------------------------------------------------------------- /2.3/resources/scalatra-less-css/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/resources/scalatra-less-css/project/plugins.sbt -------------------------------------------------------------------------------- /2.3/resources/scalatra-less-css/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/resources/scalatra-less-css/sbt -------------------------------------------------------------------------------- /2.3/swagger-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/swagger-example/.gitignore -------------------------------------------------------------------------------- /2.3/swagger-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/swagger-example/README.md -------------------------------------------------------------------------------- /2.3/swagger-example/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.5 2 | -------------------------------------------------------------------------------- /2.3/swagger-example/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/swagger-example/project/build.scala -------------------------------------------------------------------------------- /2.3/swagger-example/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/swagger-example/project/plugins.sbt -------------------------------------------------------------------------------- /2.3/swagger-example/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/swagger-example/sbt -------------------------------------------------------------------------------- /2.3/swagger-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/swagger-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.3/swagger-example/src/main/scala/ScalatraBootstrap.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/swagger-example/src/main/scala/ScalatraBootstrap.scala -------------------------------------------------------------------------------- /2.3/swagger-example/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.3/swagger-example/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.4/async/akka-examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/async/akka-examples/.gitignore -------------------------------------------------------------------------------- /2.4/async/akka-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/async/akka-examples/README.md -------------------------------------------------------------------------------- /2.4/async/akka-examples/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.9 2 | -------------------------------------------------------------------------------- /2.4/async/akka-examples/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/async/akka-examples/project/build.scala -------------------------------------------------------------------------------- /2.4/async/akka-examples/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/async/akka-examples/project/plugins.sbt -------------------------------------------------------------------------------- /2.4/async/akka-examples/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/async/akka-examples/sbt -------------------------------------------------------------------------------- /2.4/async/akka-examples/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/async/akka-examples/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.4/async/akka-examples/src/main/resources/rebel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/async/akka-examples/src/main/resources/rebel.xml -------------------------------------------------------------------------------- /2.4/async/akka-examples/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/async/akka-examples/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.4/async/scalatra-atmosphere-embedded/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/async/scalatra-atmosphere-embedded/.gitignore -------------------------------------------------------------------------------- /2.4/async/scalatra-atmosphere-embedded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/async/scalatra-atmosphere-embedded/README.md -------------------------------------------------------------------------------- /2.4/async/scalatra-atmosphere-embedded/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.9 2 | -------------------------------------------------------------------------------- /2.4/async/scalatra-atmosphere-embedded/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/async/scalatra-atmosphere-embedded/project/build.scala -------------------------------------------------------------------------------- /2.4/async/scalatra-atmosphere-embedded/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/async/scalatra-atmosphere-embedded/project/plugins.sbt -------------------------------------------------------------------------------- /2.4/async/scalatra-atmosphere-embedded/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/async/scalatra-atmosphere-embedded/sbt -------------------------------------------------------------------------------- /2.4/async/scalatra-atmosphere-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/async/scalatra-atmosphere-example/.gitignore -------------------------------------------------------------------------------- /2.4/async/scalatra-atmosphere-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/async/scalatra-atmosphere-example/README.md -------------------------------------------------------------------------------- /2.4/async/scalatra-atmosphere-example/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.9 2 | -------------------------------------------------------------------------------- /2.4/async/scalatra-atmosphere-example/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/async/scalatra-atmosphere-example/project/build.scala -------------------------------------------------------------------------------- /2.4/async/scalatra-atmosphere-example/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/async/scalatra-atmosphere-example/project/plugins.sbt -------------------------------------------------------------------------------- /2.4/async/scalatra-atmosphere-example/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/async/scalatra-atmosphere-example/sbt -------------------------------------------------------------------------------- /2.4/deployment/scalatra-heroku/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/deployment/scalatra-heroku/.gitignore -------------------------------------------------------------------------------- /2.4/deployment/scalatra-heroku/Procfile: -------------------------------------------------------------------------------- 1 | web: target/universal/stage/bin/heroku-example -Dhttp.port=$PORT 2 | -------------------------------------------------------------------------------- /2.4/deployment/scalatra-heroku/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/deployment/scalatra-heroku/README.md -------------------------------------------------------------------------------- /2.4/deployment/scalatra-heroku/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.9 2 | -------------------------------------------------------------------------------- /2.4/deployment/scalatra-heroku/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/deployment/scalatra-heroku/project/build.scala -------------------------------------------------------------------------------- /2.4/deployment/scalatra-heroku/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/deployment/scalatra-heroku/project/plugins.sbt -------------------------------------------------------------------------------- /2.4/deployment/scalatra-heroku/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/deployment/scalatra-heroku/sbt -------------------------------------------------------------------------------- /2.4/deployment/scalatra-jelastic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/deployment/scalatra-jelastic/.gitignore -------------------------------------------------------------------------------- /2.4/deployment/scalatra-jelastic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/deployment/scalatra-jelastic/README.md -------------------------------------------------------------------------------- /2.4/deployment/scalatra-jelastic/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/deployment/scalatra-jelastic/build.sbt -------------------------------------------------------------------------------- /2.4/deployment/scalatra-jelastic/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.9 2 | -------------------------------------------------------------------------------- /2.4/deployment/scalatra-jelastic/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/deployment/scalatra-jelastic/project/build.scala -------------------------------------------------------------------------------- /2.4/deployment/scalatra-jelastic/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/deployment/scalatra-jelastic/project/plugins.sbt -------------------------------------------------------------------------------- /2.4/deployment/scalatra-jelastic/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/deployment/scalatra-jelastic/sbt -------------------------------------------------------------------------------- /2.4/formats/scalatra-commands/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/formats/scalatra-commands/.gitignore -------------------------------------------------------------------------------- /2.4/formats/scalatra-commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/formats/scalatra-commands/README.md -------------------------------------------------------------------------------- /2.4/formats/scalatra-commands/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.9 2 | -------------------------------------------------------------------------------- /2.4/formats/scalatra-commands/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/formats/scalatra-commands/project/build.scala -------------------------------------------------------------------------------- /2.4/formats/scalatra-commands/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/formats/scalatra-commands/project/plugins.sbt -------------------------------------------------------------------------------- /2.4/formats/scalatra-commands/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/formats/scalatra-commands/sbt -------------------------------------------------------------------------------- /2.4/formats/scalatra-commands/src/main/resources/rebel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/formats/scalatra-commands/src/main/resources/rebel.xml -------------------------------------------------------------------------------- /2.4/formats/scalatra-commands/src/main/webapp/css/todo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/formats/scalatra-commands/src/main/webapp/css/todo.css -------------------------------------------------------------------------------- /2.4/http/authentication-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/authentication-demo/.gitignore -------------------------------------------------------------------------------- /2.4/http/authentication-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/authentication-demo/README.md -------------------------------------------------------------------------------- /2.4/http/authentication-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.9 2 | -------------------------------------------------------------------------------- /2.4/http/authentication-demo/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/authentication-demo/project/build.scala -------------------------------------------------------------------------------- /2.4/http/authentication-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/authentication-demo/project/plugins.sbt -------------------------------------------------------------------------------- /2.4/http/authentication-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/authentication-demo/sbt -------------------------------------------------------------------------------- /2.4/http/authentication-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/authentication-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.4/http/scalatra-gzip/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scalatra-gzip/.gitignore -------------------------------------------------------------------------------- /2.4/http/scalatra-gzip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scalatra-gzip/README.md -------------------------------------------------------------------------------- /2.4/http/scalatra-gzip/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.9 2 | -------------------------------------------------------------------------------- /2.4/http/scalatra-gzip/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scalatra-gzip/project/build.scala -------------------------------------------------------------------------------- /2.4/http/scalatra-gzip/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scalatra-gzip/project/plugins.sbt -------------------------------------------------------------------------------- /2.4/http/scalatra-gzip/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scalatra-gzip/sbt -------------------------------------------------------------------------------- /2.4/http/scalatra-gzip/src/main/scala/GZipApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scalatra-gzip/src/main/scala/GZipApp.scala -------------------------------------------------------------------------------- /2.4/http/scalatra-gzip/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scalatra-gzip/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.4/http/scalatra-http-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scalatra-http-client/.gitignore -------------------------------------------------------------------------------- /2.4/http/scalatra-http-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scalatra-http-client/README.md -------------------------------------------------------------------------------- /2.4/http/scalatra-http-client/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.9 2 | -------------------------------------------------------------------------------- /2.4/http/scalatra-http-client/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scalatra-http-client/project/build.scala -------------------------------------------------------------------------------- /2.4/http/scalatra-http-client/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scalatra-http-client/project/plugins.sbt -------------------------------------------------------------------------------- /2.4/http/scalatra-http-client/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scalatra-http-client/sbt -------------------------------------------------------------------------------- /2.4/http/scalatra-http-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scalatra-http-demo/.gitignore -------------------------------------------------------------------------------- /2.4/http/scalatra-http-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scalatra-http-demo/README.md -------------------------------------------------------------------------------- /2.4/http/scalatra-http-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.9 2 | -------------------------------------------------------------------------------- /2.4/http/scalatra-http-demo/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scalatra-http-demo/project/build.scala -------------------------------------------------------------------------------- /2.4/http/scalatra-http-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scalatra-http-demo/project/plugins.sbt -------------------------------------------------------------------------------- /2.4/http/scalatra-http-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scalatra-http-demo/sbt -------------------------------------------------------------------------------- /2.4/http/scalatra-http-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scalatra-http-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.4/http/scalatra-http-demo/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scalatra-http-demo/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.4/http/scentry-auth-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scentry-auth-demo/.gitignore -------------------------------------------------------------------------------- /2.4/http/scentry-auth-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scentry-auth-demo/README.md -------------------------------------------------------------------------------- /2.4/http/scentry-auth-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.9 2 | -------------------------------------------------------------------------------- /2.4/http/scentry-auth-demo/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scentry-auth-demo/project/build.scala -------------------------------------------------------------------------------- /2.4/http/scentry-auth-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scentry-auth-demo/project/plugins.sbt -------------------------------------------------------------------------------- /2.4/http/scentry-auth-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scentry-auth-demo/sbt -------------------------------------------------------------------------------- /2.4/http/scentry-auth-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scentry-auth-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.4/http/scentry-auth-demo/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/http/scentry-auth-demo/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.4/persistence/riak-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/riak-example/.gitignore -------------------------------------------------------------------------------- /2.4/persistence/riak-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/riak-example/README.md -------------------------------------------------------------------------------- /2.4/persistence/riak-example/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.9 2 | -------------------------------------------------------------------------------- /2.4/persistence/riak-example/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/riak-example/project/build.scala -------------------------------------------------------------------------------- /2.4/persistence/riak-example/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/riak-example/project/plugins.sbt -------------------------------------------------------------------------------- /2.4/persistence/riak-example/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/riak-example/sbt -------------------------------------------------------------------------------- /2.4/persistence/riak-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/riak-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.4/persistence/scalatra-casbah-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/scalatra-casbah-example/.gitignore -------------------------------------------------------------------------------- /2.4/persistence/scalatra-casbah-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/scalatra-casbah-example/README.md -------------------------------------------------------------------------------- /2.4/persistence/scalatra-casbah-example/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.9 2 | -------------------------------------------------------------------------------- /2.4/persistence/scalatra-casbah-example/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/scalatra-casbah-example/project/build.scala -------------------------------------------------------------------------------- /2.4/persistence/scalatra-casbah-example/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/scalatra-casbah-example/project/plugins.sbt -------------------------------------------------------------------------------- /2.4/persistence/scalatra-casbah-example/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/scalatra-casbah-example/sbt -------------------------------------------------------------------------------- /2.4/persistence/scalatra-slick/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/scalatra-slick/.gitignore -------------------------------------------------------------------------------- /2.4/persistence/scalatra-slick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/scalatra-slick/README.md -------------------------------------------------------------------------------- /2.4/persistence/scalatra-slick/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.9 2 | -------------------------------------------------------------------------------- /2.4/persistence/scalatra-slick/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/scalatra-slick/project/build.scala -------------------------------------------------------------------------------- /2.4/persistence/scalatra-slick/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/scalatra-slick/project/plugins.sbt -------------------------------------------------------------------------------- /2.4/persistence/scalatra-slick/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/scalatra-slick/sbt -------------------------------------------------------------------------------- /2.4/persistence/scalatra-squeryl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/scalatra-squeryl/.gitignore -------------------------------------------------------------------------------- /2.4/persistence/scalatra-squeryl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/scalatra-squeryl/README.md -------------------------------------------------------------------------------- /2.4/persistence/scalatra-squeryl/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.9 2 | -------------------------------------------------------------------------------- /2.4/persistence/scalatra-squeryl/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/scalatra-squeryl/project/build.scala -------------------------------------------------------------------------------- /2.4/persistence/scalatra-squeryl/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/scalatra-squeryl/project/plugins.sbt -------------------------------------------------------------------------------- /2.4/persistence/scalatra-squeryl/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/persistence/scalatra-squeryl/sbt -------------------------------------------------------------------------------- /2.4/resources/scalatra-coffeescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/resources/scalatra-coffeescript/.gitignore -------------------------------------------------------------------------------- /2.4/resources/scalatra-coffeescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/resources/scalatra-coffeescript/README.md -------------------------------------------------------------------------------- /2.4/resources/scalatra-coffeescript/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/resources/scalatra-coffeescript/build.sbt -------------------------------------------------------------------------------- /2.4/resources/scalatra-coffeescript/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.9 2 | -------------------------------------------------------------------------------- /2.4/resources/scalatra-coffeescript/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/resources/scalatra-coffeescript/project/build.scala -------------------------------------------------------------------------------- /2.4/resources/scalatra-coffeescript/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/resources/scalatra-coffeescript/project/plugins.sbt -------------------------------------------------------------------------------- /2.4/resources/scalatra-coffeescript/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/resources/scalatra-coffeescript/sbt -------------------------------------------------------------------------------- /2.4/resources/scalatra-coffeescript/src/main/webapp/coffee/main.coffee: -------------------------------------------------------------------------------- 1 | alert "Hello CoffeeScript!" -------------------------------------------------------------------------------- /2.4/resources/scalatra-less-css/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/resources/scalatra-less-css/.gitignore -------------------------------------------------------------------------------- /2.4/resources/scalatra-less-css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/resources/scalatra-less-css/README.md -------------------------------------------------------------------------------- /2.4/resources/scalatra-less-css/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/resources/scalatra-less-css/build.sbt -------------------------------------------------------------------------------- /2.4/resources/scalatra-less-css/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.9 2 | -------------------------------------------------------------------------------- /2.4/resources/scalatra-less-css/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/resources/scalatra-less-css/project/build.scala -------------------------------------------------------------------------------- /2.4/resources/scalatra-less-css/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/resources/scalatra-less-css/project/plugins.sbt -------------------------------------------------------------------------------- /2.4/resources/scalatra-less-css/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/resources/scalatra-less-css/sbt -------------------------------------------------------------------------------- /2.4/swagger-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/swagger-example/.gitignore -------------------------------------------------------------------------------- /2.4/swagger-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/swagger-example/README.md -------------------------------------------------------------------------------- /2.4/swagger-example/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.9 2 | -------------------------------------------------------------------------------- /2.4/swagger-example/project/build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/swagger-example/project/build.scala -------------------------------------------------------------------------------- /2.4/swagger-example/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/swagger-example/project/plugins.sbt -------------------------------------------------------------------------------- /2.4/swagger-example/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/swagger-example/sbt -------------------------------------------------------------------------------- /2.4/swagger-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/swagger-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.4/swagger-example/src/main/scala/ScalatraBootstrap.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/swagger-example/src/main/scala/ScalatraBootstrap.scala -------------------------------------------------------------------------------- /2.4/swagger-example/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.4/swagger-example/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.5/async/akka-examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/async/akka-examples/.gitignore -------------------------------------------------------------------------------- /2.5/async/akka-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/async/akka-examples/README.md -------------------------------------------------------------------------------- /2.5/async/akka-examples/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/async/akka-examples/build.sbt -------------------------------------------------------------------------------- /2.5/async/akka-examples/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.15 2 | -------------------------------------------------------------------------------- /2.5/async/akka-examples/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/async/akka-examples/project/plugins.sbt -------------------------------------------------------------------------------- /2.5/async/akka-examples/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/async/akka-examples/sbt -------------------------------------------------------------------------------- /2.5/async/akka-examples/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/async/akka-examples/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.5/async/akka-examples/src/main/resources/rebel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/async/akka-examples/src/main/resources/rebel.xml -------------------------------------------------------------------------------- /2.5/async/akka-examples/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/async/akka-examples/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.5/async/scalatra-atmosphere-embedded/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/async/scalatra-atmosphere-embedded/.gitignore -------------------------------------------------------------------------------- /2.5/async/scalatra-atmosphere-embedded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/async/scalatra-atmosphere-embedded/README.md -------------------------------------------------------------------------------- /2.5/async/scalatra-atmosphere-embedded/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/async/scalatra-atmosphere-embedded/build.sbt -------------------------------------------------------------------------------- /2.5/async/scalatra-atmosphere-embedded/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.15 2 | -------------------------------------------------------------------------------- /2.5/async/scalatra-atmosphere-embedded/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/async/scalatra-atmosphere-embedded/project/plugins.sbt -------------------------------------------------------------------------------- /2.5/async/scalatra-atmosphere-embedded/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/async/scalatra-atmosphere-embedded/sbt -------------------------------------------------------------------------------- /2.5/async/scalatra-atmosphere-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/async/scalatra-atmosphere-example/.gitignore -------------------------------------------------------------------------------- /2.5/async/scalatra-atmosphere-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/async/scalatra-atmosphere-example/README.md -------------------------------------------------------------------------------- /2.5/async/scalatra-atmosphere-example/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/async/scalatra-atmosphere-example/build.sbt -------------------------------------------------------------------------------- /2.5/async/scalatra-atmosphere-example/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.15 2 | -------------------------------------------------------------------------------- /2.5/async/scalatra-atmosphere-example/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/async/scalatra-atmosphere-example/project/plugins.sbt -------------------------------------------------------------------------------- /2.5/async/scalatra-atmosphere-example/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/async/scalatra-atmosphere-example/sbt -------------------------------------------------------------------------------- /2.5/deployment/scalatra-heroku/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/deployment/scalatra-heroku/.gitignore -------------------------------------------------------------------------------- /2.5/deployment/scalatra-heroku/Procfile: -------------------------------------------------------------------------------- 1 | web: target/universal/stage/bin/heroku-example -Dhttp.port=$PORT 2 | -------------------------------------------------------------------------------- /2.5/deployment/scalatra-heroku/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/deployment/scalatra-heroku/README.md -------------------------------------------------------------------------------- /2.5/deployment/scalatra-heroku/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/deployment/scalatra-heroku/build.sbt -------------------------------------------------------------------------------- /2.5/deployment/scalatra-heroku/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.15 2 | -------------------------------------------------------------------------------- /2.5/deployment/scalatra-heroku/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/deployment/scalatra-heroku/project/plugins.sbt -------------------------------------------------------------------------------- /2.5/deployment/scalatra-heroku/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/deployment/scalatra-heroku/sbt -------------------------------------------------------------------------------- /2.5/formats/scalatra-commands/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/formats/scalatra-commands/.gitignore -------------------------------------------------------------------------------- /2.5/formats/scalatra-commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/formats/scalatra-commands/README.md -------------------------------------------------------------------------------- /2.5/formats/scalatra-commands/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/formats/scalatra-commands/build.sbt -------------------------------------------------------------------------------- /2.5/formats/scalatra-commands/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.15 2 | -------------------------------------------------------------------------------- /2.5/formats/scalatra-commands/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/formats/scalatra-commands/project/plugins.sbt -------------------------------------------------------------------------------- /2.5/formats/scalatra-commands/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/formats/scalatra-commands/sbt -------------------------------------------------------------------------------- /2.5/formats/scalatra-commands/src/main/resources/rebel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/formats/scalatra-commands/src/main/resources/rebel.xml -------------------------------------------------------------------------------- /2.5/formats/scalatra-commands/src/main/webapp/css/todo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/formats/scalatra-commands/src/main/webapp/css/todo.css -------------------------------------------------------------------------------- /2.5/http/authentication-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/authentication-demo/.gitignore -------------------------------------------------------------------------------- /2.5/http/authentication-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/authentication-demo/README.md -------------------------------------------------------------------------------- /2.5/http/authentication-demo/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/authentication-demo/build.sbt -------------------------------------------------------------------------------- /2.5/http/authentication-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.15 2 | -------------------------------------------------------------------------------- /2.5/http/authentication-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/authentication-demo/project/plugins.sbt -------------------------------------------------------------------------------- /2.5/http/authentication-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/authentication-demo/sbt -------------------------------------------------------------------------------- /2.5/http/authentication-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/authentication-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.5/http/scalatra-gzip/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scalatra-gzip/.gitignore -------------------------------------------------------------------------------- /2.5/http/scalatra-gzip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scalatra-gzip/README.md -------------------------------------------------------------------------------- /2.5/http/scalatra-gzip/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scalatra-gzip/build.sbt -------------------------------------------------------------------------------- /2.5/http/scalatra-gzip/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.15 2 | -------------------------------------------------------------------------------- /2.5/http/scalatra-gzip/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scalatra-gzip/project/plugins.sbt -------------------------------------------------------------------------------- /2.5/http/scalatra-gzip/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scalatra-gzip/sbt -------------------------------------------------------------------------------- /2.5/http/scalatra-gzip/src/main/scala/GZipApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scalatra-gzip/src/main/scala/GZipApp.scala -------------------------------------------------------------------------------- /2.5/http/scalatra-gzip/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scalatra-gzip/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.5/http/scalatra-http-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scalatra-http-demo/.gitignore -------------------------------------------------------------------------------- /2.5/http/scalatra-http-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scalatra-http-demo/README.md -------------------------------------------------------------------------------- /2.5/http/scalatra-http-demo/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scalatra-http-demo/build.sbt -------------------------------------------------------------------------------- /2.5/http/scalatra-http-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.15 2 | -------------------------------------------------------------------------------- /2.5/http/scalatra-http-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scalatra-http-demo/project/plugins.sbt -------------------------------------------------------------------------------- /2.5/http/scalatra-http-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scalatra-http-demo/sbt -------------------------------------------------------------------------------- /2.5/http/scalatra-http-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scalatra-http-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.5/http/scalatra-http-demo/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scalatra-http-demo/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.5/http/scentry-auth-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scentry-auth-demo/.gitignore -------------------------------------------------------------------------------- /2.5/http/scentry-auth-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scentry-auth-demo/README.md -------------------------------------------------------------------------------- /2.5/http/scentry-auth-demo/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scentry-auth-demo/build.sbt -------------------------------------------------------------------------------- /2.5/http/scentry-auth-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.15 2 | -------------------------------------------------------------------------------- /2.5/http/scentry-auth-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scentry-auth-demo/project/plugins.sbt -------------------------------------------------------------------------------- /2.5/http/scentry-auth-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scentry-auth-demo/sbt -------------------------------------------------------------------------------- /2.5/http/scentry-auth-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scentry-auth-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.5/http/scentry-auth-demo/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/http/scentry-auth-demo/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.5/persistence/riak-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/riak-example/.gitignore -------------------------------------------------------------------------------- /2.5/persistence/riak-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/riak-example/README.md -------------------------------------------------------------------------------- /2.5/persistence/riak-example/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/riak-example/build.sbt -------------------------------------------------------------------------------- /2.5/persistence/riak-example/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.15 2 | -------------------------------------------------------------------------------- /2.5/persistence/riak-example/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/riak-example/project/plugins.sbt -------------------------------------------------------------------------------- /2.5/persistence/riak-example/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/riak-example/sbt -------------------------------------------------------------------------------- /2.5/persistence/riak-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/riak-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.5/persistence/scalatra-casbah-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/scalatra-casbah-example/.gitignore -------------------------------------------------------------------------------- /2.5/persistence/scalatra-casbah-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/scalatra-casbah-example/README.md -------------------------------------------------------------------------------- /2.5/persistence/scalatra-casbah-example/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/scalatra-casbah-example/build.sbt -------------------------------------------------------------------------------- /2.5/persistence/scalatra-casbah-example/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.15 2 | -------------------------------------------------------------------------------- /2.5/persistence/scalatra-casbah-example/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/scalatra-casbah-example/project/plugins.sbt -------------------------------------------------------------------------------- /2.5/persistence/scalatra-casbah-example/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/scalatra-casbah-example/sbt -------------------------------------------------------------------------------- /2.5/persistence/scalatra-slick/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/scalatra-slick/.gitignore -------------------------------------------------------------------------------- /2.5/persistence/scalatra-slick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/scalatra-slick/README.md -------------------------------------------------------------------------------- /2.5/persistence/scalatra-slick/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/scalatra-slick/build.sbt -------------------------------------------------------------------------------- /2.5/persistence/scalatra-slick/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.15 2 | -------------------------------------------------------------------------------- /2.5/persistence/scalatra-slick/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/scalatra-slick/project/plugins.sbt -------------------------------------------------------------------------------- /2.5/persistence/scalatra-slick/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/scalatra-slick/sbt -------------------------------------------------------------------------------- /2.5/persistence/scalatra-squeryl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/scalatra-squeryl/.gitignore -------------------------------------------------------------------------------- /2.5/persistence/scalatra-squeryl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/scalatra-squeryl/README.md -------------------------------------------------------------------------------- /2.5/persistence/scalatra-squeryl/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/scalatra-squeryl/build.sbt -------------------------------------------------------------------------------- /2.5/persistence/scalatra-squeryl/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.15 2 | -------------------------------------------------------------------------------- /2.5/persistence/scalatra-squeryl/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/scalatra-squeryl/project/plugins.sbt -------------------------------------------------------------------------------- /2.5/persistence/scalatra-squeryl/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/persistence/scalatra-squeryl/sbt -------------------------------------------------------------------------------- /2.5/resources/scalatra-coffeescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/resources/scalatra-coffeescript/.gitignore -------------------------------------------------------------------------------- /2.5/resources/scalatra-coffeescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/resources/scalatra-coffeescript/README.md -------------------------------------------------------------------------------- /2.5/resources/scalatra-coffeescript/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/resources/scalatra-coffeescript/build.sbt -------------------------------------------------------------------------------- /2.5/resources/scalatra-coffeescript/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.15 2 | -------------------------------------------------------------------------------- /2.5/resources/scalatra-coffeescript/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/resources/scalatra-coffeescript/project/plugins.sbt -------------------------------------------------------------------------------- /2.5/resources/scalatra-coffeescript/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/resources/scalatra-coffeescript/sbt -------------------------------------------------------------------------------- /2.5/resources/scalatra-coffeescript/src/main/webapp/coffee/main.coffee: -------------------------------------------------------------------------------- 1 | alert "Hello CoffeeScript!" -------------------------------------------------------------------------------- /2.5/resources/scalatra-less-css/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/resources/scalatra-less-css/.gitignore -------------------------------------------------------------------------------- /2.5/resources/scalatra-less-css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/resources/scalatra-less-css/README.md -------------------------------------------------------------------------------- /2.5/resources/scalatra-less-css/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/resources/scalatra-less-css/build.sbt -------------------------------------------------------------------------------- /2.5/resources/scalatra-less-css/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.15 2 | -------------------------------------------------------------------------------- /2.5/resources/scalatra-less-css/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/resources/scalatra-less-css/project/plugins.sbt -------------------------------------------------------------------------------- /2.5/resources/scalatra-less-css/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/resources/scalatra-less-css/sbt -------------------------------------------------------------------------------- /2.5/swagger-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/swagger-example/.gitignore -------------------------------------------------------------------------------- /2.5/swagger-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/swagger-example/README.md -------------------------------------------------------------------------------- /2.5/swagger-example/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/swagger-example/build.sbt -------------------------------------------------------------------------------- /2.5/swagger-example/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.15 2 | -------------------------------------------------------------------------------- /2.5/swagger-example/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/swagger-example/project/plugins.sbt -------------------------------------------------------------------------------- /2.5/swagger-example/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/swagger-example/sbt -------------------------------------------------------------------------------- /2.5/swagger-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/swagger-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.5/swagger-example/src/main/scala/ScalatraBootstrap.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/swagger-example/src/main/scala/ScalatraBootstrap.scala -------------------------------------------------------------------------------- /2.5/swagger-example/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/swagger-example/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.5/views/scalatra-twirl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/views/scalatra-twirl/.gitignore -------------------------------------------------------------------------------- /2.5/views/scalatra-twirl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/views/scalatra-twirl/README.md -------------------------------------------------------------------------------- /2.5/views/scalatra-twirl/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/views/scalatra-twirl/build.sbt -------------------------------------------------------------------------------- /2.5/views/scalatra-twirl/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.15 2 | -------------------------------------------------------------------------------- /2.5/views/scalatra-twirl/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/views/scalatra-twirl/project/plugins.sbt -------------------------------------------------------------------------------- /2.5/views/scalatra-twirl/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/views/scalatra-twirl/sbt -------------------------------------------------------------------------------- /2.5/views/scalatra-twirl/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/views/scalatra-twirl/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.5/views/scalatra-twirl/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.5/views/scalatra-twirl/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.6/async/akka-examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/async/akka-examples/.gitignore -------------------------------------------------------------------------------- /2.6/async/akka-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/async/akka-examples/README.md -------------------------------------------------------------------------------- /2.6/async/akka-examples/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/async/akka-examples/build.sbt -------------------------------------------------------------------------------- /2.6/async/akka-examples/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.0.4 2 | -------------------------------------------------------------------------------- /2.6/async/akka-examples/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/async/akka-examples/project/plugins.sbt -------------------------------------------------------------------------------- /2.6/async/akka-examples/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/async/akka-examples/sbt -------------------------------------------------------------------------------- /2.6/async/akka-examples/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/async/akka-examples/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.6/async/akka-examples/src/main/resources/rebel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/async/akka-examples/src/main/resources/rebel.xml -------------------------------------------------------------------------------- /2.6/async/akka-examples/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/async/akka-examples/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.6/async/scalatra-atmosphere-embedded/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/async/scalatra-atmosphere-embedded/.gitignore -------------------------------------------------------------------------------- /2.6/async/scalatra-atmosphere-embedded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/async/scalatra-atmosphere-embedded/README.md -------------------------------------------------------------------------------- /2.6/async/scalatra-atmosphere-embedded/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/async/scalatra-atmosphere-embedded/build.sbt -------------------------------------------------------------------------------- /2.6/async/scalatra-atmosphere-embedded/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.0.4 2 | -------------------------------------------------------------------------------- /2.6/async/scalatra-atmosphere-embedded/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/async/scalatra-atmosphere-embedded/project/plugins.sbt -------------------------------------------------------------------------------- /2.6/async/scalatra-atmosphere-embedded/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/async/scalatra-atmosphere-embedded/sbt -------------------------------------------------------------------------------- /2.6/async/scalatra-atmosphere-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/async/scalatra-atmosphere-example/.gitignore -------------------------------------------------------------------------------- /2.6/async/scalatra-atmosphere-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/async/scalatra-atmosphere-example/README.md -------------------------------------------------------------------------------- /2.6/async/scalatra-atmosphere-example/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/async/scalatra-atmosphere-example/build.sbt -------------------------------------------------------------------------------- /2.6/async/scalatra-atmosphere-example/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.0.4 2 | -------------------------------------------------------------------------------- /2.6/async/scalatra-atmosphere-example/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/async/scalatra-atmosphere-example/project/plugins.sbt -------------------------------------------------------------------------------- /2.6/async/scalatra-atmosphere-example/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/async/scalatra-atmosphere-example/sbt -------------------------------------------------------------------------------- /2.6/deployment/scalatra-heroku/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/deployment/scalatra-heroku/.gitignore -------------------------------------------------------------------------------- /2.6/deployment/scalatra-heroku/Procfile: -------------------------------------------------------------------------------- 1 | web: target/universal/stage/bin/heroku-example -Dhttp.port=$PORT 2 | -------------------------------------------------------------------------------- /2.6/deployment/scalatra-heroku/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/deployment/scalatra-heroku/README.md -------------------------------------------------------------------------------- /2.6/deployment/scalatra-heroku/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/deployment/scalatra-heroku/build.sbt -------------------------------------------------------------------------------- /2.6/deployment/scalatra-heroku/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.0.4 2 | -------------------------------------------------------------------------------- /2.6/deployment/scalatra-heroku/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/deployment/scalatra-heroku/project/plugins.sbt -------------------------------------------------------------------------------- /2.6/deployment/scalatra-heroku/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/deployment/scalatra-heroku/sbt -------------------------------------------------------------------------------- /2.6/formats/scalatra-forms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/formats/scalatra-forms/.gitignore -------------------------------------------------------------------------------- /2.6/formats/scalatra-forms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/formats/scalatra-forms/README.md -------------------------------------------------------------------------------- /2.6/formats/scalatra-forms/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/formats/scalatra-forms/build.sbt -------------------------------------------------------------------------------- /2.6/formats/scalatra-forms/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.0.4 2 | -------------------------------------------------------------------------------- /2.6/formats/scalatra-forms/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/formats/scalatra-forms/project/plugins.sbt -------------------------------------------------------------------------------- /2.6/formats/scalatra-forms/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/formats/scalatra-forms/sbt -------------------------------------------------------------------------------- /2.6/formats/scalatra-forms/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/formats/scalatra-forms/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.6/formats/scalatra-forms/src/main/resources/rebel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/formats/scalatra-forms/src/main/resources/rebel.xml -------------------------------------------------------------------------------- /2.6/formats/scalatra-forms/src/main/twirl/form.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/formats/scalatra-forms/src/main/twirl/form.scala.html -------------------------------------------------------------------------------- /2.6/formats/scalatra-forms/src/main/twirl/result.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/formats/scalatra-forms/src/main/twirl/result.scala.html -------------------------------------------------------------------------------- /2.6/formats/scalatra-forms/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/formats/scalatra-forms/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.6/formats/scalatra-forms/src/main/webapp/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/formats/scalatra-forms/src/main/webapp/js/bootstrap.js -------------------------------------------------------------------------------- /2.6/formats/scalatra-forms/src/main/webapp/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/formats/scalatra-forms/src/main/webapp/js/npm.js -------------------------------------------------------------------------------- /2.6/http/authentication-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/authentication-demo/.gitignore -------------------------------------------------------------------------------- /2.6/http/authentication-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/authentication-demo/README.md -------------------------------------------------------------------------------- /2.6/http/authentication-demo/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/authentication-demo/build.sbt -------------------------------------------------------------------------------- /2.6/http/authentication-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.0.4 2 | -------------------------------------------------------------------------------- /2.6/http/authentication-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/authentication-demo/project/plugins.sbt -------------------------------------------------------------------------------- /2.6/http/authentication-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/authentication-demo/sbt -------------------------------------------------------------------------------- /2.6/http/authentication-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/authentication-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.6/http/scalatra-gzip/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scalatra-gzip/.gitignore -------------------------------------------------------------------------------- /2.6/http/scalatra-gzip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scalatra-gzip/README.md -------------------------------------------------------------------------------- /2.6/http/scalatra-gzip/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scalatra-gzip/build.sbt -------------------------------------------------------------------------------- /2.6/http/scalatra-gzip/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.0.4 2 | -------------------------------------------------------------------------------- /2.6/http/scalatra-gzip/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scalatra-gzip/project/plugins.sbt -------------------------------------------------------------------------------- /2.6/http/scalatra-gzip/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scalatra-gzip/sbt -------------------------------------------------------------------------------- /2.6/http/scalatra-gzip/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scalatra-gzip/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.6/http/scalatra-gzip/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scalatra-gzip/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.6/http/scalatra-http-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scalatra-http-demo/.gitignore -------------------------------------------------------------------------------- /2.6/http/scalatra-http-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scalatra-http-demo/README.md -------------------------------------------------------------------------------- /2.6/http/scalatra-http-demo/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scalatra-http-demo/build.sbt -------------------------------------------------------------------------------- /2.6/http/scalatra-http-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.0.4 2 | -------------------------------------------------------------------------------- /2.6/http/scalatra-http-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scalatra-http-demo/project/plugins.sbt -------------------------------------------------------------------------------- /2.6/http/scalatra-http-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scalatra-http-demo/sbt -------------------------------------------------------------------------------- /2.6/http/scalatra-http-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scalatra-http-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.6/http/scalatra-http-demo/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scalatra-http-demo/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.6/http/scentry-auth-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scentry-auth-demo/.gitignore -------------------------------------------------------------------------------- /2.6/http/scentry-auth-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scentry-auth-demo/README.md -------------------------------------------------------------------------------- /2.6/http/scentry-auth-demo/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scentry-auth-demo/build.sbt -------------------------------------------------------------------------------- /2.6/http/scentry-auth-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.0.4 2 | -------------------------------------------------------------------------------- /2.6/http/scentry-auth-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scentry-auth-demo/project/plugins.sbt -------------------------------------------------------------------------------- /2.6/http/scentry-auth-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scentry-auth-demo/sbt -------------------------------------------------------------------------------- /2.6/http/scentry-auth-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scentry-auth-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.6/http/scentry-auth-demo/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/http/scentry-auth-demo/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.6/persistence/scalatra-slick/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/persistence/scalatra-slick/.gitignore -------------------------------------------------------------------------------- /2.6/persistence/scalatra-slick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/persistence/scalatra-slick/README.md -------------------------------------------------------------------------------- /2.6/persistence/scalatra-slick/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/persistence/scalatra-slick/build.sbt -------------------------------------------------------------------------------- /2.6/persistence/scalatra-slick/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.0.4 2 | -------------------------------------------------------------------------------- /2.6/persistence/scalatra-slick/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/persistence/scalatra-slick/project/plugins.sbt -------------------------------------------------------------------------------- /2.6/persistence/scalatra-slick/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/persistence/scalatra-slick/sbt -------------------------------------------------------------------------------- /2.6/persistence/scalatra-squeryl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/persistence/scalatra-squeryl/.gitignore -------------------------------------------------------------------------------- /2.6/persistence/scalatra-squeryl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/persistence/scalatra-squeryl/README.md -------------------------------------------------------------------------------- /2.6/persistence/scalatra-squeryl/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/persistence/scalatra-squeryl/build.sbt -------------------------------------------------------------------------------- /2.6/persistence/scalatra-squeryl/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.0.4 2 | -------------------------------------------------------------------------------- /2.6/persistence/scalatra-squeryl/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/persistence/scalatra-squeryl/project/plugins.sbt -------------------------------------------------------------------------------- /2.6/persistence/scalatra-squeryl/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/persistence/scalatra-squeryl/sbt -------------------------------------------------------------------------------- /2.6/swagger-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/swagger-example/.gitignore -------------------------------------------------------------------------------- /2.6/swagger-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/swagger-example/README.md -------------------------------------------------------------------------------- /2.6/swagger-example/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/swagger-example/build.sbt -------------------------------------------------------------------------------- /2.6/swagger-example/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.2.8 2 | -------------------------------------------------------------------------------- /2.6/swagger-example/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/swagger-example/project/plugins.sbt -------------------------------------------------------------------------------- /2.6/swagger-example/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/swagger-example/sbt -------------------------------------------------------------------------------- /2.6/swagger-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/swagger-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.6/swagger-example/src/main/scala/ScalatraBootstrap.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/swagger-example/src/main/scala/ScalatraBootstrap.scala -------------------------------------------------------------------------------- /2.6/swagger-example/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/swagger-example/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.6/views/scalatra-twirl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/views/scalatra-twirl/.gitignore -------------------------------------------------------------------------------- /2.6/views/scalatra-twirl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/views/scalatra-twirl/README.md -------------------------------------------------------------------------------- /2.6/views/scalatra-twirl/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/views/scalatra-twirl/build.sbt -------------------------------------------------------------------------------- /2.6/views/scalatra-twirl/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.0.4 2 | -------------------------------------------------------------------------------- /2.6/views/scalatra-twirl/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/views/scalatra-twirl/project/plugins.sbt -------------------------------------------------------------------------------- /2.6/views/scalatra-twirl/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/views/scalatra-twirl/sbt -------------------------------------------------------------------------------- /2.6/views/scalatra-twirl/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/views/scalatra-twirl/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.6/views/scalatra-twirl/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.6/views/scalatra-twirl/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.7/async/akka-examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/async/akka-examples/.gitignore -------------------------------------------------------------------------------- /2.7/async/akka-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/async/akka-examples/README.md -------------------------------------------------------------------------------- /2.7/async/akka-examples/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/async/akka-examples/build.sbt -------------------------------------------------------------------------------- /2.7/async/akka-examples/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.4.6 2 | -------------------------------------------------------------------------------- /2.7/async/akka-examples/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/async/akka-examples/project/plugins.sbt -------------------------------------------------------------------------------- /2.7/async/akka-examples/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/async/akka-examples/sbt -------------------------------------------------------------------------------- /2.7/async/akka-examples/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/async/akka-examples/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.7/async/akka-examples/src/main/resources/rebel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/async/akka-examples/src/main/resources/rebel.xml -------------------------------------------------------------------------------- /2.7/async/akka-examples/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/async/akka-examples/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.7/async/scalatra-atmosphere-embedded/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/async/scalatra-atmosphere-embedded/.gitignore -------------------------------------------------------------------------------- /2.7/async/scalatra-atmosphere-embedded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/async/scalatra-atmosphere-embedded/README.md -------------------------------------------------------------------------------- /2.7/async/scalatra-atmosphere-embedded/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/async/scalatra-atmosphere-embedded/build.sbt -------------------------------------------------------------------------------- /2.7/async/scalatra-atmosphere-embedded/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.4.6 2 | -------------------------------------------------------------------------------- /2.7/async/scalatra-atmosphere-embedded/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/async/scalatra-atmosphere-embedded/project/plugins.sbt -------------------------------------------------------------------------------- /2.7/async/scalatra-atmosphere-embedded/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/async/scalatra-atmosphere-embedded/sbt -------------------------------------------------------------------------------- /2.7/async/scalatra-atmosphere-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/async/scalatra-atmosphere-example/.gitignore -------------------------------------------------------------------------------- /2.7/async/scalatra-atmosphere-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/async/scalatra-atmosphere-example/README.md -------------------------------------------------------------------------------- /2.7/async/scalatra-atmosphere-example/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/async/scalatra-atmosphere-example/build.sbt -------------------------------------------------------------------------------- /2.7/async/scalatra-atmosphere-example/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.4.6 2 | -------------------------------------------------------------------------------- /2.7/async/scalatra-atmosphere-example/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/async/scalatra-atmosphere-example/project/plugins.sbt -------------------------------------------------------------------------------- /2.7/async/scalatra-atmosphere-example/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/async/scalatra-atmosphere-example/sbt -------------------------------------------------------------------------------- /2.7/deployment/scalatra-heroku/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/deployment/scalatra-heroku/.gitignore -------------------------------------------------------------------------------- /2.7/deployment/scalatra-heroku/Procfile: -------------------------------------------------------------------------------- 1 | web: target/universal/stage/bin/heroku-example -Dhttp.port=$PORT 2 | -------------------------------------------------------------------------------- /2.7/deployment/scalatra-heroku/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/deployment/scalatra-heroku/README.md -------------------------------------------------------------------------------- /2.7/deployment/scalatra-heroku/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/deployment/scalatra-heroku/build.sbt -------------------------------------------------------------------------------- /2.7/deployment/scalatra-heroku/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.4.6 2 | -------------------------------------------------------------------------------- /2.7/deployment/scalatra-heroku/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/deployment/scalatra-heroku/project/plugins.sbt -------------------------------------------------------------------------------- /2.7/deployment/scalatra-heroku/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/deployment/scalatra-heroku/sbt -------------------------------------------------------------------------------- /2.7/formats/scalatra-forms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/formats/scalatra-forms/.gitignore -------------------------------------------------------------------------------- /2.7/formats/scalatra-forms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/formats/scalatra-forms/README.md -------------------------------------------------------------------------------- /2.7/formats/scalatra-forms/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/formats/scalatra-forms/build.sbt -------------------------------------------------------------------------------- /2.7/formats/scalatra-forms/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.4.6 2 | -------------------------------------------------------------------------------- /2.7/formats/scalatra-forms/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/formats/scalatra-forms/project/plugins.sbt -------------------------------------------------------------------------------- /2.7/formats/scalatra-forms/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/formats/scalatra-forms/sbt -------------------------------------------------------------------------------- /2.7/formats/scalatra-forms/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/formats/scalatra-forms/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.7/formats/scalatra-forms/src/main/resources/rebel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/formats/scalatra-forms/src/main/resources/rebel.xml -------------------------------------------------------------------------------- /2.7/formats/scalatra-forms/src/main/twirl/form.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/formats/scalatra-forms/src/main/twirl/form.scala.html -------------------------------------------------------------------------------- /2.7/formats/scalatra-forms/src/main/twirl/result.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/formats/scalatra-forms/src/main/twirl/result.scala.html -------------------------------------------------------------------------------- /2.7/formats/scalatra-forms/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/formats/scalatra-forms/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.7/formats/scalatra-forms/src/main/webapp/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/formats/scalatra-forms/src/main/webapp/js/bootstrap.js -------------------------------------------------------------------------------- /2.7/formats/scalatra-forms/src/main/webapp/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/formats/scalatra-forms/src/main/webapp/js/npm.js -------------------------------------------------------------------------------- /2.7/http/authentication-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/authentication-demo/.gitignore -------------------------------------------------------------------------------- /2.7/http/authentication-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/authentication-demo/README.md -------------------------------------------------------------------------------- /2.7/http/authentication-demo/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/authentication-demo/build.sbt -------------------------------------------------------------------------------- /2.7/http/authentication-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.4.6 2 | -------------------------------------------------------------------------------- /2.7/http/authentication-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/authentication-demo/project/plugins.sbt -------------------------------------------------------------------------------- /2.7/http/authentication-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/authentication-demo/sbt -------------------------------------------------------------------------------- /2.7/http/authentication-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/authentication-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.7/http/scalatra-gzip/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scalatra-gzip/.gitignore -------------------------------------------------------------------------------- /2.7/http/scalatra-gzip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scalatra-gzip/README.md -------------------------------------------------------------------------------- /2.7/http/scalatra-gzip/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scalatra-gzip/build.sbt -------------------------------------------------------------------------------- /2.7/http/scalatra-gzip/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.4.6 2 | -------------------------------------------------------------------------------- /2.7/http/scalatra-gzip/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scalatra-gzip/project/plugins.sbt -------------------------------------------------------------------------------- /2.7/http/scalatra-gzip/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scalatra-gzip/sbt -------------------------------------------------------------------------------- /2.7/http/scalatra-gzip/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scalatra-gzip/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.7/http/scalatra-gzip/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scalatra-gzip/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.7/http/scalatra-http-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scalatra-http-demo/.gitignore -------------------------------------------------------------------------------- /2.7/http/scalatra-http-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scalatra-http-demo/README.md -------------------------------------------------------------------------------- /2.7/http/scalatra-http-demo/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scalatra-http-demo/build.sbt -------------------------------------------------------------------------------- /2.7/http/scalatra-http-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.4.6 2 | -------------------------------------------------------------------------------- /2.7/http/scalatra-http-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scalatra-http-demo/project/plugins.sbt -------------------------------------------------------------------------------- /2.7/http/scalatra-http-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scalatra-http-demo/sbt -------------------------------------------------------------------------------- /2.7/http/scalatra-http-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scalatra-http-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.7/http/scalatra-http-demo/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scalatra-http-demo/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.7/http/scentry-auth-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scentry-auth-demo/.gitignore -------------------------------------------------------------------------------- /2.7/http/scentry-auth-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scentry-auth-demo/README.md -------------------------------------------------------------------------------- /2.7/http/scentry-auth-demo/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scentry-auth-demo/build.sbt -------------------------------------------------------------------------------- /2.7/http/scentry-auth-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.4.6 2 | -------------------------------------------------------------------------------- /2.7/http/scentry-auth-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scentry-auth-demo/project/plugins.sbt -------------------------------------------------------------------------------- /2.7/http/scentry-auth-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scentry-auth-demo/sbt -------------------------------------------------------------------------------- /2.7/http/scentry-auth-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scentry-auth-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.7/http/scentry-auth-demo/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/http/scentry-auth-demo/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.7/persistence/scalatra-mongo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/persistence/scalatra-mongo/.gitignore -------------------------------------------------------------------------------- /2.7/persistence/scalatra-mongo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/persistence/scalatra-mongo/README.md -------------------------------------------------------------------------------- /2.7/persistence/scalatra-mongo/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/persistence/scalatra-mongo/build.sbt -------------------------------------------------------------------------------- /2.7/persistence/scalatra-mongo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.4.6 2 | -------------------------------------------------------------------------------- /2.7/persistence/scalatra-mongo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/persistence/scalatra-mongo/project/plugins.sbt -------------------------------------------------------------------------------- /2.7/persistence/scalatra-mongo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/persistence/scalatra-mongo/sbt -------------------------------------------------------------------------------- /2.7/persistence/scalatra-slick/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/persistence/scalatra-slick/.gitignore -------------------------------------------------------------------------------- /2.7/persistence/scalatra-slick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/persistence/scalatra-slick/README.md -------------------------------------------------------------------------------- /2.7/persistence/scalatra-slick/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/persistence/scalatra-slick/build.sbt -------------------------------------------------------------------------------- /2.7/persistence/scalatra-slick/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.4.6 2 | -------------------------------------------------------------------------------- /2.7/persistence/scalatra-slick/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/persistence/scalatra-slick/project/plugins.sbt -------------------------------------------------------------------------------- /2.7/persistence/scalatra-slick/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/persistence/scalatra-slick/sbt -------------------------------------------------------------------------------- /2.7/persistence/scalatra-squeryl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/persistence/scalatra-squeryl/.gitignore -------------------------------------------------------------------------------- /2.7/persistence/scalatra-squeryl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/persistence/scalatra-squeryl/README.md -------------------------------------------------------------------------------- /2.7/persistence/scalatra-squeryl/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/persistence/scalatra-squeryl/build.sbt -------------------------------------------------------------------------------- /2.7/persistence/scalatra-squeryl/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.4.6 2 | -------------------------------------------------------------------------------- /2.7/persistence/scalatra-squeryl/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/persistence/scalatra-squeryl/project/plugins.sbt -------------------------------------------------------------------------------- /2.7/persistence/scalatra-squeryl/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/persistence/scalatra-squeryl/sbt -------------------------------------------------------------------------------- /2.7/swagger-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/swagger-example/.gitignore -------------------------------------------------------------------------------- /2.7/swagger-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/swagger-example/README.md -------------------------------------------------------------------------------- /2.7/swagger-example/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/swagger-example/build.sbt -------------------------------------------------------------------------------- /2.7/swagger-example/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.4.6 2 | -------------------------------------------------------------------------------- /2.7/swagger-example/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/swagger-example/project/plugins.sbt -------------------------------------------------------------------------------- /2.7/swagger-example/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/swagger-example/sbt -------------------------------------------------------------------------------- /2.7/swagger-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/swagger-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.7/swagger-example/src/main/scala/ScalatraBootstrap.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/swagger-example/src/main/scala/ScalatraBootstrap.scala -------------------------------------------------------------------------------- /2.7/swagger-example/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/swagger-example/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.7/views/scalatra-twirl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/views/scalatra-twirl/.gitignore -------------------------------------------------------------------------------- /2.7/views/scalatra-twirl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/views/scalatra-twirl/README.md -------------------------------------------------------------------------------- /2.7/views/scalatra-twirl/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/views/scalatra-twirl/build.sbt -------------------------------------------------------------------------------- /2.7/views/scalatra-twirl/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.4.6 2 | -------------------------------------------------------------------------------- /2.7/views/scalatra-twirl/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/views/scalatra-twirl/project/plugins.sbt -------------------------------------------------------------------------------- /2.7/views/scalatra-twirl/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/views/scalatra-twirl/sbt -------------------------------------------------------------------------------- /2.7/views/scalatra-twirl/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/views/scalatra-twirl/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.7/views/scalatra-twirl/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.7/views/scalatra-twirl/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.8/async/akka-examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/async/akka-examples/.gitignore -------------------------------------------------------------------------------- /2.8/async/akka-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/async/akka-examples/README.md -------------------------------------------------------------------------------- /2.8/async/akka-examples/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/async/akka-examples/build.sbt -------------------------------------------------------------------------------- /2.8/async/akka-examples/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.5.5 2 | -------------------------------------------------------------------------------- /2.8/async/akka-examples/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/async/akka-examples/project/plugins.sbt -------------------------------------------------------------------------------- /2.8/async/akka-examples/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/async/akka-examples/sbt -------------------------------------------------------------------------------- /2.8/async/akka-examples/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/async/akka-examples/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.8/async/akka-examples/src/main/resources/rebel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/async/akka-examples/src/main/resources/rebel.xml -------------------------------------------------------------------------------- /2.8/async/akka-examples/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/async/akka-examples/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.8/deployment/scalatra-heroku/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/deployment/scalatra-heroku/.gitignore -------------------------------------------------------------------------------- /2.8/deployment/scalatra-heroku/Procfile: -------------------------------------------------------------------------------- 1 | web: target/universal/stage/bin/heroku-example -Dhttp.port=$PORT 2 | -------------------------------------------------------------------------------- /2.8/deployment/scalatra-heroku/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/deployment/scalatra-heroku/README.md -------------------------------------------------------------------------------- /2.8/deployment/scalatra-heroku/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/deployment/scalatra-heroku/build.sbt -------------------------------------------------------------------------------- /2.8/deployment/scalatra-heroku/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.5.5 2 | -------------------------------------------------------------------------------- /2.8/deployment/scalatra-heroku/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/deployment/scalatra-heroku/project/plugins.sbt -------------------------------------------------------------------------------- /2.8/deployment/scalatra-heroku/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/deployment/scalatra-heroku/sbt -------------------------------------------------------------------------------- /2.8/formats/scalatra-forms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/formats/scalatra-forms/.gitignore -------------------------------------------------------------------------------- /2.8/formats/scalatra-forms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/formats/scalatra-forms/README.md -------------------------------------------------------------------------------- /2.8/formats/scalatra-forms/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/formats/scalatra-forms/build.sbt -------------------------------------------------------------------------------- /2.8/formats/scalatra-forms/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.5.5 2 | -------------------------------------------------------------------------------- /2.8/formats/scalatra-forms/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/formats/scalatra-forms/project/plugins.sbt -------------------------------------------------------------------------------- /2.8/formats/scalatra-forms/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/formats/scalatra-forms/sbt -------------------------------------------------------------------------------- /2.8/formats/scalatra-forms/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/formats/scalatra-forms/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.8/formats/scalatra-forms/src/main/resources/rebel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/formats/scalatra-forms/src/main/resources/rebel.xml -------------------------------------------------------------------------------- /2.8/formats/scalatra-forms/src/main/twirl/form.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/formats/scalatra-forms/src/main/twirl/form.scala.html -------------------------------------------------------------------------------- /2.8/formats/scalatra-forms/src/main/twirl/result.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/formats/scalatra-forms/src/main/twirl/result.scala.html -------------------------------------------------------------------------------- /2.8/formats/scalatra-forms/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/formats/scalatra-forms/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.8/formats/scalatra-forms/src/main/webapp/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/formats/scalatra-forms/src/main/webapp/js/bootstrap.js -------------------------------------------------------------------------------- /2.8/formats/scalatra-forms/src/main/webapp/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/formats/scalatra-forms/src/main/webapp/js/npm.js -------------------------------------------------------------------------------- /2.8/http/authentication-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/authentication-demo/.gitignore -------------------------------------------------------------------------------- /2.8/http/authentication-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/authentication-demo/README.md -------------------------------------------------------------------------------- /2.8/http/authentication-demo/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/authentication-demo/build.sbt -------------------------------------------------------------------------------- /2.8/http/authentication-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.5.5 2 | -------------------------------------------------------------------------------- /2.8/http/authentication-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/authentication-demo/project/plugins.sbt -------------------------------------------------------------------------------- /2.8/http/authentication-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/authentication-demo/sbt -------------------------------------------------------------------------------- /2.8/http/authentication-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/authentication-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.8/http/scalatra-gzip/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scalatra-gzip/.gitignore -------------------------------------------------------------------------------- /2.8/http/scalatra-gzip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scalatra-gzip/README.md -------------------------------------------------------------------------------- /2.8/http/scalatra-gzip/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scalatra-gzip/build.sbt -------------------------------------------------------------------------------- /2.8/http/scalatra-gzip/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.5.5 2 | -------------------------------------------------------------------------------- /2.8/http/scalatra-gzip/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scalatra-gzip/project/plugins.sbt -------------------------------------------------------------------------------- /2.8/http/scalatra-gzip/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scalatra-gzip/sbt -------------------------------------------------------------------------------- /2.8/http/scalatra-gzip/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scalatra-gzip/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.8/http/scalatra-gzip/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scalatra-gzip/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.8/http/scalatra-http-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scalatra-http-demo/.gitignore -------------------------------------------------------------------------------- /2.8/http/scalatra-http-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scalatra-http-demo/README.md -------------------------------------------------------------------------------- /2.8/http/scalatra-http-demo/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scalatra-http-demo/build.sbt -------------------------------------------------------------------------------- /2.8/http/scalatra-http-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.5.5 2 | -------------------------------------------------------------------------------- /2.8/http/scalatra-http-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scalatra-http-demo/project/plugins.sbt -------------------------------------------------------------------------------- /2.8/http/scalatra-http-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scalatra-http-demo/sbt -------------------------------------------------------------------------------- /2.8/http/scalatra-http-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scalatra-http-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.8/http/scalatra-http-demo/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scalatra-http-demo/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.8/http/scentry-auth-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scentry-auth-demo/.gitignore -------------------------------------------------------------------------------- /2.8/http/scentry-auth-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scentry-auth-demo/README.md -------------------------------------------------------------------------------- /2.8/http/scentry-auth-demo/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scentry-auth-demo/build.sbt -------------------------------------------------------------------------------- /2.8/http/scentry-auth-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.5.5 2 | -------------------------------------------------------------------------------- /2.8/http/scentry-auth-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scentry-auth-demo/project/plugins.sbt -------------------------------------------------------------------------------- /2.8/http/scentry-auth-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scentry-auth-demo/sbt -------------------------------------------------------------------------------- /2.8/http/scentry-auth-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scentry-auth-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.8/http/scentry-auth-demo/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/http/scentry-auth-demo/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.8/persistence/scalatra-mongo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/persistence/scalatra-mongo/.gitignore -------------------------------------------------------------------------------- /2.8/persistence/scalatra-mongo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/persistence/scalatra-mongo/README.md -------------------------------------------------------------------------------- /2.8/persistence/scalatra-mongo/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/persistence/scalatra-mongo/build.sbt -------------------------------------------------------------------------------- /2.8/persistence/scalatra-mongo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.5.5 2 | -------------------------------------------------------------------------------- /2.8/persistence/scalatra-mongo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/persistence/scalatra-mongo/project/plugins.sbt -------------------------------------------------------------------------------- /2.8/persistence/scalatra-mongo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/persistence/scalatra-mongo/sbt -------------------------------------------------------------------------------- /2.8/persistence/scalatra-slick/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/persistence/scalatra-slick/.gitignore -------------------------------------------------------------------------------- /2.8/persistence/scalatra-slick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/persistence/scalatra-slick/README.md -------------------------------------------------------------------------------- /2.8/persistence/scalatra-slick/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/persistence/scalatra-slick/build.sbt -------------------------------------------------------------------------------- /2.8/persistence/scalatra-slick/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.5.5 2 | -------------------------------------------------------------------------------- /2.8/persistence/scalatra-slick/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/persistence/scalatra-slick/project/plugins.sbt -------------------------------------------------------------------------------- /2.8/persistence/scalatra-slick/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/persistence/scalatra-slick/sbt -------------------------------------------------------------------------------- /2.8/persistence/scalatra-squeryl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/persistence/scalatra-squeryl/.gitignore -------------------------------------------------------------------------------- /2.8/persistence/scalatra-squeryl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/persistence/scalatra-squeryl/README.md -------------------------------------------------------------------------------- /2.8/persistence/scalatra-squeryl/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/persistence/scalatra-squeryl/build.sbt -------------------------------------------------------------------------------- /2.8/persistence/scalatra-squeryl/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.5.5 2 | -------------------------------------------------------------------------------- /2.8/persistence/scalatra-squeryl/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/persistence/scalatra-squeryl/project/plugins.sbt -------------------------------------------------------------------------------- /2.8/persistence/scalatra-squeryl/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/persistence/scalatra-squeryl/sbt -------------------------------------------------------------------------------- /2.8/swagger-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/swagger-example/.gitignore -------------------------------------------------------------------------------- /2.8/swagger-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/swagger-example/README.md -------------------------------------------------------------------------------- /2.8/swagger-example/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/swagger-example/build.sbt -------------------------------------------------------------------------------- /2.8/swagger-example/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.5.5 2 | -------------------------------------------------------------------------------- /2.8/swagger-example/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/swagger-example/project/plugins.sbt -------------------------------------------------------------------------------- /2.8/swagger-example/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/swagger-example/sbt -------------------------------------------------------------------------------- /2.8/swagger-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/swagger-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.8/swagger-example/src/main/scala/ScalatraBootstrap.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/swagger-example/src/main/scala/ScalatraBootstrap.scala -------------------------------------------------------------------------------- /2.8/swagger-example/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/swagger-example/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /2.8/views/scalatra-twirl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/views/scalatra-twirl/.gitignore -------------------------------------------------------------------------------- /2.8/views/scalatra-twirl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/views/scalatra-twirl/README.md -------------------------------------------------------------------------------- /2.8/views/scalatra-twirl/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/views/scalatra-twirl/build.sbt -------------------------------------------------------------------------------- /2.8/views/scalatra-twirl/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.5.5 2 | -------------------------------------------------------------------------------- /2.8/views/scalatra-twirl/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/views/scalatra-twirl/project/plugins.sbt -------------------------------------------------------------------------------- /2.8/views/scalatra-twirl/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/views/scalatra-twirl/sbt -------------------------------------------------------------------------------- /2.8/views/scalatra-twirl/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/views/scalatra-twirl/src/main/resources/logback.xml -------------------------------------------------------------------------------- /2.8/views/scalatra-twirl/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/2.8/views/scalatra-twirl/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /3.0/async/pekko-examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/async/pekko-examples/.gitignore -------------------------------------------------------------------------------- /3.0/async/pekko-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/async/pekko-examples/README.md -------------------------------------------------------------------------------- /3.0/async/pekko-examples/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/async/pekko-examples/build.sbt -------------------------------------------------------------------------------- /3.0/async/pekko-examples/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.9.7 2 | -------------------------------------------------------------------------------- /3.0/async/pekko-examples/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/async/pekko-examples/project/plugins.sbt -------------------------------------------------------------------------------- /3.0/async/pekko-examples/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/async/pekko-examples/sbt -------------------------------------------------------------------------------- /3.0/async/pekko-examples/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/async/pekko-examples/src/main/resources/logback.xml -------------------------------------------------------------------------------- /3.0/async/pekko-examples/src/main/resources/rebel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/async/pekko-examples/src/main/resources/rebel.xml -------------------------------------------------------------------------------- /3.0/async/pekko-examples/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/async/pekko-examples/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /3.0/formats/scalatra-forms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/formats/scalatra-forms/.gitignore -------------------------------------------------------------------------------- /3.0/formats/scalatra-forms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/formats/scalatra-forms/README.md -------------------------------------------------------------------------------- /3.0/formats/scalatra-forms/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/formats/scalatra-forms/build.sbt -------------------------------------------------------------------------------- /3.0/formats/scalatra-forms/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.9.7 2 | -------------------------------------------------------------------------------- /3.0/formats/scalatra-forms/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/formats/scalatra-forms/project/plugins.sbt -------------------------------------------------------------------------------- /3.0/formats/scalatra-forms/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/formats/scalatra-forms/sbt -------------------------------------------------------------------------------- /3.0/formats/scalatra-forms/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/formats/scalatra-forms/src/main/resources/logback.xml -------------------------------------------------------------------------------- /3.0/formats/scalatra-forms/src/main/resources/rebel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/formats/scalatra-forms/src/main/resources/rebel.xml -------------------------------------------------------------------------------- /3.0/formats/scalatra-forms/src/main/twirl/form.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/formats/scalatra-forms/src/main/twirl/form.scala.html -------------------------------------------------------------------------------- /3.0/formats/scalatra-forms/src/main/twirl/result.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/formats/scalatra-forms/src/main/twirl/result.scala.html -------------------------------------------------------------------------------- /3.0/formats/scalatra-forms/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/formats/scalatra-forms/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /3.0/formats/scalatra-forms/src/main/webapp/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/formats/scalatra-forms/src/main/webapp/js/bootstrap.js -------------------------------------------------------------------------------- /3.0/formats/scalatra-forms/src/main/webapp/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/formats/scalatra-forms/src/main/webapp/js/npm.js -------------------------------------------------------------------------------- /3.0/http/authentication-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/authentication-demo/.gitignore -------------------------------------------------------------------------------- /3.0/http/authentication-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/authentication-demo/README.md -------------------------------------------------------------------------------- /3.0/http/authentication-demo/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/authentication-demo/build.sbt -------------------------------------------------------------------------------- /3.0/http/authentication-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.9.7 2 | -------------------------------------------------------------------------------- /3.0/http/authentication-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/authentication-demo/project/plugins.sbt -------------------------------------------------------------------------------- /3.0/http/authentication-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/authentication-demo/sbt -------------------------------------------------------------------------------- /3.0/http/authentication-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/authentication-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /3.0/http/scalatra-gzip/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scalatra-gzip/.gitignore -------------------------------------------------------------------------------- /3.0/http/scalatra-gzip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scalatra-gzip/README.md -------------------------------------------------------------------------------- /3.0/http/scalatra-gzip/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scalatra-gzip/build.sbt -------------------------------------------------------------------------------- /3.0/http/scalatra-gzip/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.9.7 2 | -------------------------------------------------------------------------------- /3.0/http/scalatra-gzip/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scalatra-gzip/project/plugins.sbt -------------------------------------------------------------------------------- /3.0/http/scalatra-gzip/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scalatra-gzip/sbt -------------------------------------------------------------------------------- /3.0/http/scalatra-gzip/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scalatra-gzip/src/main/resources/logback.xml -------------------------------------------------------------------------------- /3.0/http/scalatra-gzip/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scalatra-gzip/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /3.0/http/scalatra-http-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scalatra-http-demo/.gitignore -------------------------------------------------------------------------------- /3.0/http/scalatra-http-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scalatra-http-demo/README.md -------------------------------------------------------------------------------- /3.0/http/scalatra-http-demo/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scalatra-http-demo/build.sbt -------------------------------------------------------------------------------- /3.0/http/scalatra-http-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.9.7 2 | -------------------------------------------------------------------------------- /3.0/http/scalatra-http-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scalatra-http-demo/project/plugins.sbt -------------------------------------------------------------------------------- /3.0/http/scalatra-http-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scalatra-http-demo/sbt -------------------------------------------------------------------------------- /3.0/http/scalatra-http-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scalatra-http-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /3.0/http/scalatra-http-demo/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scalatra-http-demo/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /3.0/http/scentry-auth-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scentry-auth-demo/.gitignore -------------------------------------------------------------------------------- /3.0/http/scentry-auth-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scentry-auth-demo/README.md -------------------------------------------------------------------------------- /3.0/http/scentry-auth-demo/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scentry-auth-demo/build.sbt -------------------------------------------------------------------------------- /3.0/http/scentry-auth-demo/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.9.7 2 | -------------------------------------------------------------------------------- /3.0/http/scentry-auth-demo/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scentry-auth-demo/project/plugins.sbt -------------------------------------------------------------------------------- /3.0/http/scentry-auth-demo/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scentry-auth-demo/sbt -------------------------------------------------------------------------------- /3.0/http/scentry-auth-demo/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scentry-auth-demo/src/main/resources/logback.xml -------------------------------------------------------------------------------- /3.0/http/scentry-auth-demo/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/http/scentry-auth-demo/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /3.0/persistence/scalatra-slick/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/persistence/scalatra-slick/.gitignore -------------------------------------------------------------------------------- /3.0/persistence/scalatra-slick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/persistence/scalatra-slick/README.md -------------------------------------------------------------------------------- /3.0/persistence/scalatra-slick/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/persistence/scalatra-slick/build.sbt -------------------------------------------------------------------------------- /3.0/persistence/scalatra-slick/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.9.7 2 | -------------------------------------------------------------------------------- /3.0/persistence/scalatra-slick/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/persistence/scalatra-slick/project/plugins.sbt -------------------------------------------------------------------------------- /3.0/persistence/scalatra-slick/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/persistence/scalatra-slick/sbt -------------------------------------------------------------------------------- /3.0/persistence/scalatra-squeryl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/persistence/scalatra-squeryl/.gitignore -------------------------------------------------------------------------------- /3.0/persistence/scalatra-squeryl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/persistence/scalatra-squeryl/README.md -------------------------------------------------------------------------------- /3.0/persistence/scalatra-squeryl/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/persistence/scalatra-squeryl/build.sbt -------------------------------------------------------------------------------- /3.0/persistence/scalatra-squeryl/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.9.7 2 | -------------------------------------------------------------------------------- /3.0/persistence/scalatra-squeryl/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/persistence/scalatra-squeryl/project/plugins.sbt -------------------------------------------------------------------------------- /3.0/persistence/scalatra-squeryl/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/persistence/scalatra-squeryl/sbt -------------------------------------------------------------------------------- /3.0/swagger-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/swagger-example/.gitignore -------------------------------------------------------------------------------- /3.0/swagger-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/swagger-example/README.md -------------------------------------------------------------------------------- /3.0/swagger-example/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/swagger-example/build.sbt -------------------------------------------------------------------------------- /3.0/swagger-example/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.9.7 2 | -------------------------------------------------------------------------------- /3.0/swagger-example/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/swagger-example/project/plugins.sbt -------------------------------------------------------------------------------- /3.0/swagger-example/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/swagger-example/sbt -------------------------------------------------------------------------------- /3.0/swagger-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/swagger-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /3.0/swagger-example/src/main/scala/ScalatraBootstrap.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/swagger-example/src/main/scala/ScalatraBootstrap.scala -------------------------------------------------------------------------------- /3.0/swagger-example/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/swagger-example/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /3.0/views/scalatra-twirl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/views/scalatra-twirl/.gitignore -------------------------------------------------------------------------------- /3.0/views/scalatra-twirl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/views/scalatra-twirl/README.md -------------------------------------------------------------------------------- /3.0/views/scalatra-twirl/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/views/scalatra-twirl/build.sbt -------------------------------------------------------------------------------- /3.0/views/scalatra-twirl/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.9.7 2 | -------------------------------------------------------------------------------- /3.0/views/scalatra-twirl/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/views/scalatra-twirl/project/plugins.sbt -------------------------------------------------------------------------------- /3.0/views/scalatra-twirl/sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/views/scalatra-twirl/sbt -------------------------------------------------------------------------------- /3.0/views/scalatra-twirl/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/views/scalatra-twirl/src/main/resources/logback.xml -------------------------------------------------------------------------------- /3.0/views/scalatra-twirl/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/3.0/views/scalatra-twirl/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalatra/scalatra-website-examples/HEAD/README.md --------------------------------------------------------------------------------