This file is indexed.

/usr/lib/libreoffice/share/extensions/DmathsAddon/OOoGdmath/CodageLForm.xba is in libreoffice-dmaths 3.4+dfsg1-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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="CodageLForm" script:language="StarBasic">&apos;OOoGdmath
&apos;Copyright (C) 2005-2009  Gilles Daurat

&apos;This program is free software; you can redistribute it and/or
&apos;modify it under the terms of the GNU General Public License
&apos;as published by the Free Software Foundation; either version 2
&apos;of the License, or (at your option) any later version.

&apos;This program is distributed in the hope that it will be useful,
&apos;but WITHOUT ANY WARRANTY; without even the implied warranty of
&apos;MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
&apos;GNU General Public License for more details.

&apos;You should have received a copy of the GNU General Public License
&apos;along with this program; if not, write to the Free Software
&apos;Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

public CodageLabel3 as string
public CodageLabel2 as string
Public oCodageLForm as object

Sub Main
End Sub

Sub AfficheCodageLForm()
	oCodageLForm = LoadDialog(&quot;OOoGdmath&quot;,&quot;CodageLForm&quot;)
	ChangeTitreDialog(oCodageLForm)
    oCodageLForm.Model.CommandButton1.ImageURL=fCheminImages &amp; &quot;codagelongueur1.gif&quot;
    oCodageLForm.Model.CommandButton2.ImageURL=fCheminImages &amp; &quot;codagelongueur2.gif&quot;
    oCodageLForm.Model.CommandButton3.ImageURL=fCheminImages &amp; &quot;codagelongueur3.gif&quot;
    oCodageLForm.Model.CommandButton4.ImageURL=fCheminImages &amp; &quot;codagelongueur4.gif&quot;
    oCodageLForm.Model.CommandButton5.ImageURL=fCheminImages &amp; &quot;codagelongueur5.gif&quot;
    oCodageLForm.Model.CommandButton6.ImageURL=fCheminImages &amp; &quot;codagelongueur6.gif&quot;
    oCodageLForm.Model.CommandButton7.ImageURL=fCheminImages &amp; &quot;codagelongueur7.gif&quot;
    oCodageLForm.Model.CommandButton8.ImageURL=fCheminImages &amp; &quot;codagelongueur8.gif&quot;
    oCodageLForm.Model.CommandButton9.ImageURL=fCheminImages &amp; &quot;codagelongueur9.gif&quot;
	oCodageLForm.Execute()
end sub

Sub CommandButton1_Click()
    oCodageLForm.Model.Label2.label = &quot;1&quot;
	CodageLForm_Terminate()
End Sub

Sub CommandButton2_Click()
    oCodageLForm.Model.Label2.label = &quot;2&quot;
    CodageLForm_Terminate()
End Sub

Sub CommandButton3_Click()
    oCodageLForm.Model.Label2.label = &quot;3&quot;
    CodageLForm_Terminate()
End Sub

Sub CommandButton4_Click()
    oCodageLForm.Model.Label2.label = &quot;4&quot;
    CodageLForm_Terminate()
End Sub

Sub CommandButton5_Click()
    oCodageLForm.model.Label2.label = &quot;5&quot;
    CodageLForm_Terminate()
End Sub

Sub CommandButton6_Click()
    oCodageLForm.model.Label2.label = &quot;6&quot;
    CodageLForm_Terminate()
End Sub

Sub CommandButton7_Click()
    oCodageLForm.model.Label2.label = &quot;7&quot;
    CodageLForm_Terminate()
End Sub

sub CommandButton8_Click()
    oCodageLForm.model.Label2.label = &quot;8&quot;
    CodageLForm_Terminate()
End Sub

Sub CommandButton9_Click()
    oCodageLForm.model.Label2.label = &quot;9&quot;
    CodageLForm_Terminate()
End Sub

Sub CommandButton10_Click()
    oCodageLForm.model.Label2.label = &quot;10&quot;
    CodageLForm_Terminate()
End Sub

Sub CommandButton11_Click()
    oCodageLForm.model.Label2.label = &quot;11&quot;
    CodageLForm_Terminate()
End Sub

Sub CodageLForm_Terminate()
&apos;    CodageLForm.Label2 = &quot;11&quot;
	CodageLabel2=oCodageLForm.model.label2.label
    oCodageLForm.endexecute()
End Sub

</script:module>