line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package CGI::Ex::Recipes::View; |
2
|
1
|
|
|
1
|
|
1235
|
use utf8; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
10
|
|
3
|
1
|
|
|
1
|
|
30
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
29
|
|
4
|
1
|
|
|
1
|
|
6
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
35
|
|
5
|
1
|
|
|
1
|
|
5
|
use base qw(CGI::Ex::Recipes); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
89
|
|
6
|
1
|
|
|
1
|
|
7
|
use CGI::Ex::Dump qw(debug dex_warn ctrace dex_trace); |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
187
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.3'; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
sub hash_common { |
10
|
0
|
|
|
0
|
1
|
|
my $self = shift; |
11
|
0
|
|
|
|
|
|
require CGI::Ex::Recipes::Edit; |
12
|
|
|
|
|
|
|
#dex_trace; debug $self; |
13
|
0
|
|
|
|
|
|
$self->CGI::Ex::Recipes::Edit::hash_common(@_); |
14
|
|
|
|
|
|
|
} |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
1; # End of CGI::Ex::Recipes::View |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 NAME |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
CGI::Ex::Recipes::View - reads and displays a recipe! |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 VERSION |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Version 0.03 |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 SYNOPSIS |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
no synopsis |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
... |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 METHOSDS |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 hash_common |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 AUTHOR |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Красимир Беров, C<< >> |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
Copyright 2007 Красимир Беров, all rights reserved. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
46
|
|
|
|
|
|
|
under the same terms as Perl itself. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=cut |