X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=Editeur%2Fappli.py;h=740b1eb8f17167717e5235556ba22dfefbf4685b;hb=29b425ec26f919b37df151a0c22b9d13cfa55de8;hp=df7fbaa7a16b452f984bff247c416febd2d795c8;hpb=5afee7e5cc04d611b69969f10c57624c42cc9213;p=tools%2Feficas.git diff --git a/Editeur/appli.py b/Editeur/appli.py index df7fbaa7..740b1eb8 100644 --- a/Editeur/appli.py +++ b/Editeur/appli.py @@ -39,7 +39,7 @@ import properties from widgets import Fenetre from Misc import MakeNomComplet -VERSION="EFICAS v1.3" +VERSION="EFICAS v1.4" class APPLI: def __init__ (self,master,code='ASTER',fichier=None) : @@ -57,8 +57,8 @@ class APPLI: self.message='' self.cree_composants_graphiques() self.load_appli_composants() # Creation du BUREAU - self.affiche_FAQ() splash.fini_splash() + self.affiche_FAQ() # AY : cas ou le nom du fichier a été passé en argument if fichier : try : @@ -163,8 +163,8 @@ class APPLI: Retourne un texte d'informations sur la session courante d'EFICAS """ texte = VERSION + '\n\n' - texte = texte + 'EFICAS est un produit développé par \nEDF-Division Stratégie et Développement\n' - texte = texte + 'Equipe : MTI/MMN\n\n' + texte = texte + 'EFICAS est un produit développé par \nEDF-R&D\n' + texte = texte + 'Equipe : SINETICS\n\n' texte = texte + 'Code utilisé : %s version %s\n' % (self.code,properties.version) return texte