cvs commit: modperl-2.0/pod modperl_style.pod

2001-09-17 Thread stas

stas01/09/17 06:28:51

  Removed: pod  modperl_style.pod
  Log:
  migrated to modperl-docs/src/devel/modperl_style/modperl_style.pod



cvs commit: modperl-2.0/pod modperl_style.pod

2001-04-25 Thread dougm

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/cvs/modperl-2.0/pod/modperl_style.pod,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- modperl_style.pod 2001/02/18 22:00:48 1.2
  +++ modperl_style.pod 2001/04/25 15:25:45 1.3
  @@ -106,7 +106,7 @@
   =item Avoid inherting from certain modules
   
   Exporter 
  -To void inherting BAutoLoader::AUTOLOAD
  +To avoid inherting BAutoLoader::AUTOLOAD
   
instead of this:
   
  
  
  



Re: cvs commit: modperl-2.0/pod modperl_style.pod

2001-01-24 Thread Doug MacEachern

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 BAutoLoader::AUTOLOAD

 instead of this:

  @MyClass::ISA = qw(Exporter);
 
 use this:
 
  *import = \Exporter::import;
 
 Why?  To get less obscure error messages for methods that can't be
 found or are you being really absurd^Wenthusiastic with the memory
 savings? :)

why both, of course!