Maurice Makaay
Maurice Makaay
Because the python3 cryptography module wasn't available in a ready-to-go package, it needed to be compiled while building the docker image. That compile missed some requirements. I was able to...
To make it possible to use configuration packages more easily, it would be good if the presets were moved to their own platform. Then the default light behavior could be...
I currently have disco mode for the main LEDs and a separate `front_panel.update_leds` call for the front panel LEDs, but possibly the use of `component.update` is more standard? If it...
I currently make use of the RTC state store to restore state. This method works, but is not very clean code-wise, because I need to redefine a struct in my...
The code performs a read operation, which is incorrectly documented as a write.
This change adds support for running the user portal behind a proxy server. In my case, I use an nginx frontend proxy server for both TLS encryption and HA purposes...
When defining a client host `0.0.0.0` for a CoA radius Server, then a KeyError will occur when handling a CoA packet. ``` File ".../pyrad/server.py", line 250, in _HandleCoaPacket pkt.secret =...
When defining a client host `0.0.0.0` for a CoA radius Server, then a KeyError will occur when handling a CoA packet. File ".../pyrad/server.py", line 250, in _HandleCoaPacket pkt.secret = self.hosts[pkt.source[0]].secret...
When generating SOAP messages from a WSDL, the `Envelope` for input and output defines only a `Body` and no `Header`. Envelope specification: https://www.w3.org/TR/2000/NOTE-SOAP-20000508/#_Toc478383494 > A SOAP message is an XML...