Peter Boughton
Peter Boughton
Atom highlighting breaks when there's an underscore in an attribute, even though CF allows this. The fix is probably changing the match regex from `\\b([a-zA-Z0-9:-]+)\\b` to `\\b([a-zA-Z0-9_:-]+)\\b` (or just `\\b([\w:-]+)\\b`)....
ColdDoc falls over on CFCs with dots in their filename, but reports the incorrect component path when logging this error. e.g. for `/path/to/object.archive.cfc` the log would report `path.to.object` as not...
It would probably speed up the scanning process if qpscanner kept a note of last modified dates of files (and any relevant results), and on subsequent scans it only scans...
When dealing with a bunch of tasks with dependencies, the urgency score doesn't help me prioritise which tasks should be completed first. For example, adding a due date to a...
I just defined a couple of UDAs, added tasks that use them, and was surprised when they didn't output in any report. Checking the docs, it seems for UDAs to...
Eclipse is reporting a bunch of serialization and resource leak warnings. There are 7 instances of _"The serializable class [classname] does not declare a static final serialVersionUID field of type...
Posting "test message" works, but posting "test message!" results in: ``` {"errors":[{"message":"Could not authenticate you","code":32}]} ``` Updated to latest code from GitHub master branch and it does the same thing....
Every now and then the error below occurs and crashes Node. The specific circumstances which trigger it are unknown. ``` /opt/nodeapp/node_modules/redis-parser/lib/parser.js:560 while (this.offset < this.buffer.length) { ^ TypeError: Cannot read...
**Jetty version(s)** 9.4.x (including 9.4.43) **Java version/vendor** `OpenJDK 11, OpenJDK 8, Oracle 8 **OS type/version** Debian GNU/Linux 10 **Description** Trying to use Jetty as reverse proxy via ProxyServlet results in...
Using cfStatic on only CSS files still results in a `js.min.[hash].js` being generated.