Home | History | Annotate | Download | only in collationperf

Lines Matching refs:html

4 #  * License & terms of use: http://www.unicode.org/copyright.html#License
143 # Print the results in a HTML page
151 my $html = localtime;
152 $html =~ s/://g; # ':' illegal
153 $html =~ s/\s*\d+$//; # delete year
154 $html =~ s/^\w+\s*//; # delete dow
155 $html = "CollationPerformance $html.html";
156 $html = "../results/" . $html;
157 $html =~ s/ /_/g;
158 open( HTML, ">$html" ) or die "Can't write to $html: $!";
159 print HTML <<EOF;
160 ?<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
162 <html xmlns="http://www.w3.org/1999/xhtml">
164 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
169 <!--#include virtual="../ssi/header.html" -->
172 print HTML "<h2>Collation: ICU4C ".$ICULatestVersion." vs. GLIBC</h2>\n";
174 print HTML <<EOF;
212 print HTML <<EOF;
223 "/userguide/Collate_Intro.html">User Guide</a>.</li>
224 <li>For information on APIs, see <a href="/apiref/icu4c/ucol_8h.html">C</a>,
225 <a href="/apiref/icu4c/classCollator.html">C++</a>, or <a href=
226 "/apiref/icu4j/com/ibm/icu/text/Collator.html">Java</a>.</li>
228 <!--#include virtual="../ssi/footer.html" -->
230 </html>
234 close(HTML) or die "Can't close $html: $!";
239 print HTML <<EOF;
258 print HTML "<tr>";
262 print HTML "<td align=\"center\">";
265 print HTML "<font color=\"red\">$value</font>";
268 print HTML "$value";
271 print HTML "</td>";
274 print HTML "</tr>\n";
277 print HTML<<EOF;