This file is indexed.

/usr/share/pyshared/Traducteur/changeValeur.py is in eficas 6.4.0-1-1.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
# -*- coding: utf-8 -*-
import logging
from dictErreurs import EcritErreur
from dictErreurs import jdcSet
from renamemocle import decaleLignesdeNBlancs
from removemocle import removeMotCleInFact


#--------------------------------------------------------------------------
def ChangementValeur(jdc,command,motcle,DictNouvVal,liste=(),defaut=0):
#--------------------------------------------------------------------------
    if command  not in jdcSet : return
    boolChange=0
    for c in jdc.root.childNodes:
       if c.name != command  : continue
       trouveUnMC=0
       for mc in c.childNodes:
          if mc.name != motcle : continue
          trouveUnMC=1
          TexteMC=mc.getText(jdc)
          liste_ligne_MC=TexteMC.splitlines()
          indexLigneGlob=mc.lineno-1
          indexTexteMC=0
          while indexLigneGlob < mc.endline  :
             if indexTexteMC > len(liste_ligne_MC)-1 : break
             MaLigneGlob=jdc.getLines()[indexLigneGlob]
             MaLigneTexte=liste_ligne_MC[indexTexteMC]
             for Valeur in DictNouvVal.keys() :
                trouve=MaLigneTexte.find(Valeur)
                if trouve > -1 :
                   debut=MaLigneGlob.find(motcle)
                   if debut==-1 : debut=0
	           Nouveau=MaLigneGlob[debut:].replace(Valeur,DictNouvVal[Valeur])
                   Nouveau=MaLigneGlob[0:debut]+Nouveau
                   jdc.getLines()[indexLigneGlob]=Nouveau
                   MaLigneTexte=Nouveau # raccourci honteux mais ...
                   MaLigneGlob=Nouveau
                   if Valeur in liste :
                      EcritErreur((command,motcle,Valeur),indexLigneGlob)
                   else :
                      logging.info("Changement de %s par %s dans %s ligne %d",Valeur,DictNouvVal[Valeur],command,indexLigneGlob)
                   boolChange=1
             indexLigneGlob=indexLigneGlob+1
             indexTexteMC=indexTexteMC+1
       if (trouveUnMC == 0) and ( defaut == 1):
          EcritErreur((command,motcle,"DEFAUT"),c.lineno)
    if boolChange : jdc.reset(jdc.getSource())
             
#--------------------------------------------------------------------------------
def ChangementValeurDsMCF(jdc,command,fact,motcle,DictNouvVal,liste=(),defaut=0):
#--------------------------------------------------------------------------------

    if command  not in jdcSet : return
    boolChange=0
    for c in jdc.root.childNodes:
       if c.name != command  : continue
       for mcF in c.childNodes:
          if mcF.name != fact : continue
          l=mcF.childNodes[:]
          l.reverse()
          for ll in l:
             trouveUnMC=0
             for mc in ll.childNodes:
                if mc.name != motcle:continue
                trouveUnMC=1
                TexteMC=mc.getText(jdc)
                liste_ligne_MC=TexteMC.splitlines()
                indexLigneGlob=mc.lineno-1
                indexTexteMC=0
                while indexLigneGlob < mc.endline  :
                   if indexTexteMC > len(liste_ligne_MC)-1 : break
                   MaLigneGlob=jdc.getLines()[indexLigneGlob]
                   MaLigneTexte=liste_ligne_MC[indexTexteMC]
                   for Valeur in DictNouvVal.keys() :
                      trouve=MaLigneTexte.find(Valeur)
                      if trouve > -1 :
                         debut=MaLigneGlob.find(motcle)
                         if debut==-1 : debut=0
	                 Nouveau=MaLigneGlob[debut:].replace(Valeur,DictNouvVal[Valeur])
                         Nouveau=MaLigneGlob[0:debut]+Nouveau
                         jdc.getLines()[indexLigneGlob]=Nouveau
                         MaLigneTexte=Nouveau # raccourci honteux mais ...
                         MaLigneGlob=Nouveau
                         if Valeur in liste :
                            EcritErreur((command,fact,motcle,Valeur),indexLigneGlob)
                         else :
                            logging.info("Changement de %s par %s dans %s ligne %d",Valeur,DictNouvVal[Valeur],command,indexLigneGlob)
                   boolChange=1
                   indexLigneGlob=indexLigneGlob+1
                   indexTexteMC=indexTexteMC+1
             if (trouveUnMC == 0) and ( defaut == 1):
                logging.warning("OPTION  (defaut) de CALCG à verifier ligne %s" ,c.lineno )                     
                EcritErreur((command,fact,motcle,"DEFAUT"),c.lineno)
    if boolChange : jdc.reset(jdc.getSource())
             
#---------------------------------------------------------------------------------------
def ChangementValeurDsMCFAvecAvertissement(jdc, command, fact,motcle,DictNouvVal,liste):
#---------------------------------------------------------------------------------------
    if command  not in jdcSet : return
    defaut=0
    if liste[-1] == "defaut" : 
       defaut=1
    ChangementValeurDsMCF(jdc,command,fact,motcle,DictNouvVal,liste,defaut)

#--------------------------------------------------------------------------
def ChangementValeurAvecAvertissement(jdc, command,motcle,DictNouvVal,liste):
#--------------------------------------------------------------------------
    if command  not in jdcSet : return
    defaut=0
    if liste[-1] == "defaut" : 
       defaut=1
    ChangementValeur(jdc,command,motcle,DictNouvVal,liste,defaut)

#--------------------------------------------------------------------------
def SuppressionValeurs(jdc, command,motcle,liste):
#--------------------------------------------------------------------------

    if command not in jdcSet : return
    boolChange=0
    for c in jdc.root.childNodes:
       if c.name != command  : continue
       for mc in c.childNodes:
          if mc.name != motcle : continue
          indexLigneGlob=mc.lineno-1
          while indexLigneGlob < mc.endline  :
             MaLigneTexte = jdc.getLines()[indexLigneGlob]
             MaLigne=MaLigneTexte
             for Valeur in liste :
                debutMC =MaLigne.find(motcle)
                if debutMC ==-1 : debutMC=0
                debut1=MaLigne[0:debutMC]
                chercheLigne=MaLigne[debutMC:]
                trouve=chercheLigne.find(Valeur)
                premier=0
                if trouve > 0 : 
                   debut=debut1 + chercheLigne[0:trouve]
                   index = -1
                   while (-1 * index) < len(debut) :
                      if (debut[index] == "(")  :
                         premier = 1
                         if index == -1 :
                            index=len(debut)
                         else :
                            index=index+1
                         break
                      if (debut[index] == "," ) : 
                          break
                      if (debut[index] != " " ) :
                         assert(0)
                      index = index -1
                   debLigne = debut[0:index]
                   fin=trouve+len(Valeur)
                   if premier == 1 : fin = fin + 1 # on supprime la ,
                   finLigne = chercheLigne[fin:]
                   MaLigne=debLigne+finLigne
                   boolChange=1
                jdc.getLines()[indexLigneGlob]=MaLigne
             indexLigneGlob=indexLigneGlob+1
    if boolChange : jdc.reset(jdc.getSource())

#----------------------------------------------
def AppelleMacroSelonValeurConcept(jdc,macro,genea):
#----------------------------------------------
    if macro  not in jdcSet : return
    boolChange=0
    fact=genea[0]
    motcle=genea[1]
    chaine="CO"
    for c in jdc.root.childNodes:
       if c.name != macro  : continue
       for mcF in c.childNodes:
          if mcF.name != fact : continue
          l=mcF.childNodes[:]
          l.reverse()
          for ll in l:
             trouveValeur=0
             for mc in ll.childNodes:
                if mc.name != motcle:continue
                TexteMC=mc.getText(jdc)
                liste_ligne_MC=TexteMC.splitlines()
                indexLigneGlob=mc.lineno-2
                trouveTexteMC=0
                trouveegal=0
                trouvechaine=0
                trouveparent=0
                trouvequote=0
                while indexLigneGlob < mc.endline  :
                   indexLigneGlob=indexLigneGlob+1
                   MaLigneTexte=jdc.getLines()[indexLigneGlob]

                   # on commence par chercher TABLE par exemple
                   # si on ne trouve pas on passe a la ligne suivante
                   if ( trouveTexteMC == 0 ) :
                       indice=MaLigneTexte.find(motcle)
                       if indice < 0 : continue
                       trouveTexteMC=1
                   else :
                      indice=0

                   # on cherche =
                   aChercher=MaLigneTexte[indice:]
                   if (trouveegal == 0 ):
                       indice=aChercher.find("=")
                       if indice < 0 : continue
                       trouveegal = 1
                   else :
                       indice = 0

                   # on cherche CO
                   aChercher2=aChercher[indice:]
                   if (trouvechaine == 0 ):
                       indice=aChercher2.find(chaine)
                       if indice < 0 : continue
                       trouvechaine = 1
                   else :
                       indice = 0

                   #on cherche (
                   aChercher3=aChercher2[indice:]
                   if (trouveparent == 0 ):
                       indice=aChercher3.find('(')
                       if indice < 0 : continue
                       trouveparent = 1
                   else :
                       indice = 0
                 
                   #on cherche la '
                   aChercher4=aChercher3[indice:]
                   if (trouvequote == 0 ):
                       indice=aChercher4.find("'")
                       indice2=aChercher4.find('"')
                       if (indice < 0) and (indice2 < 0): continue
                       if (indice < 0) : indice=indice2
                       trouvequote = 1
                   else :
                       indice = 0

                   trouveValeur=1
                   aChercher5=aChercher4[indice+1:]
                   indice=aChercher5.find("'")
                   if indice < 0 :  indice=aChercher5.find('"')
                   valeur=aChercher5[:indice]
                   break
                    
             if trouveValeur==0 :
                  logging.error("Pb de traduction pour MACR_LIGNE_COUPE : Pas de nom de Concept identifiable")
                  return
             
             if boolChange :
                  jdc.reset(jdc.getSource())
                  logging.error("Pb du traduction pour MACR_LIGNE_COUPE : Deux noms de Concept possibles")
                  return

             boolChange=1
             ligneaTraiter=jdc.getLines()[c.lineno-1]
             debut=ligneaTraiter[0:c.colno]
             suite=valeur+"="
             fin=ligneaTraiter[c.colno:]
             ligne=debut+suite+fin
             jdc.getLines()[c.lineno-1]=ligne
             nbBlanc=len(valeur)+1
             if c.lineno < c.endline:
                decaleLignesdeNBlancs(jdc,c.lineno,c.endline-1,nbBlanc)
    if boolChange : jdc.reset(jdc.getSource())

#----------------------------------------------
def ChangeTouteValeur(jdc,command,motcle,DictNouvVal,liste=(),defaut=0):
#----------------------------------------------
    if macro  not in jdcSet : return
    boolChange=0