This file is indexed.

/usr/lib/libreoffice/share/extensions/DmathsAddon/OOoGdmath/ChaineCode.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
<?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="ChaineCode" 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.

Sub MsgBoxP(unMessage as String)
Dim unTexte as String
Dim uneChaine as String
Dim a

	uneChaine = Chaine(unMessage)
	a = 1
	While((len(uneChaine) &gt; 40) and (a&lt;&gt;0))
		a = instr(40, uneChaine, &quot; &quot;)
		if a&lt;&gt;0 Then
			unTexte = unTexte &amp; left(uneChaine, a - 1) &amp; chr(13)
			uneChaine = mid(uneChaine, a+1)
		End if
	Wend
	unTexte = unTexte &amp; uneChaine
	MsgBox unTexte, 0, Chaine(&quot;erreur&quot;) &amp; &quot; - &quot; &amp; VERSION_GDMATH
End Sub
</script:module>