Salome HOME
TypeInstance and basestring
[tools/eficas.git] / Validation / V_EXCLUS.py
index d8a3c54e10053f97ae82f4d1e85807ce63a46208..79431fe1d0a867ee9b560c8098781f0ce9bec2c2 100644 (file)
@@ -1,49 +1,55 @@
-# -*- 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 - 2017  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 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.
 #
-# 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 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.
 #
-# 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
 #
+# ======================================================================
 
 
+from __future__ import absolute_import
+try : 
+   from builtins import object
+except : pass
 
-class EXCLUS:
-   """
-      La règle vérifie qu'un seul mot-clé de self.mcs est present 
-          parmi les elements de args.
+class EXCLUS(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 methode verif effectue la verification specifique à la règle.
-          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:
-        if args.has_key(mc):count=count+1
-      if count > 1:
-          text= u"- Il ne faut qu un mot clé parmi : "+`self.mcs`+'\n'
-          return text,0
-      return text,1
+    """
+       La regle verifie qu'un seul mot-cle de self.mcs est present
+           parmi les elements de args.
 
+       Ces arguments sont transmis a la regle pour validation sous la forme
+       d'une liste de noms de mots-cles ou d'un dictionnaire dont
+       les cles sont des noms de mots-cles.
+    """
 
+    def verif(self, args):
+        """
+            La methode verif effectue la verification specifique a la regle.
+            args peut etre un dictionnaire ou une liste. Les elements de args
+            sont soit les elements de la liste soit les cles du dictionnaire.
+        """
+        #  on compte le nombre de mots cles presents
+        text = ''
+        count = 0
+        args = self.listeToDico(args)
+        for mc in self.mcs:
+            if mc in args:
+                count = count + 1
+        if count > 1:
+            text = "- Il ne faut qu un mot cle parmi : " + repr(self.mcs)+'\n'
+            return text, 0
+        return text, 1