]> SALOME platform Git repositories - tools/eficas.git/blobdiff - Validation/V_MEME_NOMBRE.py
Salome HOME
gestion des listes et label sur 2
[tools/eficas.git] / Validation / V_MEME_NOMBRE.py
index 71237ce1b71dbed3b51b861e57430b67c6e96639..a18b74ded5d2b1ee5173a16fe165a4c95f2713f4 100644 (file)
@@ -1,61 +1,62 @@
-# -*- coding: iso-8859-1 -*-
-# Copyright (C) 2007-2013   EDF R&D
+# coding=utf-8
+# ======================================================================
+# COPYRIGHT (C) 1991 - 2015  EDF R&D                  WWW.CODE-ASTER.ORG
+# THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
+# IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS PUBLISHED BY
+# THE FREE SOFTWARE FOUNDATION; EITHER VERSION 2 OF THE LICENSE, OR
+# (AT YOUR OPTION) ANY LATER VERSION.
 #
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
-#
-# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+# THIS PROGRAM IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT
+# WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF
+# MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE GNU
+# GENERAL PUBLIC LICENSE FOR MORE DETAILS.
 #
+# YOU SHOULD HAVE RECEIVED A COPY OF THE GNU GENERAL PUBLIC LICENSE
+# ALONG WITH THIS PROGRAM; IF NOT, WRITE TO EDF R&D CODE_ASTER,
+#    1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE.
+# ======================================================================
+# person_in_charge: mathieu.courtois at edf.fr
+
 
 class MEME_NOMBRE:
-   """
-      La règle MEME_NOMBRE vérifie que l'on trouve au moins un des mots-clés
-      de la règle parmi les arguments d'un OBJECT.
-
-      Ces arguments sont transmis à la règle pour validation sous la forme
-      d'une liste de noms de mots-clés ou d'un dictionnaire dont
-      les clés sont des noms de mots-clés.
-   """
-   def verif(self,args):
-      """
-          La méthode verif vérifie que l'on trouve au moins un des mos-clés
-          de la liste self.mcs parmi les éléments de args
-
-          args peut etre un dictionnaire ou une liste. Les éléments de args
-          sont soit les éléments de la liste soit les clés du dictionnaire.
-      """
-      #  on compte le nombre de mots cles presents
-      text =''
-      args = self.liste_to_dico(args)
-      size = -1
-
-      for mc in self.mcs:
-        if mc not in args.keys():
-          text = u"Une clé dans la règle n'existe pas %s" % mc
-          return text,0
-
-        val = args[mc].valeur
-        len_val = 0
-        if not isinstance(val,type([])):
-          len_val = 1
-        else:
-          len_val = len(val)
-
-        if size == -1:
-          size = len_val
-        elif size != len_val:
-          text = u"Pas la même longeur"
-          return text,0
-      return text,1
 
+    """
+       La règle MEME_NOMBRE vérifie que l'on trouve au moins un des mots-clés
+       de la règle parmi les arguments d'un OBJECT.
+
+       Ces arguments sont transmis à la règle pour validation sous la forme
+       d'une liste de noms de mots-clés ou d'un dictionnaire dont
+       les clés sont des noms de mots-clés.
+    """
+
+    def verif(self, args):
+        """
+            La méthode verif vérifie que l'on trouve au moins un des mos-clés
+            de la liste self.mcs parmi les éléments de args
+
+            args peut etre un dictionnaire ou une liste. Les éléments de args
+            sont soit les éléments de la liste soit les clés du dictionnaire.
+        """
+        #  on compte le nombre de mots cles presents
+        text = ''
+        args = self.liste_to_dico(args)
+        size = -1
+
+        for mc in self.mcs:
+            if mc not in args.keys():
+                text = u"Une clé dans la règle n'existe pas %s" % mc
+                return text, 0
+
+            val = args[mc].valeur
+            len_val = 0
+            if not isinstance(val, type([])):
+                len_val = 1
+            else:
+                len_val = len(val)
+
+            if size == -1:
+                size = len_val
+            elif size != len_val:
+                text = u"Pas la même longeur"
+                return text, 0
+        return text, 1