Home | History | Annotate | Download | only in Scripts

Lines Matching refs:HTML

29 # Script to generate HTML wrappers for JavaScript tests from templates
67 if ($tpath =~ s:/(script-tests)/TEMPLATE.html$::) {
69 $templateRelativePath = $1 . "/TEMPLATE.html";
91 if (-e "${templateDirectory}/TEMPLATE-n.html") {
92 open TEMPLATE, "<${templateDirectory}/TEMPLATE-n.html";
98 my $html = $file;
99 $html =~ s:${templateDirectory}/(.*)\.js:$1.html:;
100 next if -f "$html-disabled";
108 print " ${html}\n";
109 open HTML, ">$html";
112 print HTML $output;
114 close HTML;
135 push @templateFiles, $File::Find::name if $_ eq "TEMPLATE.html";