Christian Schuster

Results 8 issues of Christian Schuster

This fixes the escaping of the Æ symbol (unicode codepoint 198) for HTML 4 and 5 by setting `HtmlEscapeSymbols.NO_NCR` to a value that cannot be confused with an actual array...

`HtmlEscape.escapeHtml5("Æ")` returns `"&AElig"`, but should return "`Æ`". Tracked this down to a [comparison in HtmlEscapeSymbols](https://github.com/unbescape/unbescape/blob/master/src/main/java/org/unbescape/html/HtmlEscapeSymbols.java#L274): Since `Æ` is the lexicographically smallest NCR for HTML 5, it is sorted to index...

This pull request makes the `-E` and `-W` options usable on CC13xx/CC26xx MCUs. These define the `0x26` bootloader command as `COMMAND_SECTOR_ERASE`, which always deletes exactly one sector (a.k.a. page) and...

This PR fixes the annotations generated by the `JavaSpring` generator when using `withXml: true`. It is related to #2417, #5078 and #5764. * If the property is not a container:...

The idea of using soft references to implement a memory-sensitive `ContextCache` already came up a while ago in #12343. It was implemented and immediately reverted for not properly closing the...

in: test
type: enhancement
status: pending-design-work

Regardless of what's specified in `maven_artifacts.bzl`, closure-compiler version v20240317 (and later builds) seem to contain protobuf-java version 3.17.0. At least that's what `META-INF/maven/com.google.protobuf/protobuf-java/pom.xml` in https://repo1.maven.org/maven2/com/google/javascript/closure-compiler/v20240317/closure-compiler-v20240317.jar says. Local builds of the...

Issue gh-10820 When using a custom authenticated principal that does not implement `Saml2AuthenticatedPrincipal`, the `Authentication` itself can now implement `Saml2AuthenticationInfo` to provide the same information. Making the authenticated principal implement...

status: duplicate
type: enhancement
in: saml2

**Expected Behavior** SAML Single Logout should work even if the principal does not implement the `Saml2AuthenticatedPrincipal` interface. **Current Behavior** The following parts of SAML Single Logout only work as expected...

type: enhancement
in: saml2
status: feedback-provided