Salome HOME
Merge remote branch 'origin/nouvelEficas' into nouvelEficas
[tools/eficas.git] / Adao / prefs_Adao.py
1 # -*- coding: utf-8 -*-
2 import os,sys
3
4 # repIni sert à localiser le fichier editeur.ini
5 # Obligatoire
6 repIni=os.path.dirname(os.path.abspath(__file__))
7 INSTALLDIR=os.path.join(repIni,'..')
8 sys.path[:0]=[INSTALLDIR]
9
10
11 # Codage des strings qui accepte les accents (en remplacement de 'ascii')
12 encoding='iso-8859-1'
13
14 # Choix des catalogues
15 # format du Tuple (code,version,catalogue,formatOut, finit par defaut Ãventuellement)
16 catalogues = (
17 # ('Adao','V0',os.path.join(repIni,'monCode_Cata.py'),'python','python'),
18  ('Adao','V1',os.path.join(repIni,'ADAO_Cata_V7_6_0.py'),'dicoImbrique','python'),
19 # ('Adao','V1',os.path.join(repIni,'ADAO_Cata_V1.py'),'python','python'),
20 # ('Adao','V2',os.path.join(repIni,'ADAO_Cata_V2.py'),'python','python'),
21 )
22
23 # lang indique la langue utilisée pour les chaines d'aide : fr ou ang
24 lang='fr'
25
26