Bauke Scholtz
Bauke Scholtz
https://github.com/jakartaee/faces/issues/1507
Spec + TCK for #1501 Impl is here https://github.com/eclipse-ee4j/mojarra/pull/5550
Unsure how that's possible but already in 2.3 https://github.com/eclipse-ee4j/mojarra/blob/2.3/impl/src/main/java/javax/faces/application/StateManager.java#L56-L57 and 4.0 https://github.com/eclipse-ee4j/mojarra/blob/4.0/impl/src/main/java/jakarta/faces/application/StateManager.java#L55-L56 the `StateManager#STATE_SAVING_METHOD_PARAM_NAME` javadoc is wrong ``` * * If this parameter is not specified, the default value is...
https://github.com/jakartaee/faces/issues/1996
Add test for https://github.com/eclipse-ee4j/mojarra/pull/5540
https://github.com/eclipse-ee4j/mojarra/issues/5503 The `` element is used in `faces-config.xml` in 2 places: 1. [Resource contracts](https://jakarta.ee/specifications/faces/4.0/jakarta-faces-4.0#a4030): ```xml /foo.xhtml /bar.xhtml ``` 2. [Protected views](https://jakarta.ee/specifications/faces/4.0/jakarta-faces-4.0#a404): ```xml /foo.xhtml /bar.xhtml ``` Both have got nothing to...
Spec https://github.com/jakartaee/tags/issues/247 Impl https://github.com/eclipse-ee4j/wasp/pull/78
#5552
https://github.com/jakartaee/faces/issues/1940 Requires https://github.com/jakartaee/faces/pull/2022 to be merged in order to build successfully.
While using of Shoelace 2.17.1 I discovered 2 issues: ### ~1. await hide() doesn't work before a second show()~ ``` dialog.show(); // ... await dialog.hide(); dialog.show(); ``` ~The second show...