Update ooo320-m1
[ooovba.git] / solenv / bin / modules / par2script / globals.pm
blob70337a84edefe0f00331451648ad57006a5cb315
1 #*************************************************************************
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 #
5 # Copyright 2008 by Sun Microsystems, Inc.
7 # OpenOffice.org - a multi-platform office productivity suite
9 # $RCSfile: globals.pm,v $
11 # $Revision: 1.11 $
13 # This file is part of OpenOffice.org.
15 # OpenOffice.org is free software: you can redistribute it and/or modify
16 # it under the terms of the GNU Lesser General Public License version 3
17 # only, as published by the Free Software Foundation.
19 # OpenOffice.org is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 # GNU Lesser General Public License version 3 for more details
23 # (a copy is included in the LICENSE file that accompanied this code).
25 # You should have received a copy of the GNU Lesser General Public License
26 # version 3 along with OpenOffice.org. If not, see
27 # <http://www.openoffice.org/license.html>
28 # for a copy of the LGPLv3 License.
30 #*************************************************************************
33 package par2script::globals;
35 ############################################
36 # Global settings
37 ############################################
39 BEGIN
41 $prog="par2script";
43 $includepathlist = "";
44 $scriptname = "";
45 $parfilelistorig = "";
46 $parfilelist = "";
48 @allitems = ("Installation", "ScpAction", "Directory", "File",
49 "Shortcut", "Unixlink", "Module", "Profile", "ProfileItem",
50 "Folder", "FolderItem", "RegistryItem", "WindowsCustomAction",
51 "MergeModule");
53 @items_assigned_at_modules = ("File", "Directory", "Unixlink");
54 @items_with_directories = ("File", "Profile", "Shortcut", "Unixlink");
55 @items_with_moduleid = ("Profile", "ProfileItem", "FolderItem", "RegistryItem");
56 @items_without_moduleid = ("File", "Directory", "Shortcut", "Unixlink");
58 %searchkeys = ("File" => "Files", "Directory" => "Dirs", "Unixlink" => "Unixlinks");
60 $logging = 0;
61 $logfilename = "logfile.log"; # the default logfile name for global errors
62 @logfileinfo = ();
64 $multidefinitionerror = 0;
65 $multiassignmenterror = 0;
67 %definitions;
68 %assignedgids;
70 $plat = $^O;
72 $separator = "/";
73 $pathseparator = "\:";
74 $isunix = 1;
75 $iswin = 0;
77 $islinux = 0;
78 $issolaris = 0;
80 if ( $plat =~ /linux/i ) { $islinux = 1; }
81 if ( $plat =~ /solaris/i ) { $issolaris = 1; }