├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── chinook-core ├── build.gradle └── src │ ├── docs │ ├── background.gif │ └── stylesheet.css │ └── main │ ├── frege │ └── chinook │ │ ├── Chinook.fr │ │ ├── Core.fr │ │ ├── Router.fr │ │ ├── Spark.fr │ │ ├── Utils.fr │ │ └── util │ │ └── ContentType.fr │ └── java │ └── chinook │ └── into │ └── Rest.java ├── chinook-docs ├── build.gradle └── src │ └── docs │ └── asciidoc │ ├── chapter │ ├── development.ad │ ├── getting.ad │ ├── http.ad │ ├── http_config.ad │ ├── http_intro.ad │ ├── http_req_res.ad │ ├── http_templating.ad │ └── versions.adoc │ └── index.ad ├── chinook-sample ├── build.gradle └── src │ └── main │ ├── frege │ └── chinook │ │ ├── App.fr │ │ ├── Data.fr │ │ └── Handlers.fr │ └── resources │ ├── chinook │ ├── form.gtpl │ └── sender.gtpl │ └── public │ └── css │ └── style.css ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/README.md -------------------------------------------------------------------------------- /chinook-core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-core/build.gradle -------------------------------------------------------------------------------- /chinook-core/src/docs/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-core/src/docs/background.gif -------------------------------------------------------------------------------- /chinook-core/src/docs/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-core/src/docs/stylesheet.css -------------------------------------------------------------------------------- /chinook-core/src/main/frege/chinook/Chinook.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-core/src/main/frege/chinook/Chinook.fr -------------------------------------------------------------------------------- /chinook-core/src/main/frege/chinook/Core.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-core/src/main/frege/chinook/Core.fr -------------------------------------------------------------------------------- /chinook-core/src/main/frege/chinook/Router.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-core/src/main/frege/chinook/Router.fr -------------------------------------------------------------------------------- /chinook-core/src/main/frege/chinook/Spark.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-core/src/main/frege/chinook/Spark.fr -------------------------------------------------------------------------------- /chinook-core/src/main/frege/chinook/Utils.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-core/src/main/frege/chinook/Utils.fr -------------------------------------------------------------------------------- /chinook-core/src/main/frege/chinook/util/ContentType.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-core/src/main/frege/chinook/util/ContentType.fr -------------------------------------------------------------------------------- /chinook-core/src/main/java/chinook/into/Rest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-core/src/main/java/chinook/into/Rest.java -------------------------------------------------------------------------------- /chinook-docs/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-docs/build.gradle -------------------------------------------------------------------------------- /chinook-docs/src/docs/asciidoc/chapter/development.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-docs/src/docs/asciidoc/chapter/development.ad -------------------------------------------------------------------------------- /chinook-docs/src/docs/asciidoc/chapter/getting.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-docs/src/docs/asciidoc/chapter/getting.ad -------------------------------------------------------------------------------- /chinook-docs/src/docs/asciidoc/chapter/http.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-docs/src/docs/asciidoc/chapter/http.ad -------------------------------------------------------------------------------- /chinook-docs/src/docs/asciidoc/chapter/http_config.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-docs/src/docs/asciidoc/chapter/http_config.ad -------------------------------------------------------------------------------- /chinook-docs/src/docs/asciidoc/chapter/http_intro.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-docs/src/docs/asciidoc/chapter/http_intro.ad -------------------------------------------------------------------------------- /chinook-docs/src/docs/asciidoc/chapter/http_req_res.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-docs/src/docs/asciidoc/chapter/http_req_res.ad -------------------------------------------------------------------------------- /chinook-docs/src/docs/asciidoc/chapter/http_templating.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-docs/src/docs/asciidoc/chapter/http_templating.ad -------------------------------------------------------------------------------- /chinook-docs/src/docs/asciidoc/chapter/versions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-docs/src/docs/asciidoc/chapter/versions.adoc -------------------------------------------------------------------------------- /chinook-docs/src/docs/asciidoc/index.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-docs/src/docs/asciidoc/index.ad -------------------------------------------------------------------------------- /chinook-sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-sample/build.gradle -------------------------------------------------------------------------------- /chinook-sample/src/main/frege/chinook/App.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-sample/src/main/frege/chinook/App.fr -------------------------------------------------------------------------------- /chinook-sample/src/main/frege/chinook/Data.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-sample/src/main/frege/chinook/Data.fr -------------------------------------------------------------------------------- /chinook-sample/src/main/frege/chinook/Handlers.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-sample/src/main/frege/chinook/Handlers.fr -------------------------------------------------------------------------------- /chinook-sample/src/main/resources/chinook/form.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-sample/src/main/resources/chinook/form.gtpl -------------------------------------------------------------------------------- /chinook-sample/src/main/resources/chinook/sender.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-sample/src/main/resources/chinook/sender.gtpl -------------------------------------------------------------------------------- /chinook-sample/src/main/resources/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/chinook-sample/src/main/resources/public/css/style.css -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fregelab/chinook/HEAD/settings.gradle --------------------------------------------------------------------------------