This file is indexed.

/usr/share/pyshared/Traducteur/regles.py is in eficas 2.0.3-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
# -*- coding: utf-8 -*-
import logging
import string
from parseur import FactNode
debug=0


#--------------------
class ensembleRegles:
#--------------------

   def __init__(self,liste_regles):
      self.liste=[]
      for item in liste_regles :
         args,clefRegle=item
         r=regle(clefRegle,args)
         self.liste.append(r)

   def verif(self,commande) :
       bool=1
       for regle in self.liste :
         result=regle.verif(commande)
         bool=bool*result
       return bool
         
#--------------------------------
class pasDeRegle(ensembleRegles):
#--------------------------------
   def __init__(self) :
     pass

   def verif (self,commande) :
     return 1
 

#------------
class regle :
#------------

   def __init__(self,clef_regle,args):
      self.fonction=dictionnaire_regle[clef_regle]
      self.list_args=args
      self.bool=0

   def verif(self,commande):
       f=self.fonction(self.list_args)
       return f.verif(commande)
      
#---------------------
class existeMCFParmi :
#---------------------
   def __init__(self,list_arg):
      self.listeMCF=list_arg;

   def verif(self,commande):
      bool=0
      for c in commande.childNodes :
         if c.name in self.listeMCF : 
            bool=1
            break
      return bool
      
#----------------------
class existeMCsousMCF :
#----------------------
   def __init__(self,list_arg):
      self.liste=list_arg;
      self.MCF=self.liste[0]
      self.MC=self.liste[1]

   def verif(self,commande):
      bool=0
      for mcf in commande.childNodes :
         if mcf.name != self.MCF : continue 
         l=mcf.childNodes[:]
         l.reverse()
         for ll in l:
            for mc in ll.childNodes:
               if mc.name != self.MC : continue
               bool=1
      return bool
      
#-----------------------------------------
class nexistepasMCsousMCF(existeMCsousMCF):
#-----------------------------------------
   def __init__(self,list_arg):
       existeMCsousMCF.__init__(self,list_arg)
      

   def verif(self,commande):
       bool=existeMCsousMCF.verif(self,commande)
       if bool : return 0
       return 1

#-------------
class existe :
#--------------
   def __init__(self,list_arg):
      self.genea=list_arg

   def cherche_mot(self,niveau,commande):
      if commande == None            : return 0
      if niveau   == len(self.genea) : return 1
      texte=self.genea[niveau]
      for c in commande.childNodes :
          if c.name == texte : 
             niveau = niveau+1
             return self.cherche_mot(niveau,c)
      return None

   def verif(self,commande):
      bool=self.cherche_mot(0,commande)
      if bool == None : bool = 0
      return bool

#-------------
class nexistepas :
#--------------
   def __init__(self,list_arg):
      self.genea=list_arg

   def cherche_mot(self,niveau,commande):
      if commande == None            : return 0
      if niveau   == len(self.genea) : return 1
      texte=self.genea[niveau]
      for c in commande.childNodes :
          if c.name == texte : 
             niveau = niveau+1
             return self.cherche_mot(niveau,c)
      return None

   def verif(self,commande):
      bool=self.cherche_mot(0,commande)
      if bool : return 0
      return 1

#-------------------------------
class MCsousMCFaPourValeur :
#------------------------------
   def __init__(self,list_arg):
      assert (len(list_arg)==4)
      self.genea=list_arg[0:-2]
      self.MCF=list_arg[0]
      self.MC=list_arg[1]
      self.Val=list_arg[2]
      self.Jdc=list_arg[3]

   def verif(self,commande):
      bool=0
      for mcf in commande.childNodes :
         if mcf.name != self.MCF : continue 
         l=mcf.childNodes[:]
         l.reverse()
         for ll in l:
            for mc in ll.childNodes:
               if mc.name != self.MC : continue
               TexteMC=mc.getText(self.Jdc)
               if (TexteMC.find(self.Val) < 0 ): continue
               bool=1
      return bool

#-------------------------------
class MCaPourValeur :
#------------------------------
   def __init__(self,list_arg):
      assert (len(list_arg)==3)
      self.MC=list_arg[0]
      self.Val=list_arg[1]
      self.Jdc=list_arg[2]

   def verif(self,commande):
      bool=0
      for mc in commande.childNodes :
         if mc.name != self.MC : continue 
         TexteMC=mc.getText(self.Jdc)
         if (TexteMC.find(self.Val) < 0 ): continue
         bool=1
      return bool

dictionnaire_regle={"existe":existe,"nexistepas":nexistepas,"existeMCFParmi":existeMCFParmi,"existeMCsousMCF":existeMCsousMCF,"nexistepasMCsousMCF":nexistepasMCsousMCF,"MCsousMCFaPourValeur":MCsousMCFaPourValeur,"MCaPourValeur":MCaPourValeur}
SansRegle=pasDeRegle()