1use vars qw(@c);
2@c = (
3    id => 'help',
4
5    title => 'Getting Help',
6
7    abstract => <<EOB,
8Solve your mod_perl problems: with the help of the mod_perl mailing
9lists, a mod_perl training company or a commercial support
10company. Find an ISP providing mod_perl services.
11EOB
12
13    body => {
14        top => 'index_top.html',
15    },
16
17    links => [
18           {
19             id => 'downloads',
20             link => '../download/index.html',
21             title => 'Download help',
22             abstract => 'The help with download is in the download section',
23           },
24    ],
25
26    chapters => [qw(
27           training.html
28           commercial.html
29           isps.html
30           irc.pod
31           help_with_site.pod
32    )],
33
34
35);
36