Emanuele Di Giacomo
Emanuele Di Giacomo
The field `Service.modified` is updated whenever any update statement occurs and it's displayed in the home page as the latest update. This information is useful but incomplete, because the field...
See https://www.django-rest-framework.org/api-guide/schemas/#generating-a-static-schema-with-the-generateschema-management-command to generate the schema and https://redocly.com/docs/redoc/deployment/cli/ or https://github.com/yousan/swagger-yaml-to-html to generate the HTML file.
E.g. with https://eonasdan.github.io/bootstrap-datetimepicker/
Notifications can be implemented in third-party applications using Django signal `post_save` and previous state (currently `Service._status` only). `django-statusboard` could provide custom signals for a set of events, e.g.: - Service...
Configurable permission system, e.g. ```python STATUSBOARD_PERMISSION = "statusboard.permissions.LoginRequiredOrReadOnly" ``` Useful links: - http://www.django-rest-framework.org/api-guide/permissions/#custom-permissions - https://docs.djangoproject.com/en/1.10/topics/auth/default/#django.contrib.auth.mixins.AccessMixin
2 possible implementation: ## Channel Channel `mqtt.pub` with the following keys: - topic - payload - qos - host? - port? `asgimqtt` should read the messages from this channel and...
Con riferimento a https://github.com/ARPA-SIMC/dballe/issues/200#issuecomment-562511945, io mi sono dell'opinione che una query fatta con un missing value esplicito (e.g. `l1=-`) dovrebbe voler dire "dammi tutti i record che hanno `l1` missing"...
Remove autotools files after the first successful release of a RPM package with Meson (see #269).
Come da discussione del 5 novembre 2019, si deve definire un formato BUFR generico come formato di interscambio, che segua il più possibile le specifiche BUFR. Tra le cose da...
When `_GLIBCXX_ASSERTIONS` is set (see https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_macros.html), Magics sometimes throws a runtime error: ``` /usr/include/c++/12/bits/stl_vector.h:1123: std::vector::reference std::vector::operator[](size_type) [with _Tp = double; _Alloc = std::allocator; reference = double&; size_type = long unsigned...