Tom Makin
Tom Makin
The intermediate `div` between the `dl` and `dt` raises WCAG validation warnings on the Deque validator https://dequeuniversity.com/rules/axe/3.0/dlitem https://www.w3.org/TR/WCAG20-TECHS/H40.html I'm curious to know whether this intermediate element is considered a spec...
@dashouse Many thanks, that reference clears things up. Looks like axe are on the case already: https://github.com/dequelabs/axe-core/issues/262
I have use case where this would very helpful. I have long running background processing tasks which are triggered via a storage queue. In order to prevent spikes in the...
For anyone else hitting this when deploying via config map here is a hack that allows multiple public keys to be supplied. ``` apiVersion: v1 kind: ConfigMap metadata: name: sftp-public-keys...
@marios-tsiliakos Would you be able to PR a fix or relevant documentation for this?
I ran into this today and settled on the following workaround. Step 1 : inject a setting during the test server bootstrap ```csharp public class CustomWebAppFactory : WebApplicationFactory { protected...
@clicketyclackety Sorry, this repo has not had much attention recently! But I've just merged a PR that adds support for Rhino 7, so please check that out and let me...
That's fine with me, I have no preference on which logging system is used, I'm just trying to get it to run. Is there anything I should be doing to...
Here is the stack trace when EWS fails: ``` 10-12 15:45:53.519 18705-18737/com.tmakin.ewsdemo E/AndroidRuntime: FATAL EXCEPTION: AsyncTask #2 10-12 15:45:53.519 18705-18737/com.tmakin.ewsdemo E/AndroidRuntime: java.lang.RuntimeException: An error occured while executing doInBackground() 10-12 15:45:53.519...
The log4j errors disappear if I stick this at the top of my MainActivity: ``` public class MainActivity extends AppCompatActivity { static { System.setProperty("android.org.apache.commons.logging.Log", "android.org.apache.commons.logging.impl.SimpleLog"); } ... ``` I've also...