Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
9581d5c5
Kaydet (Commit)
9581d5c5
authored
Eyl 12, 2013
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
installer: remove unused variables
Change-Id: I3c9669f6fdf25a1a244335ae0317c3a8a933762b
üst
815ed63b
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
1 addition
and
30 deletions
+1
-30
installer.pm
solenv/bin/modules/installer.pm
+0
-1
archivefiles.pm
solenv/bin/modules/installer/archivefiles.pm
+0
-8
globals.pm
solenv/bin/modules/installer/globals.pm
+0
-10
scriptitems.pm
solenv/bin/modules/installer/scriptitems.pm
+0
-2
directory.pm
solenv/bin/modules/installer/windows/directory.pm
+0
-1
file.pm
solenv/bin/modules/installer/windows/file.pm
+0
-1
msiglobal.pm
solenv/bin/modules/installer/windows/msiglobal.pm
+1
-2
update.pm
solenv/bin/modules/installer/windows/update.pm
+0
-2
work.pm
solenv/bin/modules/par2script/work.pm
+0
-2
language.pm
solenv/bin/modules/pre2par/language.pm
+0
-1
No files found.
solenv/bin/modules/installer.pm
Dosyayı görüntüle @
9581d5c5
...
...
@@ -458,7 +458,6 @@ sub run {
@
installer::globals::
logfileinfo
=
();
# new logfile array and new logfile name
installer::logger::
copy_globalinfo_into_logfile
();
$
installer::globals::
globalinfo_copied
=
1
;
my
$logminor
=
""
;
$logminor
=
$
installer::globals::
minor
;
...
...
solenv/bin/modules/installer/archivefiles.pm
Dosyayı görüntüle @
9581d5c5
...
...
@@ -199,13 +199,6 @@ sub resolving_archive_flag
if
(
$onefile
->
{
'Selectfiles'
}
)
{
$onefile
->
{
'Selectfiles'
}
=
""
;
}
# Selected files list no longer required
# mechanism to define patch files inside an archive files
my
$select_patch_files
=
0
;
my
$patchlistfiles
=
""
;
my
@keptpatchflags
=
();
if
(
$onefile
->
{
'Patchfiles'
}
)
{
$onefile
->
{
'Patchfiles'
}
=
""
;
}
# Patch file list no longer required
# creating directories
my
$onelanguage
=
$onefile
->
{
'specificlanguage'
};
...
...
@@ -298,7 +291,6 @@ sub resolving_archive_flag
}
}
my
$zipfileref
=
\
@zipfile
;
my
$unziperror
=
0
;
foreach
my
$zipname
(
$zip
->
memberNames
()
)
...
...
solenv/bin/modules/installer/globals.pm
Dosyayı görüntüle @
9581d5c5
...
...
@@ -120,9 +120,7 @@ BEGIN
$updatesequencecounter
=
0
;
$updatedatabase
=
0
;
$updatedatabasepath
=
""
;
$pfffileexists
=
0
;
$pffcabfilename
=
"ooobasis3.0_pff.cab"
;
$mergemodulenumber
=
0
;
%
allmergemodulefilesequences
=
();
%
newupdatefiles
=
();
%
allusedupdatesequences
=
();
...
...
@@ -138,7 +136,6 @@ BEGIN
@globallogfileinfo
=
();
$ignore_error_in_logfile
=
0
;
$exitlog
=
""
;
$globalinfo_copied
=
0
;
$quiet
=
0
;
$ismultilingual
=
0
;
...
...
@@ -174,7 +171,6 @@ BEGIN
@binarytableonlyfiles
=
();
@allscpactions
=
();
$languagepackaddon
=
"LanguagePack"
;
$patchaddon
=
"Patch"
;
$ooodownloadfilename
=
""
;
$downloadfilename
=
""
;
$downloadfileextension
=
""
;
...
...
@@ -239,24 +235,18 @@ BEGIN
$localinstalldirset
=
0
;
$localinstalldir
=
""
;
$urefile
=
""
;
$postprocess_specialepm
=
0
;
$postprocess_standardepm
=
0
;
$mergemodules_analyzed
=
0
;
@packagelistitems
=
(
"module"
,
"solarispackagename"
,
"packagename"
,
"copyright"
,
"vendor"
,
"description"
);
@languagepackfeature
=
();
@helppackfeature
=
();
@featurecollector
=
();
$msiassemblyfiles
=
""
;
$macinstallfilename
=
"macinstall.ulf"
;
$extensioninstalldir
=
"gid_Dir_Share_Extension_Install"
;
@languagenames
=
();
@requiredpackages
=
();
%
componentcondition
=
();
%
componentid
=
();
%
comparecomponentname
=
();
%
allcabinets
=
();
%
allcabinetassigns
=
();
%
cabfilecounter
=
();
...
...
solenv/bin/modules/installer/scriptitems.pm
Dosyayı görüntüle @
9581d5c5
...
...
@@ -544,8 +544,6 @@ sub shift_basis_directory_parents
my
(
$dirsref
)
=
@_
;
my
@alldirs
=
();
my
@savedirs
=
();
my
@shifteddirs
=
();
my
$officedirgid
=
""
;
...
...
solenv/bin/modules/installer/windows/directory.pm
Dosyayı görüntüle @
9581d5c5
...
...
@@ -145,7 +145,6 @@ sub create_unique_directorynames
my
%
shortdirhash
=
();
my
%
shortdirhashreverse
=
();
my
$infoline
=
""
;
my
$errorcount
=
0
;
for
(
my
$i
=
0
;
$i
<=
$#
{
$directoryref
};
$i
++
)
{
...
...
solenv/bin/modules/installer/windows/file.pm
Dosyayı görüntüle @
9581d5c5
...
...
@@ -609,7 +609,6 @@ sub get_sequence_for_file
$fileentry
->
{
'Component_'
}
=
$onefile
->
{
'componentname'
};
if
(
!
exists
(
$allfilecomponents
->
{
$fileentry
->
{
'Component_'
}})
)
{
$allfilecomponents
->
{
$fileentry
->
{
'Component_'
}}
=
1
;
}
$onefile
->
{
'PostFinalFile'
}
=
1
;
# $installer::globals::pfffileexists = 1;
# The sequence for this file has changed. It has to be inserted at the end of the files collector.
$
installer::globals::
insert_file_at_end
=
1
;
$
installer::globals::
newfilescollector
{
$sequence
}
=
$onefile
;
# Adding new files to the end of the filescollector
...
...
solenv/bin/modules/installer/windows/msiglobal.pm
Dosyayı görüntüle @
9581d5c5
...
...
@@ -169,7 +169,6 @@ sub generate_cab_file_list
my
$sequenceorder
=
get_sequenceorder
(
$filesref
);
my
$counter
=
1
;
my
$currentcabfile
=
""
;
while
(
(
exists
(
$sequenceorder
->
{
$counter
})
)
||
(
exists
(
$
installer::globals::
allmergemodulefilesequences
{
$counter
})
)
)
# Taking care of files from merge modules
{
...
...
@@ -1547,7 +1546,7 @@ sub read_saved_mappings
my
$errorstring
=
""
;
my
$error_occurred
=
0
;
my
$file_error_occurred
=
0
;
my
$dir_error
=
0
;
my
$dir_error
_occurred
=
0
;
my
$idtdir
=
$
installer::globals::
previous_idt_dir
;
$idtdir
=~
s/\Q$installer::globals::separator\E\s*$//
;
...
...
solenv/bin/modules/installer/windows/update.pm
Dosyayı görüntüle @
9581d5c5
...
...
@@ -420,8 +420,6 @@ sub readmergedatabase
my
%
allmergefiles
=
();
$
installer::globals::
mergemodulenumber
=
$#
{
$mergemodules
}
+
1
;
foreach
my
$mergemodule
(
@
{
$mergemodules
}
)
{
my
$filename
=
$mergemodule
->
{
'Name'
};
...
...
solenv/bin/modules/par2script/work.pm
Dosyayı görüntüle @
9581d5c5
...
...
@@ -193,8 +193,6 @@ sub collect_definitions
$i
++
;
}
my
$allitemhash
=
\
$
par2script::globals::
definitions
{
$oneitem
};
# test of uniqueness
if
(
defined
(
$
par2script::globals::
definitions
{
$oneitem
}
->
{
$gid
})
)
{
...
...
solenv/bin/modules/pre2par/language.pm
Dosyayı görüntüle @
9581d5c5
...
...
@@ -121,7 +121,6 @@ sub localize
# print "line '$oneline' split to '$language' '$variable'\n";
if
(
defined
$replace_hash
->
{
$variable
})
{
my
$languageblock
=
$replace_hash
->
{
$variable
};
my
$newstring
=
get_language_string_from_language_block
(
$replace_hash
->
{
$variable
},
$language
);
if
(
$newstring
eq
""
)
{
$newstring
=
"\""
.
$variable
.
"\""
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment