From 8bfbf3acd6abbc9d2e05e17eb6259a99de0c9277 Mon Sep 17 00:00:00 2001 From: Pascale Noyret Date: Thu, 21 Feb 2008 10:05:04 +0000 Subject: [PATCH] *** empty log message *** --- InterfaceTK/bureau.py | 1 + InterfaceTK/listeFichiers.py | 2 +- Ui/Makefile.am | 37 ++++++++++++++++++++++++++++++++++++ bootstrap | 6 ++++++ configure.ac | 7 +++++++ 5 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 Ui/Makefile.am create mode 100755 bootstrap create mode 100644 configure.ac diff --git a/InterfaceTK/bureau.py b/InterfaceTK/bureau.py index 8423bbda..bceb21f5 100644 --- a/InterfaceTK/bureau.py +++ b/InterfaceTK/bureau.py @@ -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]() diff --git a/InterfaceTK/listeFichiers.py b/InterfaceTK/listeFichiers.py index 9a9843f8..908bfe2b 100644 --- a/InterfaceTK/listeFichiers.py +++ b/InterfaceTK/listeFichiers.py @@ -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 index 00000000..a0e07138 --- /dev/null +++ b/Ui/Makefile.am @@ -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 index 00000000..5933cd9c --- /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 index 00000000..c6670854 --- /dev/null +++ b/configure.ac @@ -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]) -- 2.39.2