Lines Matching refs:installer

24 package installer::archivefiles;
27 use installer::converter;
28 use installer::existence;
29 use installer::exiter;
30 use installer::files;
31 use installer::globals;
32 use installer::logger;
33 use installer::pathanalyzer;
34 use installer::systemactions;
86 …my $patchfilesarray = installer::converter::convert_stringlist_into_array_without_linebreak_and_qu…
109 my $filename = $unzipdir . $installer::globals::separator . $1;
128 $unzipdir =~ s/\Q$installer::globals::separator\E\s*$//;
130 …my $manifestfilename = $unzipdir . $installer::globals::separator . "META-INF" . $installer::globa…
134 my $manifestfile = installer::files::read_file($manifestfilename);
147 …if ( $installer::globals::debug ) { installer::logger::debuginfo("installer::archivefiles::resolvi…
153 …my $unziplistfile = $loggingdir . "unziplist_" . $installer::globals::build . "_" . $installer::gl…
155 my $platformunzipdirbase = installer::systemactions::create_directories("zip", $languagestringref);
156 push(@installer::globals::removedirs, $platformunzipdirbase);
158 installer::logger::include_header_into_logfile("Files with flag ARCHIVE:");
177 …if ( $sourcepath =~ /\Q$installer::globals::separator\E\bcommon$installer::globals::productextensi…
200 …$installer::logging::Lang->printf("Selected file list defined at file: %s :\n", $onefile->{'Name'}…
203 $installer::logging::Lang->printf("\"%s\"\n", $line);
213 if (( $styles =~ /\bPATCH\b/ ) && ( $onefile->{'Patchfiles'} ) && ( $installer::globals::patch ))
217 … $installer::logger::Lang->printf("Patch file list defined at file: %s :\n", $onefile->{'Name'});
220 $installer::logger::Lang->printf("\"%s\"\n", $line);
239 …$unzipdir = $platformunzipdirbase . $installer::globals::separator . $onelanguage . $installer::gl…
241installer::systemactions::create_directory($unzipdir); # creating language specific subdirectories
246 $unzipdir = $unzipdir . $onefilename . $installer::globals::separator;
248 …if ( $installer::globals::dounzip ) { installer::systemactions::create_directory($unzipdir); } # c…
253 $installer::logger::Lang->printf("ERROR: Could not unzip %s\n", $sourcepath);
266 $installer::logger::Lang->printf("ERROR: Could not unzip %s\n", $sourcepath);
270 if ( $installer::globals::dounzip ) # really unpacking the files
274installer::exiter::exit_program("ERROR: can not unzip ".$sourcepath, "resolving_archive_flag");
282 $installer::logger::Lang->printf("Systemcall: %s\n", $systemcall);
286 $installer::logger::Lang->printf("ERROR: Could not execute \"\"!\n", $systemcall);
290 if ( ! $installer::globals::iswindowsbuild )
296 $installer::logger::Lang->printf("Systemcall: %s\n", $systemcall);
299 … $installer::logger::Lang->printf("ERROR: Could not execute \"\"!\n", $systemcall);
323 if ($installer::globals::iswin and $^O =~ /MSWin/i) { $zipname =~ s/\//\\/g; }
325 …if ( $zipname =~ /\Q$installer::globals::separator\E\s*$/ ) # slash or backslash at the end charac…
346 installer::pathanalyzer::get_path_from_fullqualifiedname(\$destination);
353 if (( $use_internal_rights ) && ( ! $installer::globals::iswin ))
357 $installer::logger::Lang->printf(
371 $installer::logger::Lang->printf(
380 if ( ! installer::existence::exists_in_array($zipname,$selectlistfiles) )
382 … $installer::logger::Lang->printf("Removing from ARCHIVE file %s: %s\n",
389 $installer::logger::Lang->printf("Keeping from ARCHIVE file %s: \n",
401 if ( ! installer::existence::exists_in_array($zipname,$patchlistfiles) )
420 installer::systemactions::copy_one_file($oldfilename, $newfilename);
426 … $installer::logger::Lang->printf("RENAME_TO_LANGUAGE: Using %s instead of %s!\n",
434 … $installer::logger::Lang->printf("ATTENTION: Unzip failed for %s!\n", $sourcefiletest);
451 … $installer::logger::Lang->printf("SELECTLIST: Number of files in file selection list: %d\n",
453 $installer::logger::Lang->printf("SELECTLIST: Number of kept files: %d\n",
458 $installer::logger::Lang->printf("KEPT FILES: %s\n", $name);
463 if ( ! installer::existence::exists_in_array($name,\@keptfiles) )
465 $installer::logger::Lang->printf(
479 … $installer::logger::Lang->printf("PATCHLIST: Number of files in patch list: %d\n",
481 $installer::logger::Lang->printf("PATCHLIST: Number of kept PATCH flags: %d\n",
486 $installer::logger::Lang->printf("KEPT PATCH FLAGS: %s\n",
492 if ( ! installer::existence::exists_in_array($name,\@keptpatchflags) )
494 $installer::logger::Lang->printf(
503 installer::logger::print_warning( "Repeating to unpack $sourcepath! \n" );
504 … $installer::logger::Lang->printf("ATTENTION: Repeating to unpack %s!\n", $sourcepath);
510installer::exiter::exit_program("ERROR: Failed to unzip $sourcepath !", "resolving_archive_flag");…
515 … $installer::logger::Lang->printf("Info: %s unpacked without problems !\n", $sourcepath);
527 $installer::logger::Lang->print("\n");