Lines Matching refs:filename

89 	my ( $filename ) = @_;
92 $filename = $filename . $installer::globals::downloadfileextension;
93 $installer::globals::downloadfilename = $filename;
95 $installer::logger::Lang->printf("Setting download shell script file name to %s\n", $filename);
97 return $filename;
160 my ($filename) = @_;
166 my $systemcall = "$md5sumfile $filename |";
220 my ($filename, $getuidlibrary) = @_;
222 my $systemcall = "/usr/bin/sum $filename |";
243 $sumoutput =~ s/\s+$filename\s$//;
724 my $filename = "version.info";
727 if ( -f $filename )
729 $installer::logger::Lang->printf("File %s exists. Trying to find current version.\n", $filename);
730 my $versionfile = installer::files::read_file($filename);
736 …er::Lang->printf("File %s does not exist. No version setting in download file name.\n", $filename);
766 …my $filename = $start . "_" . $versionstring . "_" . $date . "_" . $platform . "_" . $architecture…
768 $filename =~ s/\_\_/\_/g; # necessary, if $versionstring or $platform or $language are empty
769 $filename =~ s/\_\s*$//; # necessary, if $language and $addon are empty
771 $installer::globals::ooodownloadfilename = $filename;
773 return $filename;
919 my $filename = $allvariables->{'DOWNLOADBANNER'};
925 … installer::scriptitems::get_sourcepath_from_filename_and_includepath(\$filename, $includepatharra…
929 …er::scriptitems::get_sourcepath_from_filename_and_includepath_classic(\$filename, $includepatharra…
932 …{ installer::exiter::exit_program("ERROR: Could not find download file $filename!", "put_banner_bm…
949 my $filename = $allvariables->{'DOWNLOADBITMAP'};
955 … installer::scriptitems::get_sourcepath_from_filename_and_includepath(\$filename, $includepatharra…
959 …er::scriptitems::get_sourcepath_from_filename_and_includepath_classic(\$filename, $includepatharra…
962 …{ installer::exiter::exit_program("ERROR: Could not find download file $filename!", "put_welcome_b…
979 my $filename = $allvariables->{'DOWNLOADSETUPICO'};
985 … installer::scriptitems::get_sourcepath_from_filename_and_includepath(\$filename, $includepatharra…
989 …er::scriptitems::get_sourcepath_from_filename_and_includepath_classic(\$filename, $includepatharra…
992 …{ installer::exiter::exit_program("ERROR: Could not find download file $filename!", "put_setup_ico…
1462 my ( $filename ) = @_;
1466 my $savfilename = $filename . "_before.utf16";
1467 installer::systemactions::copy_one_file($filename, $savfilename);
1471 …open( IN, "<:encoding(UTF16-LE)", $filename ) || installer::exiter::exit_program("ERROR: Cannot op…
1478 if ( open( OUT, ">:utf8", $filename ) )
1484 $savfilename = $filename . "_before.utf8";
1485 installer::systemactions::copy_one_file($filename, $savfilename);
1494 my ( $filename ) = @_;
1498 my $savfilename = $filename . "_after.utf8";
1499 installer::systemactions::copy_one_file($filename, $savfilename);
1501 …open( IN, "<:utf8", $filename ) || installer::exiter::exit_program("ERROR: Cannot open file $filen…
1508 if ( open( OUT, ">:raw:encoding(UTF16-LE):crlf:utf8", $filename ) )
1514 $savfilename = $filename . "_after.utf16";
1515 installer::systemactions::copy_one_file($filename, $savfilename);
1526 my $filename = $localnsisdir . $installer::globals::separator . $shortfilename;
1529 installer::files::save_file($filename, \@filecontent);
1530 convert_utf8_to_utf16($filename);
1531 my $newfile = installer::files::read_file($filename);