From 636253b2bc5b8cf95451fd987dbdeb7fdda94584 Mon Sep 17 00:00:00 2001 From: Renaud Barate Date: Thu, 9 Feb 2012 17:13:29 +0000 Subject: [PATCH] Fix prefs_OT.py.in files --- Openturns_Study/prefs_OPENTURNS_STUDY.py.in | 22 ++++++++++-------- .../prefs_OPENTURNS_WRAPPER.py.in | 23 +++++++++++-------- 2 files changed, 27 insertions(+), 18 deletions(-) diff --git a/Openturns_Study/prefs_OPENTURNS_STUDY.py.in b/Openturns_Study/prefs_OPENTURNS_STUDY.py.in index d927f9e4..46754c89 100644 --- a/Openturns_Study/prefs_OPENTURNS_STUDY.py.in +++ b/Openturns_Study/prefs_OPENTURNS_STUDY.py.in @@ -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"), +) + diff --git a/Openturns_Wrapper/prefs_OPENTURNS_WRAPPER.py.in b/Openturns_Wrapper/prefs_OPENTURNS_WRAPPER.py.in index 9933ec22..3779b062 100644 --- a/Openturns_Wrapper/prefs_OPENTURNS_WRAPPER.py.in +++ b/Openturns_Wrapper/prefs_OPENTURNS_WRAPPER.py.in @@ -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"), +) + -- 2.39.2