Gordan Krešić
Gordan Krešić
Tests that demonstrate #641
Possibly at first by just creating automatic/open modules and later properly define module boundaries. Service definitions (generated by `org.kohsuke.metainf-services`) would need to be **duplicated** in `module-info.java` so that both non-modularised...
This is an extension to #490 (first half of it, anyway). Over there it was proposed to to upgrade to servlet 4 spec, but nothing is said on javax ->...
Migrate to servlet 6 spec. As of 17.02.2023. only Jetty doesn't support it. Version 12 (currently in alpha) will bring support. For reference: Jetty versions: https://www.eclipse.org/jetty/download.php#version-table Tomcat verions: https://tomcat.apache.org/whichversion.html#Apache_Tomcat_Versions Undertow...
As currently implemented, `GZipResponseStream` buffers whole response and compresses it only upon closing: https://github.com/pippo-java/pippo/blob/master/pippo-core/src/main/java/ro/pippo/core/gzip/GZipResponseStream.java This may result in HUGE heap usage when streaming BIG responses, which is primary use case...
Per documentation at http://www.pippo.ro/doc/internationalization.html i18n is configured using `application.languages` setting in `conf/application.properties` and then having `messages.properties` with default language messages and one `messages_.properties` file for each **additional** language configured. However,...
Few observations: [pippo-demo-servlet](https://github.com/pippo-java/pippo-demo/tree/master/pippo-demo-servlet) demonstrates how Pippo could currently be embedded into any servlet container. Provided way works, but doesn't play well with DI concepts. It even, as far as I...
Since [`MaterialAutoComplete.loadHandlers()`](https://github.com/GwtMaterialDesign/gwt-material-addins/blob/ac9836df8f4760463379def8081d6021fe680e38/src/main/java/gwt/material/design/addins/client/autocomplete/MaterialAutoComplete.java#L234) expect handlers to be `null` to (re)register them, `null`-ify them when unregistering or they won't be re-registered (for example, after invoking [`setup(SuggestOracle)`](https://github.com/GwtMaterialDesign/gwt-material-addins/blob/ac9836df8f4760463379def8081d6021fe680e38/src/main/java/gwt/material/design/addins/client/autocomplete/MaterialAutoComplete.java#L318).
touchsplitter.js throws standard `dragstart` *non-standard* `dragstop` event every time its splitters are dragged around. Since `dragstart` is standard event, there are already support for event handlers via `MaterialWidget.addDragStartHandler`. However, `dragstop`...