Stan Janssen

Results 44 comments of Stan Janssen

Is it true that on a Russian keyboard it is customary to use the same physical keys as 'c' and 'v' on a QWERTY keyboard for copy and paste, regardless...

Pressing `ctrl+C` and `ctrl+V` in Files do nothing using a dvorak keyboard; pressing `ctrl+J` and `ctrl+K` (which are in the C and V places) also does not work. After switching...

I filed issue https://github.com/elementary/files/issues/815 against Files.

Correct, I don't have support for those properties yet. Do you have a clear picture of what is needed to support these? Otherwise I'll look into it myself later. Thanks.

All right, it looks to me like these properties are needed for the TELEMETRY_STATUS report types. The following elements can be provided in for each interval: - `oadrOnline` (boolean, required)...

I implemented a first version of the TELEMETRY_STATUS reporting functionality in a [separate branch](https://github.com/OpenLEADR/openleadr-python/tree/add-status-reports). The interface is as described above. It does come with a small change to how the...

The VEN handler must look like this: ```python def status_callback_full(): return True, False, {'capacity': {'min': 0, 'max': 10, 'current': 5, 'normal': 8}} ``` And the VTN handler must accept a...

All right, I will try to polish this up a bit, make sure the documentation is clear, and then we can move this into the next version. (I actually believe...

You got a TimeoutError, which seems to be related to a communication problem between the VEN and the VTN inside the Docker Container. Seems like you solved that problem; I...

`HISTORY_USAGE` reports are not yet supported in OpenLEADR, as mentioned [in the documentation](https://openleadr.org/docs/reporting.html#historic-data-reports) for historic reports. Only the reports with `TELEMETRY_USAGE` are propagated to your `on_register_report` handlers. The reason for...