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$//;
743 my $filename = "version.info";
746 if ( -f $filename )
748 … $installer::logger::Lang->printf("File %s exists. Trying to find current version.\n", $filename);
749 my $versionfile = installer::files::read_file($filename);
755 …er::Lang->printf("File %s does not exist. No version setting in download file name.\n", $filename);
785 …my $filename = $start . "_" . $versionstring . "_" . $date . "_" . $platform . "_" . $architecture…
787 $filename =~ s/\_\_/\_/g; # necessary, if $versionstring or $platform or $language are empty
788 $filename =~ s/\_\s*$//; # necessary, if $language and $addon are empty
790 $installer::globals::ooodownloadfilename = $filename;
792 return $filename;
944 my $filename = $allvariables->{'DOWNLOADBANNER'};
950 … installer::scriptitems::get_sourcepath_from_filename_and_includepath(\$filename, $includepatharra…
954 …er::scriptitems::get_sourcepath_from_filename_and_includepath_classic(\$filename, $includepatharra…
957 …{ installer::exiter::exit_program("ERROR: Could not find download file $filename!", "put_banner_bm…
974 my $filename = $allvariables->{'DOWNLOADBITMAP'};
980 … installer::scriptitems::get_sourcepath_from_filename_and_includepath(\$filename, $includepatharra…
984 …er::scriptitems::get_sourcepath_from_filename_and_includepath_classic(\$filename, $includepatharra…
987 …{ installer::exiter::exit_program("ERROR: Could not find download file $filename!", "put_welcome_b…
1004 my $filename = $allvariables->{'DOWNLOADSETUPICO'};
1010 … installer::scriptitems::get_sourcepath_from_filename_and_includepath(\$filename, $includepatharra…
1014 …er::scriptitems::get_sourcepath_from_filename_and_includepath_classic(\$filename, $includepatharra…
1017 …{ installer::exiter::exit_program("ERROR: Could not find download file $filename!", "put_setup_ico…
1482 my ( $filename ) = @_;
1486 my $savfilename = $filename . "_before.utf16";
1487 installer::systemactions::copy_one_file($filename, $savfilename);
1491 …open( IN, "<:encoding(UTF16-LE)", $filename ) || installer::exiter::exit_program("ERROR: Cannot op…
1498 if ( open( OUT, ">:utf8", $filename ) )
1504 $savfilename = $filename . "_before.utf8";
1505 installer::systemactions::copy_one_file($filename, $savfilename);
1514 my ( $filename ) = @_;
1518 my $savfilename = $filename . "_after.utf8";
1519 installer::systemactions::copy_one_file($filename, $savfilename);
1521 …open( IN, "<:utf8", $filename ) || installer::exiter::exit_program("ERROR: Cannot open file $filen…
1528 if ( open( OUT, ">:raw:encoding(UTF16-LE):crlf:utf8", $filename ) )
1534 $savfilename = $filename . "_after.utf16";
1535 installer::systemactions::copy_one_file($filename, $savfilename);
1546 my $filename = $localnsisdir . $installer::globals::separator . $shortfilename;
1549 installer::files::save_file($filename, \@filecontent);
1550 convert_utf8_to_utf16($filename);
1551 my $newfile = installer::files::read_file($filename);