Paolo Patruno

Results 87 comments of Paolo Patruno

Thanks a lot for your response! At the end all is working with this code: https://github.com/r-map/rmap/blob/master/python/showdata/templates/showdata/spatialseries.html pruneCluster.PrepareLeafletMarker = function(leafletMarker, data) { if (leafletMarker.getPopup()) { leafletMarker.setPopupContent(setpopup(data.feature)); } else { //leafletMarker.bindPopup(data.name); leafletMarker.bindPopup(setpopup(data.feature));...

It works with: ``` class ImageForm(forms.ModelForm): #geom = PointField() class Meta: model = GeorefencedImage fields = ('geom','image','comment') widgets = {'geom': LeafletWidget()} ``` as suggested for new django versions, but the...

The problem there is with forms.Form too, so is not possible to use simple forms too.

Any news ? There is a working example ? I am using @maovidal example but it do not work. On mosquitto broker I get: ``` OpenSSL Error[0]: error:14094417:SSL routines:ssl3_read_bytes:sslv3 alert...

setting TLS version: ``` context = SSLPSKContext(ssl.PROTOCOL_TLSv1_2) ``` it works!

references about use of TLSv1_2 for PSK in mosquitto: https://github.com/eclipse/mosquitto/commit/ea371564e7bc6e4402ff2a80b768b649644b18f2 https://www.eclipse.org/lists/mosquitto-dev/msg02722.html

same behaviour with mosquitto-2.1.0 in devel branch

I have checked with mosquitto-2.1.0 in devel branch updated at today: same behaviour! There is something can I do to help find a solution ? There are other issue open...

Same behaviour with mosquitto-2.1.0 in devel branch updated to today. After two years any news about it?