This file is indexed.

/usr/lib/libreoffice/share/extensions/canzeley-client/Kanzleiprogramm/AktenAnlMod1.xba is in libreoffice-canzeley-client 0.5.0-2.

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
<?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="AktenAnlMod1" script:language="StarBasic">REM                        *****  BASIC  *****
REM        	              ***** Canzeley *****
REM              Copyright (C) 2008, 2009 Dr. Michael Stehmann
REM                  info@rechtsanwalt-stehmann.de
REM This program is free software: you can redistribute it and/or modify it
REM under the terms of the GNU General Public License as published by the
REM Free Software Foundation, either version 3 of the License, or any later version.
REM This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
REM without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
REM See the GNU General Public License for more details.
REM You should have received a copy of the GNU General Public License along with this program.
REM If not, see &lt;http://www.gnu.org/licenses/&gt;.
REM                      *** Version 0.5.0 ***

REM **** Kanzleiprogramm - AktenAnlMod1 ****

Option Explicit


Sub AktenNeuanlage

RegNrErmitteln
DatumHeute
SQLMod.AktenAnlMod1Insert1
FSMod.AktenVerzeichnisAnlegen

	sRegNummer = sRegisterNr
		
AktenMod1.AktenanzeigeRegNrBekannt

End Sub


Sub RegNrErmitteln

Dim sVorherigeRegNr As String
Dim iVorherigeRegNr As Integer
Dim iNeueRegNr As Integer
Dim sHeute As String

SQLMod.AktenAnlMod1Abfrage1

	While (oResultSet.next)
	
		sVorherigeRegNr = oResultSet.getString(1)
		
	Wend
		
	sHeute = CDateToIso(now())
	
	If sVorherigeRegNr = &quot;&quot; Then
		sVorherigeRegNr = Mid(sHeute, 5, 2) + &quot;000&quot;
	End If
	
	iVorherigeRegNr = CInt(sVorherigeRegNr)
	iNeueRegNr = iVorherigeRegNr + 1
	
	If iNeueRegNr &lt; 10000 Then
		sRegisterNr = &quot;0&quot;+CStr(iNeueRegNr)+&quot;-&quot;+Left(sHeute, 4)
	Else
		sRegisterNr = CStr(iNeueRegNr)+&quot;-&quot;+Left(sHeute, 4)
	End If
		
End Sub


Sub DatumHeute

	sDatumHeute = CDateToIso(now())
	sDatumHeute = Left(sDatumHeute, 4)+&quot;-&quot;+Mid(sDatumHeute, 5, 2)+&quot;-&quot;+ _
	Right(sDatumHeute, 2)
		
End Sub

</script:module>