]> SALOME platform Git repositories - tools/eficas.git/commitdiff
Salome HOME
Fix prefs_OT.py.in files
authorRenaud Barate <renaud.barate@edf.fr>
Thu, 9 Feb 2012 17:13:29 +0000 (17:13 +0000)
committerRenaud Barate <renaud.barate@edf.fr>
Thu, 9 Feb 2012 17:13:29 +0000 (17:13 +0000)
Openturns_Study/prefs_OPENTURNS_STUDY.py.in
Openturns_Wrapper/prefs_OPENTURNS_WRAPPER.py.in

index d927f9e43d4e154df38171598a39a7be53758682..46754c89f38869eab1a52b8e5f7fca97ad758294 100644 (file)
@@ -23,14 +23,12 @@ import os, sys
 # Les variables pouvant positionnees sont :
 print "import des prefs de OPENTURNS"
 
-# repIni sert à localiser le fichier 
+# repIni sert a localiser le fichier 
 # initialdir sert comme directory initial des QFileDialog
 # positionnee a repin au debut mise a jour dans configuration
 repIni=os.path.dirname(os.path.abspath(__file__))
-initialdir=repIni 
-
-# INSTALLDIR sert à localiser l'installation d'Eficas
 INSTALLDIR=os.path.join(repIni,'..')
+sys.path[:0]=[INSTALLDIR]
 
 
 # Codage des strings qui accepte les accents (en remplacement de 'ascii')
@@ -39,15 +37,21 @@ lang='fr'
 encoding='iso-8859-1'
 
 # Acces a la documentation
-rep_cata        = INSTALLDIR
-path_doc        = os.path.join(rep_cata,'Doc')
+path_doc        = os.path.join(INSTALLDIR,'Doc')
 exec_acrobat    = "/usr/bin/xpdf"
 savedir         = os.environ['HOME']
 
 
 # OpenTURNS Python module
 OpenTURNS_path="@OpenTURNS_PYTHON_MODULE_DIR@"
+if len(OpenTURNS_path) > 0: sys.path[:0]=[OpenTURNS_path]
+
 # Choix des catalogues
-if len(OpenTURNS_path) > 0:
-    sys.path[:0]=[OpenTURNS_path]
-sys.path[:0]=[INSTALLDIR]
+from Editeur.catadesc import CatalogDescription
+
+catalogues = (
+    CatalogDescription(identifier = "OPENTURNS_STUDY_V8",
+                       cata_file_path = os.path.join(os.path.abspath(repIni), 'OpenTURNS_Cata_Study_V8.py'),
+                       file_format = "openturns_study"),
+)
+
index 9933ec22b22de7691dd80e369bf8a4047e80d896..3779b06276e9b3d1e22098cd0a0faf4875c11d9c 100644 (file)
@@ -23,15 +23,13 @@ import os, sys
 # Les variables pouvant positionnees sont :
 print "import des prefs de OPENTURNS"
 
-# repIni sert alocaliser le fichier 
+# repIni sert a localiser le fichier 
 # initialdir sert comme directory initial des QFileDialog
 # positionnee a repin au debut mise a jour dans configuration
 repIni=os.path.dirname(os.path.abspath(__file__))
-initialdir=repIni 
+INSTALLDIR=os.path.join(repIni,'..')
+sys.path[:0]=[INSTALLDIR]
 
-# INSTALLDIR sert a localiser l'installation d'Eficas
-INSTALLDIR=os.path.abspath(os.path.join(repIni,'..'))
-sys.path.insert(0,INSTALLDIR)
 
 # Codage des strings qui accepte les accents (en remplacement de 'ascii')
 # lang indique la langue utilisée pour les chaines d'aide : fr ou ang
@@ -39,14 +37,21 @@ lang='fr'
 encoding='iso-8859-1'
 
 # Acces a la documentation
-rep_cata        = INSTALLDIR
-path_doc        = os.path.join(rep_cata,'Doc')
+path_doc        = os.path.join(INSTALLDIR,'Doc')
 exec_acrobat    = "/usr/bin/xpdf"
 savedir         = os.environ['HOME']
 
 
 # OpenTURNS Python module
 OpenTURNS_path="@OpenTURNS_PYTHON_MODULE_DIR@"
+if len(OpenTURNS_path) > 0: sys.path[:0]=[OpenTURNS_path]
+
 # Choix des catalogues
-if len(OpenTURNS_path) > 0:
-    sys.path[:0]=[OpenTURNS_path]
+from Editeur.catadesc import CatalogDescription
+
+catalogues = (
+    CatalogDescription(identifier = "OPENTURNS_WRAPPER_V4",
+                       cata_file_path = os.path.join(os.path.abspath(repIni), 'OpenTURNS_Cata_Wrapper_V4.py'),
+                       file_format = "openturns_study"),
+)
+