line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
###############################################################################
|
2
|
|
|
|
|
|
|
#importloop.pm
|
3
|
|
|
|
|
|
|
#Last Change: 2009-01-21
|
4
|
|
|
|
|
|
|
#Copyright (c) 2009 Marc-Seabstian "Maluku" Lucksch
|
5
|
|
|
|
|
|
|
#Version 0.2
|
6
|
|
|
|
|
|
|
####################
|
7
|
|
|
|
|
|
|
#This file is an addon to the Dotiac::DTL project.
|
8
|
|
|
|
|
|
|
#http://search.cpan.org/perldoc?Dotiac::DTL
|
9
|
|
|
|
|
|
|
#
|
10
|
|
|
|
|
|
|
#importloop.pm is published under the terms of the MIT license, which
|
11
|
|
|
|
|
|
|
#basically means "Do with it whatever you want". For more information, see the
|
12
|
|
|
|
|
|
|
#license.txt file that should be enclosed with libsofu distributions. A copy of
|
13
|
|
|
|
|
|
|
#the license is (at the time of writing) also available at
|
14
|
|
|
|
|
|
|
#http://www.opensource.org/licenses/mit-license.php .
|
15
|
|
|
|
|
|
|
###############################################################################
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
package Dotiac::DTL::Addon::importloop;
|
19
|
1
|
|
|
1
|
|
137433
|
use strict;
|
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
64
|
|
20
|
1
|
|
|
1
|
|
5
|
use warnings;
|
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
103
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
require Dotiac::DTL::Tag::importloop;
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
our $VERSION=0.2;
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
1;
|
27
|
|
|
|
|
|
|
__END__
|