From 110eafa8a77ef855c7ff59da8dce38cba644dd8f Mon Sep 17 00:00:00 2001 From: Sylvain LE GAL Date: Sat, 8 Mar 2014 00:37:39 +0100 Subject: [PATCH] [REF] change description in the __openerp__.py file. --- web_widget_float_formula/__openerp__.py | 39 ++++++++++++------------- 1 file changed, 19 insertions(+), 20 deletions(-) diff --git a/web_widget_float_formula/__openerp__.py b/web_widget_float_formula/__openerp__.py index 8a34c04e..2cd5e8ab 100644 --- a/web_widget_float_formula/__openerp__.py +++ b/web_widget_float_formula/__openerp__.py @@ -7,38 +7,38 @@ 'version': '1.0', 'category': 'web', 'description': """ -Allow to write simple mathematic formules in Integer / Float fields +Allow to write simple mathematic formulas in Integer / Float fields =================================================================== -Functionnalities : +Functionnalities: ------------------ - * Possibility to tip a text like "=45 + 4/3 - 5 * (2 +1)" ; - * if the formula is correct, The result will be computed and displayed ; - * if the formula is not correct, the initial text is displayed ; + * Possibility to tip a text like "=45 + 4/3 - 5 * (2 +1)"; + * if the formula is correct, The result will be computed and displayed; + * if the formula is not correct, the initial text is displayed; -Documentations : +Documentations: ------------------ - * Video : http://www.youtube.com/watch?v=jQGdD34WYrA&hd=1 + * Video: http://www.youtube.com/watch?v=jQGdD34WYrA&hd=1 -Technical informations : +Technical informations: ------------------------ - * Overloads "instance.web.form.FieldFloat" ; (so works for fields.integer & fields.float) ; - * To compute, the module simply use the eval() javascript function ; - * Rounding computation is not done by this module (The module has the same behaviour if the user tips "=1/3" or if he tips "0.33[...]") ; - * avoid code injonction by regexpr test : "=alert('security')" is not valid ; + * Overloads "instance.web.form.FieldFloat"; (so works for fields.integer & fields.float); + * To compute, the module simply use the eval() javascript function; + * Rounding computation is not done by this module (The module has the same behaviour if the user tips "=1/3" or if he tips "0.33[...]"); + * avoid code injonction by regexpr test: "=alert('security')" is not valid; -Limits : +Limits: -------- - * Only supports the four operators : "+" "-" "*" "/" and parenthesis ; + * Only supports the four operators: "+" "-" "*" "/" and parenthesis; -Copyright and Licence : +Copyright and Licence: ----------------------- * 2013, Groupement Régional Alimentaire de Proximité (http://www.grap.coop/) - * Licence : AGPL-3 (http://www.gnu.org/licenses/) + * Licence: AGPL-3 (http://www.gnu.org/licenses/) Contacts : ---------- - * Sylvain LE GAL (https://twitter.com/legalsylvain); + * Sylvain LE GAL (https://twitter.com/legalsylvain); * for any help or question about this module. """, 'author': 'GRAP', @@ -47,9 +47,8 @@ Contacts : 'depends': [ 'web', ], - 'init_xml': [], - 'update_xml': [], - 'demo_xml': [], + 'data': [], + 'demo': [], 'js': [ 'static/src/js/models.js', ],