Michael Born
Michael Born
I'm not 100% certain I got this right, so I'd appreciate a review. See #95.
I propose we add support for passing the point first and closure second. I think it's weird to pass the event name after the function: ```js variables.interceptorService.listen( function( interceptData ){...
## IsInThread > Determines whether the executing code is inside a cfthread or not. (This appears to be a Lucee-only method.) https://docs.lucee.org/reference/functions/isinthread.html
We're missing documentation for this little-known but extremely handy Lucee-specific method: `extensionList()`. * This method takes no arguments * This method returns a `query` object Here's a quick example of...
Name placeholders like `WHERE name = :name` are broken and do not replace at all. Example: ```sql SELECT supplier_name, city FROM suppliers WHERE supplier_id = :name ``` this formats as:...
I get a warning `"Warning: Undefined array key "order"` after running a conimex import: ``` ./bin/console -vvv conimex:import my-site-export-2022-08-08.yaml ``` I believe this is a new / more strict warning...
This PR improves testing performance by not creating a brand new Controller object each time `getMockRequestContext()` is called if `variables.controller` already exists.
This PR will allow us to test ColdBox against the latest Lucee RC or SNAPSHOT without halting the current ColdBox release. This will give us (and Lucee!) early warning against...
IMHO, the twitter support in this extension is a bit lacking. For a twitter URL to use the "nice" format, Twitter appears to require or at least suggest the following:...
The ability to disable the step counters would be super nice! i.e: ```js showStepCount: true // Show/hide the step counter buttons ```