├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── project ├── StandardLayout.scala ├── build.properties └── plugins.sbt └── src ├── main └── scala │ └── org │ └── restfulscala │ └── playcontentnegotiation │ ├── ContentNegotiation.scala │ ├── Representation.scala │ └── RespondWith.scala └── test └── scala └── org └── restfulscala └── playcontentnegotiation └── ContentNegotiationSpec.scala /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restfulscala/play-content-negotiation/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restfulscala/play-content-negotiation/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restfulscala/play-content-negotiation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restfulscala/play-content-negotiation/HEAD/README.md -------------------------------------------------------------------------------- /project/StandardLayout.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restfulscala/play-content-negotiation/HEAD/project/StandardLayout.scala -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.1.5 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restfulscala/play-content-negotiation/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /src/main/scala/org/restfulscala/playcontentnegotiation/ContentNegotiation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restfulscala/play-content-negotiation/HEAD/src/main/scala/org/restfulscala/playcontentnegotiation/ContentNegotiation.scala -------------------------------------------------------------------------------- /src/main/scala/org/restfulscala/playcontentnegotiation/Representation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restfulscala/play-content-negotiation/HEAD/src/main/scala/org/restfulscala/playcontentnegotiation/Representation.scala -------------------------------------------------------------------------------- /src/main/scala/org/restfulscala/playcontentnegotiation/RespondWith.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restfulscala/play-content-negotiation/HEAD/src/main/scala/org/restfulscala/playcontentnegotiation/RespondWith.scala -------------------------------------------------------------------------------- /src/test/scala/org/restfulscala/playcontentnegotiation/ContentNegotiationSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restfulscala/play-content-negotiation/HEAD/src/test/scala/org/restfulscala/playcontentnegotiation/ContentNegotiationSpec.scala --------------------------------------------------------------------------------