Leon Miller-Out
Leon Miller-Out
Hi, Steven! I've been trying to use "Then show me the page" to help debug my tests. It should be an invaluable debugging tool. However, it seems to behave really...
Support for jQuery 1.4+ is not good. This is a problem with env.js, but is likely to come up when people are using capybara-envjs, so I thought it should be...
I'm currently using v4.2.0 via a Github URL in my package.json, because v4.2.0 is not yet on NPM. I'd love to avoid having to pull this package from Github. Any...
Thanks for the great tool! The passive copy at the bottom of my page doesn't update when `url` changes or when `reloadPage` is set. The active one works fine. I...
This code works fine in Lucee, but the linter can't parse it. foo.cfc: ```coldfusion-cfc component { public struct function foo () localmode='modern' { if (['ach', 'wire'].find(form.payment_method)) { param name="form.confirmation_number" type="string";...
File: ``` ``` Result: ``` java.lang.NullPointerException at com.cflint.tools.CFMLTagInfo.isAssignmentAttribute(CFMLTagInfo.java:61) at com.cflint.tools.CFMLTagInfo.isExpressionAttribute(CFMLTagInfo.java:96) at com.cflint.tools.CFMLTagInfo.isExpressionAttribute(CFMLTagInfo.java:81) at com.cflint.CFLint.unpackTagExpressions(CFLint.java:681) at com.cflint.CFLint.process(CFLint.java:624) at com.cflint.CFLint.processStack(CFLint.java:399) at com.cflint.CFLint.process(CFLint.java:342) at com.cflint.CFLint.scan(CFLint.java:295) at com.cflint.CFLint.scan(CFLint.java:206) at com.cflint.api.CFLintAPI.scan(CFLintAPI.java:65) at com.cflint.cli.CFLintCLI.execute(CFLintCLI.java:371) at com.cflint.cli.CFLintCLI.main(CFLintCLI.java:339)...
This crashes with an NPE in version 1.5.0: ``` foo = 'c'; if (!(['a','b'].findnocase(foo))) { WriteOutput('miss'); } ``` Workaround: use `not` instead of `!` Stack trace: ``` com.cflint.exception.CFLintScanException: com.cflint.exception.CFLintScanException: java.lang.NullPointerException...
In my Dockerfile, I have, among other things: ``` FROM lucee/lucee:5.3.7.47-nginx-tomcat9.0-jdk8-openjdk ENV LUCEE_EXTENSIONS="99A4EF8D-F2FD-40C8-8FB8C2E67A4EEEB6;name=mssql_jdbc;version=7.2.2.jre8,66E312DD-D083-27C0-64189D16753FD6F0;name=pdf;version=1.0.0.94-SNAPSHOT" ``` When I start my container for the first time, I find that either one or both...
The README says: > Show a static page instead of existing dynamic pages such as the home page, products pages, and taxon pages. However, the code in `Spree::StaticPage.matches?` appears to...