Juan Luis Rodríguez Ponce
Juan Luis Rodríguez Ponce
Does this work too with other storage providers? Or only the local one?
In GN 3.x it's still a problem. In GN 4 the autocomplete falls back to English. How to reproduce. 1. Switch the application language to other different of French or...
Added a PR with the change to the proxy library https://github.com/mitre/HTTP-Proxy-Servlet/pull/243.
For me I needed to restart the Docker service (in an Ubuntu host). Before the service wasn't listening in the network interface: ``` systemctl status docker.service ● docker.service - Docker...
This seems to be the same problem than #4858.
I've tested @cmangeat test record (https://github.com/geonetwork/core-geonetwork/pull/6843) with this code and it reports the wrong date, but the metadata it's indexed.
We could change the `DateUtil` class to use `uuuu` instead of `yyyy` here https://github.com/geonetwork/core-geonetwork/blob/461ce04e222a4336d80750b1a12939fd5c64ee56/common/src/main/java/org/fao/geonet/utils/DateUtil.java#L84 by ```java .appendPattern("uuuu[[-]M][[-]d['T'H[:m[:s[.SSSSSSSSS][.SSSSSSSS][.SSSSSSS][.SSSSSS][.SSSSS][.SSSS][.SSS][.SS][.S]][XXX]]]]") ``` That way negative dates would be accepted by the parser. So, the...
I don't know if it's related to this PR, but building the projects shows these warning related to `log4j-slf4j18-impl` library: ``` [INFO] Scanning for projects... [WARNING] [WARNING] Some problems were...
Addressing the warning showed in the previous comment in https://github.com/geonetwork/core-geonetwork/pull/6536.
Yes, that's exactly what is needed, although you don't have to call `close()` on the response output stream: the servlet container will call it.