line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
=head1 NAME |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
Module::Build::Database::PostgreSQL::Templates - PostgreSQL documentation templates |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
=head1 DESCRIPTION |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
Templates used to generate documentation for a postgres database. |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=cut |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
package Module::Build::Database::PostgreSQL::Templates; |
12
|
|
|
|
|
|
|
our $VERSION = '0.56'; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
sub filenames { |
15
|
0
|
|
|
0
|
0
|
|
return qw/header.tmpl footer.tmpl html.tmpl pod.tmpl dot.tmpl/; |
16
|
|
|
|
|
|
|
} |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
sub file_contents { |
19
|
0
|
|
|
0
|
0
|
|
my $class = shift; |
20
|
0
|
|
|
|
|
|
my $filename = shift; |
21
|
0
|
|
|
|
|
|
our %contents; |
22
|
0
|
|
|
|
|
|
return $contents{$filename}; |
23
|
|
|
|
|
|
|
} |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
our %contents = ( "footer.tmpl" => <<'END_FOOTER', "header.tmpl" =><< 'END_HEADER', "html.tmpl" =><<'END_HTML', "pod.tmpl" =><< 'END_POD', "dot.tmpl" =><< 'END_DOT' ); |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|