Francois Green

Results 31 issues of Francois Green

If one defines a partial path on the controller, the default route ends with a trailing slash: ``` Ceylon route("/users") controller class UserController { route("") //and route("/") both map to...

request for comments

Every example under [vertx-examples/web-examples/src/main/java/io/vertx/example/web/templating/](https://github.com/vert-x3/vertx-examples/tree/master/web-examples/src/main/java/io/vertx/example/web/templating) has the same missing closing quotes error in the link in the comment. This throws off syntax highlighting for the rest of the file. ```Java /**...

This is a major go to in [Java](https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/concurrent/ConcurrentHashMap.html) and it would be nice to have something similar here. It's safe to assume this would be for the distant future after...

enhancement

After multiple missteps figuring out how to read a form, I'm wondering if the RouterRequest function names couldn't be a bit more straight forward? Maybe this could be achieved by...

Both versions give duplicate results: ```swift Select.distinct(from: tbl1).join(tbl2).on(joinColumn2 == joinColumn1).where(whereClause) Select(from: tbl1).join(tbl2).on(joinColumn2 == joinColumn1).where(whereClause) ```

As it stands now, one cannot set the schema when creating a Vapor project. It appears that this is achieved by setting a "search path" with the options parameter (I...

Database tables are automatically placed in the default `public` [schema](https://www.postgresql.org/docs/current/static/ddl-schemas.html) during preparation. This could be a problem if one doesn't control the database. ```json { "host": "127.0.0.1", "user": "postgres", "password":...

I have a modular (JPMS) Maven project that's throwing this exception after adding `module-info.java`: ``` com.mitchellbosecke.pebble.error.LoaderException: Could not find template "templates/index.html" (?:?) ``` There might be need for a fallback...

Records look like a good fit for `@BeanParam` support: ```java record PersonForm(@FormParam("name") String name, @FormParam("age") int age) {} //... @POST @Produces(MediaType.TEXT_HTML) public Response post(@BeanParam PersonForm form) { //... } ```

Regex works fine for most tasks, but locked my machine when finding matches in a 50MB string. Is there a way around this? I was trying to use it in...