Salome HOME
sauve du 20/12
[tools/eficas.git] / Editeur / import_code.py
index 1152f1b7f5a3ef020c05da1a804621c0652d9574..030e98fbe5146c287164f6599da9ade2ffd46f39 100644 (file)
@@ -1,16 +1,42 @@
+# -*- coding: utf-8 -*-
+# Copyright (C) 2007-2013   EDF R&D
+#
+# 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
+#
 """
     Ce module réalise toutes les mises à jour du chemin pour 
     les imports de modules Python
 """
 import sys
+import os
+
 import prefs
+name='prefs_'+prefs.code
+prefs_Code=__import__(name)
+INSTALLDIR=prefs_Code.INSTALLDIR
+
 # Ce chemin permet d'importer les modules Noyau et Validation
 # représentant le code utilisé (si fourni)
-if prefs.CODE_PATH:
-   sys.path[:0]=[prefs.CODE_PATH]
-   import Noyau,Validation
-   del sys.path[0]
-
 # Ensuite on utilise les packages de l'intallation
-sys.path[:0]=[prefs.INSTALLDIR]
+if hasattr(prefs_Code,'CODE_PATH'):
+   if prefs_Code.CODE_PATH:
+      sys.path[:0]=[prefs_Code.CODE_PATH]
+      import Noyau,Validation
+      del sys.path[0]
+sys.path[:0]=[prefs_Code.INSTALLDIR]
+
 import Accas