/[formed]/trunk/tools/anonym/html.awk
ViewVC logotype

Annotation of /trunk/tools/anonym/html.awk

Parent Directory Parent Directory | Revision Log Revision Log


Revision 240 - (hide annotations)
Tue Feb 26 14:14:15 2008 UTC (17 years ago) by teichmann
File size: 303 byte(s)
XML import: implementes logic to create/update cases.


1 teichmann 236 BEGIN {
2     print "<html><body><table border>"
3     FS = "\t"
4     }
5     { printf("<tr>");
6     for (i = 1; i <= NF; ++i) {
7     if (i > 1) {
8     printf("</td>")
9     }
10     out = $i == "" ? "&nbsp;" : $i
11     printf("<td>%s", out)
12     }
13     printf("</td></tr>\n")
14     }
15     END {
16 teichmann 240 print "</table></body></html>"
17 teichmann 236 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26