1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
use vars qw(@c);
@c = (
id => 'user_guide_2.0',
title => "User's guide",
abstract => <<EOB,
All you need to know about using mod_perl 2.0
EOB
group => 'Introduction',
chapters => [qw(
intro/start_fast.pod
intro/overview.pod
design/design.pod
)],
group => 'Installation',
chapters => [qw(
install/install.pod
config/config.pod
config/custom.pod
)],
group => 'Coding',
chapters => [qw(
coding/coding.pod
coding/cooking.pod
)],
group => 'Porting',
chapters => [qw(
porting/porting.pod
porting/compat.pod
)],
group => 'mod_perl Handlers',
chapters => [qw(
handlers/intro.pod
handlers/server.pod
handlers/protocols.pod
handlers/http.pod
handlers/filters.pod
handlers/general.pod
)],
group => 'Performance',
chapters => [qw(
performance/prevent.pod
performance/mpm.pod
)],
group => 'Troubleshooting',
chapters => [ qw(
troubleshooting/troubleshooting.pod
help/help.pod
)],
copy_glob => [qw(
porting/code
handlers/*.gif
handlers/*.jpg
)],
changes => 'Changes.pod',
);
|