pvgoran
pvgoran
Most `TemplateSource` implementations inherit `equals()` from `AbstractTemplateSource` which only compares `filename()`. This means that two equally named `TemplateSource`'s, even loaded from different media (ClassPath, filesystem, Internet, whatever), will be considered...
I'm trying to upgrade from 1.3.0 to 4.1.2. I used MissingValueResolver which is now removed; HelperMissing is suggested as a replacement, but it covers much more cases than MissingValueResolver, and...
It's like #352, but this time about the release archive. Specifically, I downloaded the archive from https://github.com/jknack/handlebars.java/archive/v4.1.2.tar.gz but failed to build it (by invoking `mvn package`) because of the missing...
The cache system for templates, as it's implemented now, is subtly broken with certain use cases, when a cache object is shared between different `Handlebars` objects. Specifically, a cache can...
When a long-running HTTP request made via AsyncHttpClientMonixBackend is cancelled via a call to `Cancelable.cancel()`, something is printing the stack trace with `java.lang.InterruptedException` to the console. The code (Scala 3):...
I needed the ability to prevent the popup from being closed under certain conditions, for example, to allow the user to double-check and either confirm or cancel close. (This ability...
Operations generated by expanding $CRUDL definitions gain Operation IDs based on entity name (which is the same as payload key name): `createEntity`, `retrieveEntity`, `updateEntity`, `deleteEntity`, `listEntities`.
The use of `-` as a placeholder character that replaces non-word characters of the path to produce an Operation ID seems to be a poor choice. The specification says: ```...
In Gentoo, NetBeans is compiled from sources, so its modules (at least some of them, including org.netbeans.modules.extexecution.base) get `OpenIDE-Module-Implementation-Version` values (in `MANIFEST.MF`) that depend on the build time, like this:...
I'm facing a tricky issue when I try to run multiple parallel queries using ScalikeJDBC's Query DSL. In essence, the code in `SQLSyntaxSupportFeature.columns` deadlocks against my `DB.autoCommit()` calls, and everything...