-
Change was introduced here #407 in `1.0.0.CR6`
See #431
See https://groups.google.com/forum/#!topic/jooby-project/HRJLfmUqzWs
@kshep92 I'm sorry but will have to revert the change I did around empt…
-
About the jdbc module [http://jooby.org/doc/jdbc/](url) it's possible to setup the database configuration (connection string, database user, database password, etc) programmatically without setting in…
-
I'd like to fork the project to be able to add namespace to helpers and do something like :
``` hbs
{{{nav.render 'main' }}
```
What'd be the steps to implement this feature ? Can you point me to …
-
Not sure that this is a bug - but when passing a Map in the context and iterating with {{#each}}, I get the following exception:
om.github.jknack.handlebars.HandlebarsException: /resources/app/templa…
-
I tried to create API using Jooby, we have non-functional requirement to have Swagger or Raml for our APIs. For some reason Swagger and Raml are not working and no UI is displayed and it does not give…
-
Nullability across the framework is expressed using the `java.util.Optional` class. This is/was a right choice and let users to quickly identify where an optional value might occurs.
Suppose you have…
-
It appears that when trying to iterate over a Map with non-string keys (e.g. Map) we get an ClassCastException
java.lang.ClassCastException: com.xyz.ObjectGroup cannot be cast to java.lang.String
…
-
`
Handlebars.registerHelper("chunk",function(arr,size,options){
```
var t = JSON.stringify(arr);
var temp = JSON.parse(t);
var newArr=[]
while(temp.length) {
newArr.push(temp.splice(0,size));
…
-
I apologize ahead of time if I'm abusing Partials and should be using another feature.
I use Partials for two use cases:
1) Dynamic templating:
Example:
```
{{#ifeq @root.metadata.eventName "SomeEv…
-
A feature request regarding flash messages pattern
something as simple as https://github.com/decebals/pippo/blob/0d2565893b283fd56e1513fe5796f487356d5978/pippo-core/src/main/java/ro/pippo/core/Flash.…