stas01/09/17 06:28:51
Removed: pod modperl_style.pod
Log:
migrated to modperl-docs/src/devel/modperl_style/modperl_style.pod
sbekman 01/04/25 20:11:06
Modified:pod modperl_style.pod
Log:
pod spacing correction + a small clarification from Doug
Revision ChangesPath
1.4 +12 -10modperl-2.0/pod/modperl_style.pod
Index: modperl_style.pod
===
dougm 01/04/25 08:25:46
Modified:pod modperl_style.pod
Log:
fix typo
Revision ChangesPath
1.3 +1 -1 modperl-2.0/pod/modperl_style.pod
Index: modperl_style.pod
===
RCS file: /home/c
dougm 01/02/18 14:00:48
Modified:pod modperl_style.pod
Log:
document modperl C code prefix conventions
Revision ChangesPath
1.2 +26 -0 modperl-2.0/pod/modperl_style.pod
Index: modperl_style.pod
=
On Wed, 17 Jan 2001, Ask Bjoern Hansen wrote:
> On 2 Jan 2001 [EMAIL PROTECTED] wrote:
>
> > =item Avoid inherting from certain modules
> >
> > Exporter
> > To void inherting B
> >
> >instead of this:
> >
> > @MyClass::ISA = qw(Exporter);
> >
> >use this:
> >
On 2 Jan 2001 [EMAIL PROTECTED] wrote:
> =item Avoid inherting from certain modules
>
> Exporter
> To void inherting B
>
>instead of this:
>
> @MyClass::ISA = qw(Exporter);
>
>use this:
>
> *import = \&Exporter::import;
Why? To get less obscure error mess
dougm 01/01/02 11:56:09
Added: pod modperl_style.pod
Log:
style guide
Revision ChangesPath
1.1 modperl-2.0/pod/modperl_style.pod
Index: modperl_style.pod
===
=head1 NAME