Lines Matching refs:installer

24 package installer::windows::property;
26 use installer::exiter;
27 use installer::files;
28 use installer::globals;
29 use installer::windows::idtglobal;
30 use installer::windows::language;
52 if ( $installer::globals::languagepack ) { $comment = $comment . " " . "Language Pack"; }
54 if ( $installer::globals::patch )
56 …if ( ! $allvariables->{'WINDOWSPATCHLEVEL'} ) { installer::exiter::exit_program("ERROR: No Patch l…
67 if ( $installer::globals::updatepack ) { $localminor = $installer::globals::lastminor; }
68 else { $localminor = $installer::globals::minor; }
70 …my $buildidstring = "(" . $installer::globals::build . $localminor . "(Build:" . $installer::globa…
94 return $installer::globals::manufacturer;
100 my $windowslanguage = installer::windows::language::get_windows_language($language);
108 for ( my $i = 0; $i <= $#installer::globals::languagenames; $i++ )
110 $langstring = $langstring . $installer::globals::languagenames[$i] . ", ";
125 foreach my $lang ( keys %installer::globals::all_required_english_languagestrings )
127 $helper{$installer::globals::all_required_english_languagestrings{$lang}} = 1;
163 if ( $installer::globals::languagepack )
170 if ( $installer::globals::patch )
172 …if ( ! $allvariables->{'WINDOWSPATCHLEVEL'} ) { installer::exiter::exit_program("ERROR: No Patch l…
180 $installer::logger::Lang->print($infoline);
196 $installer::logger::Lang->print($infoline);
203 return $installer::globals::msiproductversion;
215 foreach my $feature_gid (keys %installer::globals::featurecollector)
309 if ( $installer::globals::officedirhostname )
311 my $onepropertyline = "OFFICEDIRHOSTNAME" . "\t" . $installer::globals::officedirhostname . "\n";
314 my $localofficedirhostname = $installer::globals::officedirhostname;
320 if ( $installer::globals::desktoplinkexists )
329 if ( $installer::globals::patch )
338 if ( $installer::globals::languagepack )
367 foreach my $treecondition (keys %installer::globals::usedtreeconditions)
397 if ( $installer::globals::required_dotnet_version ne "" )
399 …my $onepropertyline = "REQUIRED_DOTNET_VERSION" . "\t" . $installer::globals::required_dotnet_vers…
458 my $properyfilename = $basedir . $installer::globals::separator . "Property.idt";
460 my $propertyfile = installer::files::read_file($properyfilename);
492 if ( $installer::globals::patch ) { set_featurename_properties_for_patch($propertyfile); }
499 installer::files::save_file($properyfilename ,$propertyfile);
501 $installer::logger::Lang->print($infoline);
516 my $properyfilename = $basedir . $installer::globals::separator . "Property.idt";
517 my $propertyfile = installer::files::read_file($properyfilename);
520 foreach my $localproperty ( keys %installer::globals::languageproperties )
522 …$onepropertyline = $localproperty . "\t" . $installer::globals::languageproperties{$localproperty…
531 if ( $installer::globals::ismultilingual ) { $ismultivalue = 1; }
538 if ($installer::globals::sofficeiconadded) # set in shortcut.pm
546 installer::files::save_file($properyfilename ,$propertyfile);
548 $installer::logger::Lang->print($infoline);
564 my $properyfilename = $basedir . $installer::globals::separator . "Property.idt";
565 my $propertyfile = installer::files::read_file($properyfilename);
571 ${$propertyfile}[$i] =~ s/\bPRODUCTCODETEMPLATE\b/$installer::globals::productcode/;
572 ${$propertyfile}[$i] =~ s/\bUPGRADECODETEMPLATE\b/$installer::globals::upgradecode/;
577 installer::files::save_file($properyfilename ,$propertyfile);
579 $installer::logger::Lang->print($infoline);
594 my $properyfilename = $basedir . $installer::globals::separator . "Property.idt";
595 my $propertyfile = installer::files::read_file($properyfilename);
600 …my $onepropertyline = "REGKEYPRODPATH" . "\t" . "Software" . "\\" . $installer::globals::manufactu…
606 installer::files::save_file($properyfilename ,$propertyfile);
608 $installer::logger::Lang->print($infoline);
623 my $checkboxfilename = $basedir . $installer::globals::separator . "CheckBox.idt";
627 my $checkboxfile = installer::files::read_file($checkboxfilename);
637 installer::files::save_file($checkboxfilename ,$checkboxfile);
639 $installer::logger::Lang->print($infoline);