Stefan Ollinger
Stefan Ollinger
It allows to modularize a web application and bundle a set of resources. Here is an (artificial) use case: http://maven.apache.org/plugins/maven-war-plugin/overlays.html. I never needed to use it in one of my...
What version are you using? `"org.json4s" %% "json4s-jackson" % "3.2.10"` works for me: ``` scala object json4s_test extends App { import org.json4s.Extraction import org.json4s.DefaultFormats import org.json4s.jackson.JsonMethods._ implicit val formats =...
Here is an example which adds the tracknumber and title: ``` scdl --playlist-name-format "{playlist[tracknumber]:0>2} - {title}" -l URL ```
It would be really helpful to have a minimal sample project. Maybe some dummy project derived from the actual project?
What Scalatra version are you using? This has been added some time ago with https://github.com/scalatra/scalatra/commit/0745d223d8d918943da88d021a4e687798f989c2
Ah right. There needs be an additional test for FieldSerializers. I can take a look at it during the weekend maybe. But if you want, go for a patch.
Here is an approach which checks if a FieldSerializer is available: - https://github.com/dozed/scalatra/blob/50d4d73cb48287bf20d896124ef8267920749dde/json/src/main/scala/org/scalatra/json/JValueResult.scala#L68-L76 - https://github.com/dozed/scalatra/blob/50d4d73cb48287bf20d896124ef8267920749dde/json/src/test/scala/org/scalatra/json/JValueResultSpec.scala#L102-L105
Yes, this looks like it is caused by the removal of the AtmosphereClient from the HttpSession when a websocket is closed. I am currently not working on it, since I...
@wkozaczuk are you still interested? I think I could provide you a test case.
Hey, I created a test case which reproduces the bug in 2.3.x. I didnt have time to think about a solution yet. If you feel like it, go for a...