create http links
[webpac] / back2html.pm
1 #
2 # reformat html inside xml back to html (basically, support for tables)
3 #
4 # filed #-# field ###
5 # ...
6
7 sub back2html {
8         my $html = shift;
9
10         my $out;
11         foreach $line (split(/###/,$html)) {
12                 $out .= "<tr><td>";
13                 my @items = split(/#-#/,$line);
14                 if ($items[1] =~ m#^http://#) {
15                         $items[1] = "<a href=\"$items[1]\">$items[1]</a>";
16                 }
17                 $out .= join("</td><td>",@items);
18                 $out .= "</td></tr>\n";
19         }
20         $out =~ s/&lt;br\/*&gt;/<br\/>/g;
21         return $out;
22 }
23
24 1;