File: deHTML_comment.pm

package info (click to toggle)
razor 1%3A2.85-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 848 kB
  • sloc: perl: 4,694; ansic: 178; makefile: 19; sh: 3
file content (42 lines) | stat: -rw-r--r-- 574 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package Razor2::Preproc::deHTML_comment;


sub new { 

    my $class = shift;
    return bless {}, $class;

}


sub isit {

    my ($self, $text) = @_;
    my $isit = 0;
    my ($hdr, $body) = split /\n\r*\n/, $$text, 2;

    return 0 unless $body;

    $isit = $body =~ /(?:<HTML>|<BODY|<FONT|<A HREF)/ism;
    return $isit if $isit;

    $isit = $hdr =~ m"^Content-Type: text/html"ism;
    return $isit;

}


sub doit {

    my ($self, $text) = @_;
    my ($hdr, $body) = split /\n\r*\n/, $$text, 2;

    $body =~ s/<!--.*?-->//gs;

    $$text = "$hdr\n\n$body";

}


1;