Salome HOME
menage
[tools/eficas.git] / Validation / V_AU_PLUS_UN.py
index e9ac6f484af4f4738d1c169bd54b3900fc2cb362..324608c037c0e4caff22d7c419e7b99b52d30f31 100644 (file)
@@ -1,58 +1,62 @@
-# -*- coding: iso-8859-1 -*-
-# Copyright (C) 2007-2013   EDF R&D
+# coding=utf-8
+# person_in_charge: mathieu.courtois at edf.fr
+# ======================================================================
+# 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.
+# ======================================================================
+
 
 class AU_PLUS_UN:
-   """
-      La règle vérifie que l'on trouve 1 (au plus) 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 1 (au plus) des mos-clés
-          de la liste self.mcs parmi les éléments de args
+    """
+       La règle vérifie que l'on trouve 1 (au plus) 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 1 (au plus) 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 = ''
-      count = 0
-      args = self.liste_to_dico(args)
-      for mc in self.mcs:
-         count = count + args.get(mc, 0)
-      if count > 1:
-         text = u"- Il ne faut qu'un mot-clé (au plus) parmi : "+`self.mcs`+'\n'
-         return text, 0
-      return text, 1
+            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 = ''
+        count = 0
+        args = self.liste_to_dico(args)
+        for mc in self.mcs:
+            count = count + args.get(mc, 0)
+        if count > 1:
+            text = u"- Il ne faut qu'un mot-clé (au plus) parmi : " + \
+                `self.mcs`+'\n'
+            return text, 0
+        return text, 1
 
-   def liste_to_dico(self, args) :
-      if type(args) is dict:
-         return args
-      elif type(args) in (list, tuple):
-         dico={}
-         for arg in args:
-            dico[arg] = dico.get(arg, 0) + 1
-         return dico
-      else :
-         raise Exception("Erreur ce n'est ni un dictionnaire ni une liste %s" % args)
+    def liste_to_dico(self, args):
+        if type(args) is dict:
+            return args
+        elif type(args) in (list, tuple):
+            dico = {}
+            for arg in args:
+                dico[arg] = dico.get(arg, 0) + 1
+            return dico
+        else:
+            raise Exception(
+                "Erreur ce n'est ni un dictionnaire ni une liste %s" % args)