]> SALOME platform Git repositories - modules/eficas.git/commitdiff
Salome HOME
*** empty log message ***
authorPascale Noyret <pascale.noyret@edf.fr>
Thu, 21 Feb 2008 10:05:04 +0000 (10:05 +0000)
committerPascale Noyret <pascale.noyret@edf.fr>
Thu, 21 Feb 2008 10:05:04 +0000 (10:05 +0000)
InterfaceTK/bureau.py
InterfaceTK/listeFichiers.py
Ui/Makefile.am [new file with mode: 0644]
bootstrap [new file with mode: 0755]
configure.ac [new file with mode: 0644]

index 8423bbda8bc018ebba12a24314f5e22b8298df14..bceb21f5efd15d92ec9fbf5aac8244f9ed087f62 100644 (file)
@@ -357,6 +357,7 @@ class BUREAU:
           return
 
       # Il faut convertir le contenu du fichier en fonction du format
+      format=self.appli.format_fichier.get()
       if convert.plugins.has_key(format):
          # Le convertisseur existe on l'utilise
          p=convert.plugins[format]()
index 9a9843f83e692a99f70fb15d84bea719e99e046f..908bfe2b0e44d90e565fd01462ed8ea15fc8b3ab 100644 (file)
@@ -8,7 +8,7 @@ class listeFichiers :
        self.nbfich=0
        self.rep=self.appli.CONFIGURATION.rep_user
        self.menuFichier=self.appli.menubar.menudict['Fichier']
-       self.monFichier=self.rep+"/listefichiers"
+       self.monFichier=self.rep+"/listefichiers_"+self.appli.code
        self.liste_Fichiers=[] 
        self.init_Fichier()
        self.traite_liste()
diff --git a/Ui/Makefile.am b/Ui/Makefile.am
new file mode 100644 (file)
index 0000000..a0e0713
--- /dev/null
@@ -0,0 +1,37 @@
+BUILT_SOURCES = \
+desChoixCata.py \
+desCommande.py \
+desCommentaire.py \
+desError.py \
+desFormule.py \
+desInactif.py \
+desInclude.py \
+desListeParam.py \
+desMCFact.py \
+desMCListAjout.py \
+desMacro.py \
+desParam.py \
+desPlusieursBase.py \
+desPlusieursInto.py \
+desPoursuite.py \
+desRacine.py \
+desSelectVal.py \
+desUniqueASSD.py \
+desUniqueBase.py \
+desUniqueComp.py \
+desUniqueInto.py \
+desUniqueSDCO.py \
+desUniqueSDCOInto.py \
+desVisu.py \
+myMain.py
+
+uieficasdir = $(prefix)/Ui
+
+nobase_uieficas_PYTHON = $(BUILT_SOURCES)
+
+
+
+SUFFIXES = .ui
+
+.ui.py :
+       $(PYUIC) -o $@ $<
diff --git a/bootstrap b/bootstrap
new file mode 100755 (executable)
index 0000000..5933cd9
--- /dev/null
+++ b/bootstrap
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+touch NEWS README AUTHORS ChangeLog && \
+aclocal && \
+autoconf && \
+automake --add-missing  --copy
diff --git a/configure.ac b/configure.ac
new file mode 100644 (file)
index 0000000..c667085
--- /dev/null
@@ -0,0 +1,7 @@
+AC_INIT(insercopyright.py)
+AM_INIT_AUTOMAKE(eficas, 1.14)
+AM_PATH_PYTHON
+AC_ARG_VAR([PYUIC],AC_HELP_STRING([PYUIC],[The path to the Python tool 'pyuic']))
+AC_PATH_PROG([PYUIC],[pyuic],[false])
+test x$PYUIC = xfalse && AC_MSG_ERROR([The 'pyuic' tool is mandatory. Check installation.])
+AC_OUTPUT([Ui/Makefile])