Home | History | Annotate | Download | only in collationperf

Lines Matching refs:HTML

140 # Print the results in a HTML page
148 my $html = localtime;
149 $html =~ s/://g; # ':' illegal
150 $html =~ s/\s*\d+$//; # delete year
151 $html =~ s/^\w+\s*//; # delete dow
152 $html = "CollationPerformance $html.html";
153 $html = "../results/" . $html;
154 $html =~ s/ /_/g;
155 open( HTML, ">$html" ) or die "Can't write to $html: $!";
156 print HTML <<EOF;
157 ?<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
159 <html xmlns="http://www.w3.org/1999/xhtml">
161 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
166 <!--#include virtual="../ssi/header.html" -->
169 print HTML "<h2>Collation: ICU4C ".$ICULatestVersion." vs. GLIBC</h2>\n";
171 print HTML <<EOF;
209 print HTML <<EOF;
220 "/userguide/Collate_Intro.html">User Guide</a>.</li>
221 <li>For information on APIs, see <a href="/apiref/icu4c/ucol_8h.html">C</a>,
222 <a href="/apiref/icu4c/classCollator.html">C++</a>, or <a href=
223 "/apiref/icu4j/com/ibm/icu/text/Collator.html">Java</a>.</li>
225 <!--#include virtual="../ssi/footer.html" -->
227 </html>
231 close(HTML) or die "Can't close $html: $!";
236 print HTML <<EOF;
255 print HTML "<tr>";
259 print HTML "<td align=\"center\">";
262 print HTML "<font color=\"red\">$value</font>";
265 print HTML "$value";
268 print HTML "</td>";
271 print HTML "</tr>\n";
274 print HTML<<EOF;