Bauke Scholtz
Bauke Scholtz
The `SourceMap` response header https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/SourceMap is ignored when `sourceMappingURL` comment is present. Neither the [documentation](http://samaxes.github.io/minify-maven-plugin/minify-mojo.html) nor the [source code](https://github.com/samaxes/minify-maven-plugin/blob/5b5559d16704505185f3cee3115d89d584299f47/src/main/java/com/samaxes/maven/minify/plugin/ProcessJSFilesTask.java#L160) indicates that there's an option to disable writing `sourceMappingURL` comment to...
https://stackoverflow.com/q/48857301/157882 `test.xhtml` ``` ``` `level1.xhtml` ``` ``` `level2.xhtml` ``` ``` `level3.xhtml` ``` ``` Expectation is that submit button mentions as client ID `form:level1:level2:level3:button`, however instead it says `form:level1:level3:button` and causes...
During https://github.com/omnifaces/omnifaces/issues/639 it appears that the sw.js script behind PWAResourceHandler incorrectly interpreted the client being offline when the server returns an expired SSL certificate. This behavior is not correct and...
https://code.google.com/p/omnifaces/issues/detail?id=250 Something like `` but then using standard JSF ajax API and with the possibility to show via JS API instead of during onload.
New tests for https://github.com/eclipse-ee4j/mojarra/issues/5140 and https://github.com/eclipse-ee4j/mojarra/issues/4281 Associated fix is in https://github.com/eclipse-ee4j/mojarra/pull/5178
Given: ``` ... ... ... ``` When: ``` ``` Then the expectation is that the "entire" `` is executed (at least the components covered in `targets` attribute of the associated...
Just a reminder for myself. - https://github.com/eclipse-ee4j/mojarra/issues/4281 - https://github.com/eclipse-ee4j/mojarra/issues/5075
Given the following minimal models in Hibernate Reactive version associated with Quarkus platform version 2.13.3.Final: ``` @Entity public class Person { @Id @GeneratedValue(strategy = IDENTITY) private Long id; @NotNull private...
I'm currently working on a project having memory issues. It's Spring Boot based using omnifaces3-spring-boot-starter version 4.17.7 and the view scoped beans are using standard JSF `@ViewScoped`. One of the...