/[webpac]/trunk/back2html.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/back2html.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 72 - (show annotations)
Sat Jul 5 22:03:21 2003 UTC (20 years, 8 months ago) by dpavlin
File size: 603 byte(s)
fixed warning

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://[\S]+)\s*.*?#i) {
15 # chop URLS longer than 60 characters
16 my $url = substr($1,0,60);
17 $url .= "..." if (length($1) > 60);
18 $items[1] =~ s#(.*)\b(http://[\S]+)(\b?.*)#$1<a href=\"$2\">$url</a>$3#g;
19 }
20 $out .= join("</td><td>",@items);
21 $out .= "</td></tr>\n";
22 }
23 $out =~ s/&lt;br\/*&gt;/<br\/>/g;
24 return $out;
25 }
26
27 1;

Properties

Name Value
cvs2svn:cvs-rev 1.7

  ViewVC Help
Powered by ViewVC 1.1.26