nox
nox
The [documentation](https://github.com/twigphp/Twig/blob/b4d6723715da57667cca851051eba3786714290d/doc/templates.rst#expressions) states the following: > The operator precedence is as follows, with the lowest-precedence operators listed first: ?: (ternary operator), b-and, b-xor, b-or, or, and, ==, !=, , ,...
Currently, only `GET` requests are allowed when the `methods` field is not specified. This does not match documented behaviour: https://github.com/motiv-labs/janus/blob/aa38d1390fac2df7a07be16377b31093fa66eb90/docs/proxy/request_http_method.md?plain=1#L3-L6 This PR makes the proxy default to accepting any method.
This PR improves the access rule middleware: - bugfix: a non-matching deny rule wrongly blocks the request when evaluated a second time - bugfix: handler function gets executed multiple times...
Some proxies require authentication. There are Maven settings to configure proxy credentials: https://maven.apache.org/settings.html#proxies ```xml ... myproxy true http proxy.somewhere.com 8080 proxyuser somepassword *.google.com|ibiblio.org ... ``` (`username` and `password`). Currently, it...
The validation for required configuration elements is too strict. E.g., all proxy settings are optional (see https://maven.apache.org/xsd/settings-1.0.0.xsd, note the `minOccurs="0"`) and some even have default values. View XSD schema part...
When changing a range by drag and drop (`dynamicRange` set to `true`, default behaviour), the `onBeforeSelect` function is not called. Thus, it is not possible to prevent selection of ranges...