line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
1
|
|
|
1
|
|
4033
|
use 5.008; |
|
1
|
|
|
|
|
6
|
|
|
1
|
|
|
|
|
43
|
|
2
|
1
|
|
|
1
|
|
5
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
25
|
|
3
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
43
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
package Text::Pipe::Encoding::QuotedPrint::Decode; |
6
|
|
|
|
|
|
|
BEGIN { |
7
|
1
|
|
|
1
|
|
21
|
$Text::Pipe::Encoding::QuotedPrint::Decode::VERSION = '1.101700'; |
8
|
|
|
|
|
|
|
} |
9
|
|
|
|
|
|
|
# ABSTRACT: Text pipe that can decode quoted-printable strings |
10
|
1
|
|
|
1
|
|
5
|
use MIME::QuotedPrint 3.09; |
|
1
|
|
|
|
|
18
|
|
|
1
|
|
|
|
|
57
|
|
11
|
1
|
|
|
1
|
|
5
|
use parent qw(Text::Pipe::Encoding); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub filter_single { |
14
|
42
|
|
|
42
|
1
|
24786
|
my ($self, $input) = @_; |
15
|
42
|
|
|
|
|
406
|
decode_qp($input); |
16
|
|
|
|
|
|
|
} |
17
|
|
|
|
|
|
|
1; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
__END__ |