stas 02/03/20 09:44:04
Modified: src/docs/2.0/devel config.cfg
src/docs/2.0/devel/core_explained core_explained.pod
src/docs/2.0/devel/debug_c debug_c.pod
src/docs/2.0/devel/debug_perl debug_perl.pod
src/docs/2.0/devel/help help.pod
src/docs/2.0/devel/modperl_style modperl_style.pod
src/docs/2.0/devel/perf_sizeof perf_sizeof.pod
src/docs/2.0/devel/porting_from_1.x porting_from_1.x.pod
src/docs/2.0/devel/testing testing.pod
src/docs/2.0/user config.cfg
src/docs/2.0/user/coding coding.pod
src/docs/2.0/user/compat compat.pod
src/docs/2.0/user/config config.pod
src/docs/2.0/user/design design.pod
src/docs/2.0/user/help help.pod
src/docs/2.0/user/install install.pod
src/docs/2.0/user/intro start_fast.pod
src/docs/2.0/user/overview overview.pod
src/docs/2.0/world config.cfg
src/docs/2.0/world/templates choosing.pod
Added: src/docs/2.0/devel Changes.pod
src/docs/2.0/user Changes.pod
src/docs/2.0/world Changes.pod
Log:
- using a consistent pages layout
- adding the Description header where needed (for the benefit of index
pages)
- adding the Changes.pod file for the docsets
Revision Changes Path
1.6 +36 -31 modperl-docs/src/docs/2.0/devel/config.cfg
Index: config.cfg
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/devel/config.cfg,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- config.cfg 18 Mar 2002 07:27:35 -0000 1.5
+++ config.cfg 20 Mar 2002 17:44:03 -0000 1.6
@@ -1,40 +1,45 @@
use vars qw(@c);
@c = (
+ id => 'devel_guide',
- id => 'devel_guide',
+ title => "mod_perl 2.0 Developer's guide",
- title => "mod_perl 2.0 Developer's guide",
-
- abstract => <<EOB,
+ abstract => <<EOB,
This guide is aimed for mod_perl 2.0 core and 3rd party modules developers.
EOB
- group => 'mod_perl 2.0 Core Development',
- chapters => [qw(
- core_explained/core_explained.pod
- modperl_style/modperl_style.pod
- perf_sizeof/perf_sizeof.pod
- )],
-
- group => '3rd party modules Development with mod_perl 2.0',
- chapters => [qw(
- porting_from_1.x/porting_from_1.x.pod
- debug_perl/debug_perl.pod
- debug_c/debug_c.pod
- )],
-
- group => 'Testing',
- chapters => [qw(
- testing/testing.pod
- )],
-
- group => 'Help',
- chapters => [qw(
- help/help.pod
- )],
-
- copy_glob => [qw(
- debug_c/code
- )],
+ group => 'mod_perl 2.0 Core Development',
+ chapters => [qw(
+ core_explained/core_explained.pod
+ modperl_style/modperl_style.pod
+ perf_sizeof/perf_sizeof.pod
+ )],
+
+ group => '3rd party modules Development with mod_perl 2.0',
+ chapters => [qw(
+ porting_from_1.x/porting_from_1.x.pod
+ debug_perl/debug_perl.pod
+ debug_c/debug_c.pod
+ )],
+
+ group => 'Testing',
+ chapters => [qw(
+ testing/testing.pod
+ )],
+
+ group => 'Help',
+ chapters => [qw(
+ help/help.pod
+ )],
+
+ group => 'Miscellaneous',
+ chapters => [qw(
+ Changes.pod
+ )],
+
+ copy_glob => [qw(
+ debug_c/code
+ )],
+
);
1.1 modperl-docs/src/docs/2.0/devel/Changes.pod
Index: Changes.pod
===================================================================
=head1 NAME
CHANGES
=head1 Description
Refer to this document to learn what changes were made to the
documents, since you've read these last time.
The most recent changes are listed first.
=head1 Wed Mar 20 21:20:20 SGT 2002
* devel::testing::testing:
o add the info for differentiating between httpd-1.x and httpd-2.x
in C code. [Gary Benson E<lt>[EMAIL PROTECTED]<gt>]
* devel::debug_c::debug_c:
o Add Solaris core dumping instructions [Kyle Oppenheim
E<lt>[EMAIL PROTECTED]<gt>]
* devel::benchmark::benchmark:
o 'sv_catpvn vs. fprintf' and 'backticks vs XS' benchmarks [Doug
MacEachern]
* devel::modperl_style::modperl_style
o Corrections from Tim Henigan [E<lt>[EMAIL PROTECTED]<gt>]
=cut
1.19 +12 -1
modperl-docs/src/docs/2.0/devel/core_explained/core_explained.pod
Index: core_explained.pod
===================================================================
RCS file:
/home/cvs/modperl-docs/src/docs/2.0/devel/core_explained/core_explained.pod,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- core_explained.pod 20 Mar 2002 07:10:21 -0000 1.18
+++ core_explained.pod 20 Mar 2002 17:44:03 -0000 1.19
@@ -2,6 +2,12 @@
mod_perl 2.0 Source Code Explained
+=head1 Description
+
+This document explains the how to navigate around the mod_perl source
+code, modify and rebuild the existing code and of course how to write
+new code and easily plug it in.
+
=head1 Project's Layout
In its pristine state the project is comprised of the following root
@@ -1093,8 +1099,13 @@
=over
-=item * Stas Bekman E<lt>stas (at) stason.orgE<gt>
+=item *
+
+Stas Bekman E<lt>stas (at) stason.orgE<gt>
=back
+
+Only the major authors are listed above. For contributors see the
+Changes file.
=cut
1.6 +8 -2 modperl-docs/src/docs/2.0/devel/debug_c/debug_c.pod
Index: debug_c.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/devel/debug_c/debug_c.pod,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- debug_c.pod 18 Mar 2002 16:31:15 -0000 1.5
+++ debug_c.pod 20 Mar 2002 17:44:03 -0000 1.6
@@ -2,6 +2,10 @@
Debugging mod_perl C Internals
+=head1 Description
+
+FIXME: DESCRIPTION
+
=head1 Debug notes
META: needs more organization
@@ -720,12 +724,14 @@
=over
-=item * Stas Bekman E<lt>stas (at) stason.orgE<gt>
+=item *
-=item * Kyle Oppenheim E<lt>kyleo (at) tellme.comE<gt>
+Stas Bekman E<lt>stas (at) stason.orgE<gt>
=back
+Only the major authors are listed above. For contributors see the
+Changes file.
=cut
1.3 +15 -1 modperl-docs/src/docs/2.0/devel/debug_perl/debug_perl.pod
Index: debug_perl.pod
===================================================================
RCS file:
/home/cvs/modperl-docs/src/docs/2.0/devel/debug_perl/debug_perl.pod,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- debug_perl.pod 27 Dec 2001 12:07:53 -0000 1.2
+++ debug_perl.pod 20 Mar 2002 17:44:03 -0000 1.3
@@ -2,20 +2,34 @@
Debugging mod_perl Perl Internals
+=head1 Description
+
+FIXME: DESCRIPTION
+
=head1 Maintainers
Maintainer is the person(s) you should contact with updates,
corrections and patches.
+=over
+
+=item *
+
Stas Bekman E<lt>stas (at) stason.orgE<gt>
+=back
+
=head1 Authors
=over
-=item * Stas Bekman E<lt>stas (at) stason.orgE<gt>
+=item *
+
+Stas Bekman E<lt>stas (at) stason.orgE<gt>
=back
+Only the major authors are listed above. For contributors see the
+Changes file.
=cut
1.6 +8 -3 modperl-docs/src/docs/2.0/devel/help/help.pod
Index: help.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/devel/help/help.pod,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- help.pod 27 Feb 2002 18:03:38 -0000 1.5
+++ help.pod 20 Mar 2002 17:44:03 -0000 1.6
@@ -2,12 +2,12 @@
Getting Help with mod_perl 2.0 Core Development
-=head1 Introduction
+=head1 Description
This document covers the resources available to the mod_perl 2.0 core
developer. Please notice that you probably want to read the L<user's
help documentation|user::help::help> if you have problems using
-mod_perl.
+mod_perl 2.0.
The following mailing lists and resources can be of a major interest
to the mod_perl 2.0 developers.
@@ -233,10 +233,15 @@
=over
-=item * Stas Bekman E<lt>stas (at) stason.orgE<gt>
+=item *
+
+Stas Bekman E<lt>stas (at) stason.orgE<gt>
=item *
=back
+
+Only the major authors are listed above. For contributors see the
+Changes file.
=cut
1.7 +13 -3
modperl-docs/src/docs/2.0/devel/modperl_style/modperl_style.pod
Index: modperl_style.pod
===================================================================
RCS file:
/home/cvs/modperl-docs/src/docs/2.0/devel/modperl_style/modperl_style.pod,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- modperl_style.pod 3 Jan 2002 12:56:32 -0000 1.6
+++ modperl_style.pod 20 Mar 2002 17:44:03 -0000 1.7
@@ -2,6 +2,11 @@
mod_perl Code Development Style Guide
+=head1 Description
+
+This document explains the coding style used in the core mod_perl
+development.
+
=head1 Coding Style Guide
We try hard to code mod_perl using an identical style. Because
@@ -323,13 +328,18 @@
=over
-=item * Stas Bekman E<lt>stas (at) stason.orgE<gt>
+=item *
-=item * Doug MacEachernE<lt>dougm (at) covalent.netE<gt>
+Doug MacEachernE<lt>dougm (at) covalent.netE<gt>
-=item * Tim Henigan E<lt>t.henigan (at) verizon.netE<gt>
+=item *
+
+Stas Bekman E<lt>stas (at) stason.orgE<gt>
=back
+
+Only the major authors are listed above. For contributors see the
+Changes file.
=cut
1.3 +10 -2
modperl-docs/src/docs/2.0/devel/perf_sizeof/perf_sizeof.pod
Index: perf_sizeof.pod
===================================================================
RCS file:
/home/cvs/modperl-docs/src/docs/2.0/devel/perf_sizeof/perf_sizeof.pod,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- perf_sizeof.pod 27 Dec 2001 08:22:25 -0000 1.2
+++ perf_sizeof.pod 20 Mar 2002 17:44:03 -0000 1.3
@@ -2,7 +2,7 @@
Measure C<sizeof> of Perl's C Structures
-=head1 DESCRIPTION
+=head1 Description
This document describes the I<sizeof> various structures, as
determined by I<util/sizeof.pl>. These measurements are mainly for
@@ -190,13 +190,21 @@
Maintainer is the person(s) you should contact with updates,
corrections and patches.
+=over
+
+=item *
+
Doug MacEachern E<lt>dougm (at) covalent.netE<gt>
+=back
+
=head1 Authors
=over
-=item * Doug MacEachern E<lt>dougm (at) covalent.netE<gt>
+=item *
+
+Doug MacEachern E<lt>dougm (at) covalent.netE<gt>
=back
1.5 +10 -3
modperl-docs/src/docs/2.0/devel/porting_from_1.x/porting_from_1.x.pod
Index: porting_from_1.x.pod
===================================================================
RCS file:
/home/cvs/modperl-docs/src/docs/2.0/devel/porting_from_1.x/porting_from_1.x.pod,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- porting_from_1.x.pod 27 Feb 2002 18:03:38 -0000 1.4
+++ porting_from_1.x.pod 20 Mar 2002 17:44:03 -0000 1.5
@@ -2,7 +2,7 @@
Porting Modules from mod_perl 1.x to 2.x
-=head1 Introduction
+=head1 Description
If you have released an C<Apache::Foo> module on CPAN you may wonder
what steps you should take to make your code working under 2.x while
@@ -97,10 +97,17 @@
=over
-=item * Stas Bekman E<lt>stas (at) stason.orgE<gt>
+=item *
-=item * Doug MacEachern E<lt>dougm (at) covalent.netE<gt>
+Stas Bekman E<lt>stas (at) stason.orgE<gt>
+
+=item *
+
+Doug MacEachern E<lt>dougm (at) covalent.netE<gt>
=back
+
+Only the major authors are listed above. For contributors see the
+Changes file.
=cut
1.16 +13 -2 modperl-docs/src/docs/2.0/devel/testing/testing.pod
Index: testing.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/devel/testing/testing.pod,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- testing.pod 11 Mar 2002 10:18:10 -0000 1.15
+++ testing.pod 20 Mar 2002 17:44:03 -0000 1.16
@@ -4,6 +4,8 @@
=head1 Description
+The title is self-explanatory :)
+
The C<Apache::Test> framework was designed for creating test suits for
products running on Apache httpd webserver (not necessarily
mod_perl). Originally designed for the mod_perl Apache module, it was
@@ -2638,16 +2640,25 @@
Maintainer is the person(s) you should contact with updates,
corrections and patches.
+=over
+
+=item *
+
Stas Bekman E<lt>stas (at) stason.orgE<gt>
+=back
+
=head1 Authors
=over
-=item * Gary Benson E<lt>gbenson (at) redhat.comE<gt>
+=item *
-=item * Stas Bekman E<lt>stas (at) stason.orgE<gt>
+Stas Bekman E<lt>stas (at) stason.orgE<gt>
=back
+
+Only the major authors are listed above. For contributors see the
+Changes file.
=cut
1.5 +34 -34 modperl-docs/src/docs/2.0/user/config.cfg
Index: config.cfg
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/config.cfg,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- config.cfg 28 Feb 2002 16:23:23 -0000 1.4
+++ config.cfg 20 Mar 2002 17:44:04 -0000 1.5
@@ -1,40 +1,40 @@
use vars qw(@c);
@c = (
- id => 'user_guide',
+ id => 'user_guide',
- title => "mod_perl 2.0 User's guide",
+ title => "mod_perl 2.0 User's guide",
- abstract => 'All you need to know about using mod_perl 2.0',
+ abstract => <<EOB,
+All you need to know about using mod_perl 2.0
+EOB
+
+ group => 'Introduction',
+ chapters => [qw(
+ intro/start_fast.pod
+ overview/overview.pod
+ design/design.pod
+ )],
+
+ group => 'Installation',
+ chapters => [qw(
+ install/install.pod
+ config/config.pod
+ )],
+
+ group => 'Coding Techniques',
+ chapters => [qw(
+ compat/compat.pod
+ coding/coding.pod
+ )],
+
+ group => 'Help',
+ chapters => [ qw(
+ help/help.pod
+ )],
+
+ group => 'Miscellaneous',
+ chapters => [ qw(
+ Changes.pod
+ )],
- group => 'Introduction',
- chapters => [
- qw(
- intro/start_fast.pod
- overview/overview.pod
- design/design.pod
- )
- ],
-
- group => 'Installation',
- chapters => [
- qw(
- install/install.pod
- config/config.pod
- )
- ],
-
- group => 'Coding Techniques',
- chapters => [
- qw(
- compat/compat.pod
- coding/coding.pod
- )
- ],
-
- group => 'Help',
- chapters => [
- qw(
- help/help.pod
- )
- ],
);
1.1 modperl-docs/src/docs/2.0/user/Changes.pod
Index: Changes.pod
===================================================================
=head1 NAME
CHANGES
=head1 Description
Refer to this document to learn what changes were made to the
documents, since you've read these last time.
The most recent changes are listed first.
=head1 ...
=cut
1.4 +22 -0 modperl-docs/src/docs/2.0/user/coding/coding.pod
Index: coding.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/coding/coding.pod,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- coding.pod 12 Nov 2001 02:44:40 -0000 1.3
+++ coding.pod 20 Mar 2002 17:44:04 -0000 1.4
@@ -2,6 +2,11 @@
Coding with and for mod_perl
+=head1 Description
+
+FIXME: DESCRIPTION
+
+
=head1 Prerequisites
=head1 Installing from Source
@@ -38,7 +43,24 @@
Maintainer is the person(s) you should contact with updates,
corrections and patches.
+=over
+
+=item *
+
+=back
+
+
=head1 Authors
+
+=over
+
+=item *
+
+=back
+
+Only the major authors are listed above. For contributors see the
+Changes file.
+
=cut
1.10 +16 -1 modperl-docs/src/docs/2.0/user/compat/compat.pod
Index: compat.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/compat/compat.pod,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- compat.pod 27 Feb 2002 18:03:38 -0000 1.9
+++ compat.pod 20 Mar 2002 17:44:04 -0000 1.10
@@ -2,6 +2,10 @@
mod_perl 1.x versus mod_perl 2.x compatibility issues
+=head1 Description
+
+FIXME: DESCRIPTION
+
=head1 Code Porting from 1.x to 2.x
mod_perl 2.x is trying hard to be back compatible with mod_perl
@@ -180,14 +184,25 @@
Maintainer is the person(s) you should contact with updates,
corrections and patches.
+=over
+
+=item *
+
Stas Bekman E<lt>stas (at) stason.orgE<gt>
+=back
+
=head1 Authors
=over
-=item * Stas Bekman E<lt>stas (at) stason.orgE<gt>
+=item *
+
+Stas Bekman E<lt>stas (at) stason.orgE<gt>
=back
+
+Only the major authors are listed above. For contributors see the
+Changes file.
=cut
1.5 +16 -1 modperl-docs/src/docs/2.0/user/config/config.pod
Index: config.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/config/config.pod,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- config.pod 10 Jan 2002 19:49:40 -0000 1.4
+++ config.pod 20 Mar 2002 17:44:04 -0000 1.5
@@ -2,6 +2,10 @@
mod_perl Server Configuration
+=head1 Description
+
+FIXME: DESCRIPTION
+
=head1 mod_perl configuration directives
=head2 Installing handlers
@@ -231,14 +235,25 @@
Maintainer is the person(s) you should contact with updates,
corrections and patches.
+=over
+
+=item *
+
Stas Bekman E<lt>stas (at) stason.orgE<gt>
+=back
+
=head1 Authors
=over
-=item * Stas Bekman E<lt>stas (at) stason.orgE<gt>
+=item *
+
+Stas Bekman E<lt>stas (at) stason.orgE<gt>
=back
+
+Only the major authors are listed above. For contributors see the
+Changes file.
=cut
1.6 +6 -7 modperl-docs/src/docs/2.0/user/design/design.pod
Index: design.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/design/design.pod,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- design.pod 28 Feb 2002 16:59:03 -0000 1.5
+++ design.pod 20 Mar 2002 17:44:04 -0000 1.6
@@ -2,13 +2,9 @@
mod_perl_design - notes on the design and goals of mod_perl-2.0
-=head1 SYNOPSIS
+=head1 Description
- perldoc mod_perl_design
-
-=head1 DESCRIPTION
-
-notes on the design and goals of mod_perl-2.0
+Notes on the design and goals of mod_perl-2.0
=head1 Introduction
@@ -469,7 +465,7 @@
=head1 Perl Enhancements
-As Perl 5.8.0 is current in development and Perl 6.0 is a long ways
+As Perl 5.8.0 is currently in development and Perl 6.0 is a long ways
off, it is possible and reasonable to add enhancements to Perl which
will benefit mod_perl. While these enhancements do not preclude the
design of mod_perl-2.0, they will make an impact should they be
@@ -582,5 +578,8 @@
=item * Doug MacEachern E<lt>dougm (at) covalent.netE<gt>
=back
+
+Only the major authors are listed above. For contributors see the
+Changes file.
=cut
1.2 +33 -0 modperl-docs/src/docs/2.0/user/help/help.pod
Index: help.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/help/help.pod,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- help.pod 27 Feb 2002 18:02:27 -0000 1.1
+++ help.pod 20 Mar 2002 17:44:04 -0000 1.2
@@ -0,0 +1,33 @@
+=head1 NAME
+
+User Help
+
+=head1 Description
+
+FIXME: DESCRIPTION
+
+=head1 Maintainers
+
+Maintainer is the person(s) you should contact with updates,
+corrections and patches.
+
+=over
+
+=item *
+
+=back
+
+
+=head1 Authors
+
+=over
+
+=item *
+
+=back
+
+Only the major authors are listed above. For contributors see the
+Changes file.
+
+
+=cut
1.9 +17 -1 modperl-docs/src/docs/2.0/user/install/install.pod
Index: install.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/install/install.pod,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- install.pod 27 Feb 2002 18:03:38 -0000 1.8
+++ install.pod 20 Mar 2002 17:44:04 -0000 1.9
@@ -2,6 +2,10 @@
Installing mod_perl
+=head1 Description
+
+FIXME: DESCRIPTION
+
=head1 Prerequisites
Lots of prerequisites
@@ -230,21 +234,33 @@
=head1 Installing from Binary Packages
+
+
=head1 Maintainers
Maintainer is the person(s) you should contact with updates,
corrections and patches.
+=over
+
+=item *
+
Stas Bekman E<lt>stas (at) stason.orgE<gt>
+=back
+
=head1 Authors
=over
-=item * Stas Bekman E<lt>stas (at) stason.orgE<gt>
+=item *
+
+Stas Bekman E<lt>stas (at) stason.orgE<gt>
=back
+Only the major authors are listed above. For contributors see the
+Changes file.
=cut
1.5 +22 -0 modperl-docs/src/docs/2.0/user/intro/start_fast.pod
Index: start_fast.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/intro/start_fast.pod,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- start_fast.pod 12 Nov 2001 02:44:41 -0000 1.4
+++ start_fast.pod 20 Mar 2002 17:44:04 -0000 1.5
@@ -2,6 +2,11 @@
Getting Your Feet Wet with mod_perl
+=head1 Description
+
+FIXME: DESCRIPTION
+
+
=head1 A Quick Guide to Getting Started with mod_perl
=head1 Maintainers
@@ -9,6 +14,23 @@
Maintainer is the person(s) you should contact with updates,
corrections and patches.
+=over
+
+=item *
+
+=back
+
+
=head1 Authors
+
+=over
+
+=item *
+
+=back
+
+Only the major authors are listed above. For contributors see the
+Changes file.
+
=cut
1.3 +7 -0 modperl-docs/src/docs/2.0/user/overview/overview.pod
Index: overview.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/overview/overview.pod,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- overview.pod 9 Jan 2002 18:09:49 -0000 1.2
+++ overview.pod 20 Mar 2002 17:44:04 -0000 1.3
@@ -2,6 +2,10 @@
Overview of mod_perl 2.0
+=head1 Description
+
+FIXME: DESCRIPTION
+
=head1 Introduction
mod_perl was introduced in early 1996, both Perl and Apache have
@@ -1211,5 +1215,8 @@
=item * Doug MacEachern E<lt>dougm (at) covalent.netE<gt>
=back
+
+Only the major authors are listed above. For contributors see the
+Changes file.
=cut
1.2 +12 -10 modperl-docs/src/docs/2.0/world/config.cfg
Index: config.cfg
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/world/config.cfg,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- config.cfg 5 Jan 2002 19:26:02 -0000 1.1
+++ config.cfg 20 Mar 2002 17:44:04 -0000 1.2
@@ -1,16 +1,18 @@
use vars qw(@c);
@c = (
- id => 'world',
+ id => 'world',
- title => "mod_perl related tutorials",
+ 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.',
+ abstract => <<EOB,
+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.
+EOB
+
+ chapters => [qw(
+ templates/choosing.pod
+ Changes.pod
+ )],
- chapters => [
- qw(
- templates/choosing.pod
- ),
- ],
);
1.1 modperl-docs/src/docs/2.0/world/Changes.pod
Index: Changes.pod
===================================================================
=head1 NAME
CHANGES
=head1 Description
Refer to this document to learn what changes were made to the
documents, since you've read these last time.
The most recent changes are listed first.
=head1 Sat Sep 15 19:45:41 SGT 2001
* templates::choosing, the initial version added (Perrin Harkins
E<lt>[EMAIL PROTECTED]<gt>)
o E<lt>[EMAIL PROTECTED]<gt>)
o E<lt>[EMAIL PROTECTED]<gt>)
templates::choosing, the initial version added (Perrin Harkins
* templates::choosing, the initial version added (Perrin Harkins
E<lt>[EMAIL PROTECTED]<gt>)
E<lt>[EMAIL PROTECTED]<gt>)
E<lt>[EMAIL PROTECTED]<gt>)
templates::choosing, the initial version added (Perrin Harkins
=cut
1.6 +24 -2 modperl-docs/src/docs/2.0/world/templates/choosing.pod
Index: choosing.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/world/templates/choosing.pod,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- choosing.pod 2 Jan 2002 09:35:02 -0000 1.5
+++ choosing.pod 20 Mar 2002 17:44:04 -0000 1.6
@@ -2,6 +2,11 @@
Choosing a Templating System
+=head1 Description
+
+Everything you wanted to know about templating systems and didn't dare
+to ask. Well, not everything....
+
=head1 Introduction
Go on, admit it: you've written a templating system. It's okay,
@@ -1086,11 +1091,28 @@
Maintainer is the person(s) you should contact with updates,
corrections and patches.
-Perrin Harkins E<lt>[EMAIL PROTECTED]<gt>.
+=over
+
+=item *
+
+Perrin Harkins E<lt>perrin (at) elem.comE<gt>.
+
+=back
+
=head1 Authors
-Perrin Harkins E<lt>[EMAIL PROTECTED]<gt>.
+=over
+
+=item *
+
+Perrin Harkins E<lt>perrin (at) elem.comE<gt>.
+
+=back
+
+Only the major authors are listed above. For contributors see the
+Changes file.
+
=cut
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]