stas 02/01/05 11:26:02
Added: src/docs config.cfg
src/docs/2.0/devel config.cfg
src/docs/2.0/user config.cfg
src/docs/2.0/world config.cfg
Log:
- config files
Revision Changes Path
1.1 modperl-docs/src/docs/config.cfg
Index: config.cfg
===================================================================
use vars qw(@c);
@c = (
id => 'docs',
title => "Documentation",
abstract => 'Tons of documents for you to learn from',
group => 'mod_perl 1.x Documentation',
docsets => [
# '1.0/guide',
'1.0/win32',
'1.0/faqs',
'1.0/api',
],
group => 'mod_perl 2.x Documentation',
docsets => [
'2.0/user',
'2.0/api',
'2.0/devel',
'2.0/world',
],
);
1.1 modperl-docs/src/docs/2.0/devel/config.cfg
Index: config.cfg
===================================================================
use vars qw(@c);
@c = (
id => 'devel_guide',
title => "mod_perl Developer's guide",
abstract => 'This guide is aimed for mod_perl core and 3rd party
modules developers',
chapters => [
qw(
porting_from_1.x/porting_from_1.x.pod
testing/testing.pod
core_explained/core_explained.pod
modperl_style/modperl_style.pod
)
],
);
1.1 modperl-docs/src/docs/2.0/user/config.cfg
Index: config.cfg
===================================================================
use vars qw(@c);
@c = (
id => 'user_guide',
title => "mod_perl User's guide",
abstract => 'Put some abstract here',
group => 'Installation',
chapters => [
qw(
intro/start_fast.pod
install/install.pod
)
],
group => 'Coding Techniques',
chapters => ['coding/coding.pod'],
);
1.1 modperl-docs/src/docs/2.0/world/config.cfg
Index: config.cfg
===================================================================
use vars qw(@c);
@c = (
id => 'world',
title => "mod_perl related tutorials",
abstract => 'mod_perl developers have to deal with many other
technologies
on the way. This set of documents covers some of these
technologies from the mod_perl perspective and in
general.',
chapters => [
qw(
templates/choosing.pod
),
],
);
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]