| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Newsletter::Html::CSS; |
|
2
|
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
1967
|
use warnings; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
39
|
|
|
4
|
|
|
|
|
|
|
|
|
5
|
1
|
|
|
1
|
|
6
|
use strict; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
32
|
|
|
6
|
1
|
|
|
1
|
|
5
|
use Exporter; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
46
|
|
|
7
|
1
|
|
|
1
|
|
5
|
use vars qw(@ISA @EXPORT $CSS); |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
182
|
|
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
@ISA = qw(Exporter); |
|
10
|
|
|
|
|
|
|
@EXPORT = qw( $CSS ); |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
$CSS = qq~ |
|
14
|
|
|
|
|
|
|
|
|
133
|
|
|
|
|
|
|
~; |
|
134
|
|
|
|
|
|
|
|
|
135
|
|
|
|
|
|
|
|
|
136
|
|
|
|
|
|
|
|
|
137
|
|
|
|
|
|
|
=head1 NAME |
|
138
|
|
|
|
|
|
|
|
|
139
|
|
|
|
|
|
|
Newsletter::Html::CSS - Newsletter CSS! |
|
140
|
|
|
|
|
|
|
|
|
141
|
|
|
|
|
|
|
=head1 VERSION |
|
142
|
|
|
|
|
|
|
|
|
143
|
|
|
|
|
|
|
Version 0.01 |
|
144
|
|
|
|
|
|
|
|
|
145
|
|
|
|
|
|
|
=cut |
|
146
|
|
|
|
|
|
|
|
|
147
|
|
|
|
|
|
|
our $VERSION = '0.01'; |
|
148
|
|
|
|
|
|
|
|
|
149
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
150
|
|
|
|
|
|
|
|
|
151
|
|
|
|
|
|
|
CSS for the newsletter module |
|
152
|
|
|
|
|
|
|
|
|
153
|
|
|
|
|
|
|
Perhaps a little code snippet. |
|
154
|
|
|
|
|
|
|
|
|
155
|
|
|
|
|
|
|
use Newsletter::Html::CSS; |
|
156
|
|
|
|
|
|
|
|
|
157
|
|
|
|
|
|
|
my $foo = Newsletter::Html::CSS->new(); |
|
158
|
|
|
|
|
|
|
... |
|
159
|
|
|
|
|
|
|
|
|
160
|
|
|
|
|
|
|
=head1 EXPORT |
|
161
|
|
|
|
|
|
|
|
|
162
|
|
|
|
|
|
|
=head1 AUTHOR |
|
163
|
|
|
|
|
|
|
|
|
164
|
|
|
|
|
|
|
Dominik Hochreiter, C<< >> |
|
165
|
|
|
|
|
|
|
|
|
166
|
|
|
|
|
|
|
=head1 BUGS |
|
167
|
|
|
|
|
|
|
|
|
168
|
|
|
|
|
|
|
Please report any bugs or feature requests to |
|
169
|
|
|
|
|
|
|
C, or through the web interface at |
|
170
|
|
|
|
|
|
|
L. |
|
171
|
|
|
|
|
|
|
I will be notified, and then you'll automatically be notified of progress on |
|
172
|
|
|
|
|
|
|
your bug as I make changes. |
|
173
|
|
|
|
|
|
|
|
|
174
|
|
|
|
|
|
|
=head1 SUPPORT |
|
175
|
|
|
|
|
|
|
|
|
176
|
|
|
|
|
|
|
You can find documentation for this module with the perldoc command. |
|
177
|
|
|
|
|
|
|
|
|
178
|
|
|
|
|
|
|
perldoc Newsletter |
|
179
|
|
|
|
|
|
|
|
|
180
|
|
|
|
|
|
|
You can also look for information at: |
|
181
|
|
|
|
|
|
|
|
|
182
|
|
|
|
|
|
|
=over 4 |
|
183
|
|
|
|
|
|
|
|
|
184
|
|
|
|
|
|
|
=item * AnnoCPAN: Annotated CPAN documentation |
|
185
|
|
|
|
|
|
|
|
|
186
|
|
|
|
|
|
|
L |
|
187
|
|
|
|
|
|
|
|
|
188
|
|
|
|
|
|
|
=item * CPAN Ratings |
|
189
|
|
|
|
|
|
|
|
|
190
|
|
|
|
|
|
|
L |
|
191
|
|
|
|
|
|
|
|
|
192
|
|
|
|
|
|
|
=item * RT: CPAN's request tracker |
|
193
|
|
|
|
|
|
|
|
|
194
|
|
|
|
|
|
|
L |
|
195
|
|
|
|
|
|
|
|
|
196
|
|
|
|
|
|
|
=item * Search CPAN |
|
197
|
|
|
|
|
|
|
|
|
198
|
|
|
|
|
|
|
L |
|
199
|
|
|
|
|
|
|
|
|
200
|
|
|
|
|
|
|
=back |
|
201
|
|
|
|
|
|
|
|
|
202
|
|
|
|
|
|
|
=head1 ACKNOWLEDGEMENTS |
|
203
|
|
|
|
|
|
|
|
|
204
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
|
205
|
|
|
|
|
|
|
|
|
206
|
|
|
|
|
|
|
Copyright 2006 Dominik Hochreiter, all rights reserved. |
|
207
|
|
|
|
|
|
|
|
|
208
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
|
209
|
|
|
|
|
|
|
under the same terms as Perl itself. |
|
210
|
|
|
|
|
|
|
|
|
211
|
|
|
|
|
|
|
=cut |
|
212
|
|
|
|
|
|
|
|
|
213
|
|
|
|
|
|
|
1; # End of Newsletter::Html::CSS |