Esko Luontola
Esko Luontola
Given the following project files: ```clj ; parent/project.clj (defproject parent-project "1.0.0" :managed-dependencies [[org.apache.httpcomponents/httpclient "4.5.11"]] :exclusions [commons-logging]) ``` ```clj ; child/project.clj (defproject child-project "1.0.0" :dependencies [[org.apache.httpcomponents/httpclient]] :plugins [[lein-parent "0.3.7"]] :parent-project {:path...
In the following code, the top-level function calls inside `foo2` have false warnings about incorrect arity, but the identical calls inside `foo1` are fine. Invalidating caches doesn't help. ```clj (ns...
### Pitch When website verification fails for a link in your profile, show in the profile settings next to that link that what was the reason for not being able...
### Steps to reproduce the problem 1. Run a PHP site on Apache HTTP Server 2. Add `Options MultiViews` to your `.htaccess` file, but don't add `MultiviewsMatch Any` and instead...
*This seems related to issues #2786 and #2106, which were fixed in 1.13.0-eap1, but this bug still happens on 1.13.0-eap1* Given Parinfer is enabled and we have the following code....
This is similar to https://github.com/weavejester/hiccup/issues/205 but less common. Consider the following code: ```clj (ns example (:require [clojure.walk :as walk] [hiccup2.core :as h])) (walk/macroexpand-all `(h/html [:p (identity "") "foo"] (identity (h/html...
IDEA shows only the first run on tests in a test class, but not the others. Should probably have a look at how `org.junit.jupiter.api.DynamicTest` and `org.junit.jupiter.api.DynamicContainer` do dynamic test registration,...
**Describe the bug** When calling `org.opensearch.client.opensearch.OpenSearchClient#get` and the document doesn't exist, if the client uses `org.opensearch.client.transport.rest_client.RestClientTransport` then the method returns a response object where `org.opensearch.client.opensearch.core.get.GetResult#found` returns `false`. But if the...
When the server returns a `HX-Redirect` header, the `htmx:afterRequest` event for that request will not tell whether the request was successful or failed. The `event.detail.successful` and `event.detail.failed` are both `undefined`....
Input: ```clj [:p {:style {:color (if true "red" "blue")}} "hello"] ``` Expected output: ```html hello ``` Actual output: ```html hello ``` Hiccup version: 2.0.0-RC3