jonasbn reversethis-{gro.napc} {ta} {nbsanoj}http://e-diot.dk/AOL IM: BJonasN (
Add Buddy, Send Message)
Perl Programmer located in Copenhagen, Denmark. Active member of Copenhagen Perl Mongers.
Author of:
- Business::DK::CPR
- Business::DK::CVR
- Business::DK::PO
- Business::OnlinePayment::CashCow
- Date::Holidays
- Date::Holidays::Abstract
- Date::Holidays::Super
- Date::Pregnancy
- Games::Bingo
- Games::Bingo::Bot
- Games::Bingo::Print
- Module::Info::File
- Module::Template::Setup
- Test::Timer
and maintainer of:
- Tie::Tools
- XML::Conf
- Workflow
Some issues (Score:2, Informative)
* The modules have no abstract (In NAME, one usually puts "Module::Name - Module that does something)
* Prototypes are used for methods. That's useless, since they're ignored for runtime thingies. Besides that, have a look at Far More Than Everything You've Ever Wanted to Know about Prototypes in Perl.
* POD is =cut and then immediately continued...
* Some POD is broken otherwise (if you use multiple angle brackets, you must also use whitespace!)
And probably more...
Re:Some issues (Score:2)
I will correct these issues ASAP.
I know that the prototypes aren't any good during run-time, but I use them when developing. They work quite well when refactoring code, that is why I tend to keep them around.
Again - thanks for you feedback...
Re:Some issues (Score:3, Informative)
In short, prototypes are evil. Don't use them unless you have no other choice (see: Error.pm [cpan.org]).
-Dom
Re:Some issues (Score:2)
Re:Some issues (Score:2)
POD is =cut and then immediately continued...
As far as I can see, when
writing the POD below
__END__it does not makes sense to use=cutunless!
=cutis used to close a section?- do you know if this is this the case?