From: Eric Fayolle Date: Thu, 9 Dec 2021 14:02:46 +0000 (+0100) Subject: test sous scibian X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=22d7349fb96717afb4d66b599c15919e689326e0;p=tools%2Feficas.git test sous scibian --- diff --git a/testFlask/curl.cmd2 b/testFlask/curl.cmd2 index b74108e4..9deea07b 100644 --- a/testFlask/curl.cmd2 +++ b/testFlask/curl.cmd2 @@ -1 +1 @@ -curl http://127.0.0.1:8123/hello +curl http://127.0.0.1:8123/update diff --git a/testFlask/forms.py b/testFlask/forms.py index dbdfb1c5..c9855b41 100644 --- a/testFlask/forms.py +++ b/testFlask/forms.py @@ -1,7 +1,8 @@ -from wtforms import Form, TextField, SelectField, SubmitField, PasswordField, validators +#from wtforms import Form, TextField, SelectField, SubmitField, PasswordField, validators +from wtforms import Form, SelectField, SubmitField, PasswordField, validators class BasicForm(Form): - user = TextField(u'Utilisateur', [validators.Length(min=4, max=20)]) +# user = TextField(u'Utilisateur', [validators.Length(min=4, max=20)]) passwd = PasswordField(u'Mot de passe', [validators.Length(min=8, max=32)]) active = SelectField(u'Actif', choices = [('yes', 'Yes'), ('no', 'No')]) action = SubmitField(u'Register') diff --git a/testFlask/mdm.py b/testFlask/mdm.py index ba723848..5bcc4e38 100755 --- a/testFlask/mdm.py +++ b/testFlask/mdm.py @@ -181,7 +181,7 @@ def updateSimp(): changeDone = monConnecteur.changeValeur(id,value); changeDone = True print ("changeDone : ",changeDone) - # Ne pas récupérer et ne pas renvoyer le noeud dans le cas du SIMP + # Ne pas recuperer et ne pas renvoyer le noeud dans le cas du SIMP # (le changeDone et l''ancienne valeur ds la WebApp suffit node = monConnecteur.getDicoForFancy(monConnecteur.monEditeur.getNodeById(id)) print("node :",node) @@ -200,7 +200,7 @@ def updateSimp(): # - Ajouter un noeud (et ses enfants) # - Supprimer un noeud (et ses enfants), # - ReAffichage d'un noeud (et ses enfants) -# - Changement d'un nom de mot-clé référencé +# - Changement d'un nom de mot-cle reference @app.route("/forward/", methods=['POST']) def move_forward(): @@ -240,7 +240,7 @@ def json_example(): return make_response(jsonify({"message": "Request body must be JSON"}), 400) if __name__ == "__main__": - app.run(host="localhost", port=8123, debug=True) + app.run(host="localhost", port=8321, debug=True) #$("#386bc28a2ff811ec853cac220bca9aa6").html('Essai') @@ -288,5 +288,5 @@ if __name__ == "__main__": # $("#550f63502b6611ecab61ac220bca9aa6")[0].id #$("#ec7abddd2dca11ecab61ac220bca9aa6").parents()[0] -# Pour obtenir le nodeid treeview à partir de l'eficasID +# Pour obtenir le nodeid treeview a partir de l'eficasID #$("#ec7abddd2dca11ecab61ac220bca9aa6").parent()[0].attributes['data-nodeid'].value diff --git a/testFlask/templates/commandes_2.html b/testFlask/templates/commandes_2.html index c2cab9b5..93357162 100644 --- a/testFlask/templates/commandes_2.html +++ b/testFlask/templates/commandes_2.html @@ -137,6 +137,13 @@ source.addEventListener('update', function(event) { var data = JSON.parse(event.data); alert("The server says " + data.message); + var tree=$.ui.fancytree.getTree("#tree1"); + var activeNode = tree.getActiveNode(); + //p1=tree.getNodeByKey('8304986a334211ec853cac220bca9aa6') + //activeNode.addChildren({ + // title: "Document using a custom icon", + // icon: "customdoc1.gif" + //}); }, false); source.addEventListener('error', function(event) { alert("Failed to connect to event stream. Is Redis running?");