Gilbert Brault
Gilbert Brault
a method to add to the keys.py file in the SSHKey file ```python def encode(self): from cryptography.hazmat.primitives import serialization options = ",".join([f"""{k}="{v[0]}" """ for k,v in self.options.items()]).replace("'",'"').replace(" ,",",") key =...
I just used a clean appbuilder coming from your site and injected couple of changes that were not included and the automated workflow rejects almost everything: something must be wrong?
[this code](https://github.com/dpgaspar/Flask-AppBuilder/blob/dcb32c78e6baacb5685843a1e33de4aab9171b80/flask_appbuilder/static/appbuilder/js/ab_filters.js#L143) should be ```javascript function changeOperation(e, $el, name) { $in = $el.find('.filter_val'); $in.attr('name','_flt_' + e.delegateTarget.value + '_' + name); } ``` This is due to the fact that a...
Of course, this is a good idea!
Writing this "bug report" I just discovered String was redefined just above Supplier definition: so I think this is not at all related to your code! I keep you posted
It works well except for some types which are not supported
I use the following python functions to interact over the ws: ```python def send_time(): """Send the current time to all connected clients""" while True: if app.sock_running == False: break time.sleep(1)...
The clock is sent over the ws thanks to a thread ```python t = threading.Thread(target=send_time,args=()) t.start() ```
The application works pretty well, I only have some small glitches - Some if I am in debug mode - Others in non debug mode
From the client side here is the code ```javascript $(document).ready(function() { // ===================== let socket = null // this is the websocket connection if (location.protocol === 'https:') { socket =...