Lines Matching refs:tag

130 …my $tag = $indent . "<package " . "name=" . "\"" . $modulegid . "\" " . "parent=" . "\"" . $parent…
132 return ( $tag, $parentgid );
158 my $tag = $indent . "<display " . "type=" . "\"" . $type . "\"" . ">" . "\n";
160 return $tag;
173 my $tag = $indent . "<installunit " . "type=" . "\"" . $type . "\"" . ">" . "\n";
175 return $tag;
184 my ( $tag, $indent ) = @_;
186 my $starttag = $indent . "<" . $tag . ">" . "\n";
196 my ( $tag, $indent ) = @_;
198 my $endtag = $indent . "</" . $tag . ">" . "\n";
963 my $tag = $indent . "<product " . "name=" . "\"" . $productname . "\">" . "\n";
965 return $tag;
995 my $tag = $indent . "<macro " . "key=" . "\"" . $key . "\">" . $value . "\<\/macro\>" . "\n";
997 return $tag;
1015 my $tag = $indent . "<productminor>" . $productminor . "</productminor>" . "\n";
1017 return $tag;
1030 my $tag = $indent . "<dontupdate>" . $updateflag . "</dontupdate>" . "\n";
1032 return $tag;
1045 my $tag = $indent . "<hideeula>" . $hidelicenseflag . "</hideeula>" . "\n";
1047 return $tag;
1060 my $tag = $indent . "<defaultdir>" . $defaultdir . "</defaultdir>" . "\n";
1062 return $tag;
1091 my $tag = $indent . "<productdir>" . $productdir . "</productdir>" . "\n";
1093 return $tag;
1104 …my $tag = $indent . "<packagedirectory>" . $installer::globals::epmoutpath . "</packagedirectory>"…
1106 return $tag;
1117 …my $tag = $indent . "<packageformat>" . $installer::globals::packageformat . "</packageformat>" . …
1119 return $tag;
1134 my $tag = $indent . "<architecture>" . $architecture . "</architecture>" . "\n";
1136 return $tag;
1150 my $tag = $indent . "<multilingual>" . $value . "</multilingual>" . "\n";
1152 return $tag;
1163 my $tag = $indent . "<languages>" . $$languagestringref . "</languages>" . "\n";
1165 return $tag;
1197 my $tag = get_product_tag($allvariables, $noindent);
1198 push(@xpdfile, $tag);
1200 $tag = set_macro_tag($allvariables, $singleindent, "product_name");
1201 push(@xpdfile, $tag);
1202 $tag = set_macro_tag($allvariables, $singleindent, "product_version");
1203 push(@xpdfile, $tag);
1204 $tag = set_macro_tag($allvariables, $singleindent, "product_suffix");
1205 push(@xpdfile, $tag);
1206 $tag = set_macro_tag($allvariables, $singleindent, "product_fullname");
1207 push(@xpdfile, $tag);
1209 $tag = set_defaultdir_tag($allvariables, $singleindent);
1210 push(@xpdfile, $tag);
1212 $tag = set_productdir_tag($allvariables, $singleindent);
1213 push(@xpdfile, $tag);
1215 $tag = set_minor_tag($allvariables, $singleindent);
1216 push(@xpdfile, $tag);
1218 $tag = set_update_tag($allvariables, $singleindent);
1219 push(@xpdfile, $tag);
1221 $tag = set_packagedir_tag($singleindent);
1222 push(@xpdfile, $tag);
1224 $tag = set_packagetype_tag($singleindent);
1225 push(@xpdfile, $tag);
1227 $tag = set_architecture_tag($singleindent);
1228 push(@xpdfile, $tag);
1230 $tag = set_multilanguage_tag($singleindent);
1231 push(@xpdfile, $tag);
1233 $tag = set_language_tag($languagestringref, $singleindent);
1234 push(@xpdfile, $tag);
1236 $tag = set_hideeula_tag($allvariables, $singleindent);
1237 push(@xpdfile, $tag);
1239 $tag = get_end_tag("product", $noindent);
1240 push(@xpdfile, $tag);
1260 my ( $tag, $parentgid ) = get_package_tag($module, $noindent, $linkpackage);
1261 push(@xpdfile, $tag);
1265 $tag = get_display_tag($module, $singleindent);
1266 push(@xpdfile, $tag);
1324 $tag = get_end_tag("display", $singleindent);
1325 push(@xpdfile, $tag);
1333 $tag = get_installunit_tag($singleindent);
1334 push(@xpdfile, $tag);
1379 $tag = get_end_tag("installunit", $singleindent);
1380 push(@xpdfile, $tag);
1385 $tag = get_end_tag("package", $noindent);
1386 push(@xpdfile, $tag);