vote up -4 vote down star

A google search reveals nothing useful. Does perl have a javadoc equivalent for its modules?

(Update -- I'm aware of perdoc, but that is more like a man page, which is hard to scan to find functionality... I'm looking for a function/operation list (w/ descriptions) similar to javadoc's presentation or php's documentation)

flag
+1 from me. The negative votes are a little harsh for a question inspired by culture clash; to the OP it seems surprising that there isn't an automated tool to pull out information about classes and methods, and perldoc ain't it. Though I thought there was something based on PPI... – ysth Mar 10 at 23:52
He's aware of "perdoc", but he doesn't know how to search? And he's annoyed by it having MORE than just a list of functions? – Ambrose Mar 11 at 4:31
It's not just the having MORE, it's not having a fixed, dependable format. – ysth Mar 11 at 6:03
Wow, some harsh down voting here. Makes the pearl community look real inviting. – James McMahon Mar 11 at 12:51
@nemo: I agree it's harsh -- and I'm a perl-phile. – Axeman Mar 11 at 15:21
show 4 more comments

3 Answers

vote up 11 vote down check

Are you kidding?

perldoc CGI

Or online: http://search.cpan.org/perldoc?CGI

link|flag
Or even: perldoc.perl.org/CGI.html – runrig Mar 10 at 20:29
I was more looking for a function enumeration more than a man page-like thing. Something like php's documentation that lists out all the possible functions for the module. – Mark Mar 10 at 20:43
That's also the usual way of documenting Perl modules. However, Mr. Stein chose a different approach and my guess is that we should be grateful. – Manni Mar 10 at 20:51
vote up 0 vote down

What did you google? When I search for "perl cgi" the first hit I get is the CGI.pm module documentation at perldoc.perl.org. You can also see all CPAN documentation on CPAN Search. Once displayed in your browser, it's easy to search.

link|flag
vote up 4 vote down

If you have it installed correctly, "perldoc CGI" should do what you want. Sometimes "man CGI" will work as well.

link|flag
I have no idea why this got a downvote. It's just as correct as the accepted answer, and written simultaneously to it. – Paul Tomblin Mar 11 at 13:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.