Steve Hamblett
Steve Hamblett
The docs say unzip the revogateway folder into /assets, this should be /assets/snippets
From this forum thread :- http://modxcms.com/forums/index.php/topic,58812.msg345124.html#msg345124 The parent actegories function needs looking at, and probably needs to be removed.
To allow authentication of sites that use password protected apache base auth Provisoner needs to be modified to send the correct auth headers :- function curl_init(){ $this->_curlSession = curl_init(); curl_setopt($this->_curlSession,...
The unit test suite needs to be updated to remove the use of mock brokers, either we fully mock this using Mockito or maybe we use a containerised solution on...
Currently the decoder restricts map keys to be of integer or string type by specifically checking for these, this should be looked at, CBOR allows more than this, especially negative...
Review the support for bignums in the package, at the moment these are supported only through tags
There are a a few TODO comments building up across the code base, see below, these need to be either fixed or removed if no longer needed. Found 17 TODO...
As title,research on this has been done on issue 9
Lines 617 and 618 of the main wayfinder class(wayfinder.class.php) are inefficently getting a chunk twice, from my cachegrind outputs this can seriously affect Wayfinders performance, the lines :- if ($this->modx->getChunk($tpl)...
The MqttClientConnectionStatus class should be updated to add the received conn ack message from the broker, this will make its contents visible to users that need it. The mqtt5_client already...