dwalin has asked for the wisdom of the Perl Monks concerning the following question:

Ugh... Feel completely dumbstruck but just can't find CGI.pm manual anywhere. Official pod is a tutorial, which I don't need at the moment. I need, well, the usual one: a list of methods with accepted parameters, description etc. Programmer's manual. Does it even exist? Search doesn't work in this case - just mention CGI and you'll get drowned...

Regards,
Alex.

Replies are listed 'Best First'.
Re: CGI.pm manual?
by ww (Archbishop) on Apr 11, 2011 at 22:50 UTC
    My copy is a bit dated and NOT solely a reference work, but it sounds as though it should serve (the 'arguments' section of the index runs a page and a half):

    ISBN 0471247448, Official Guide to Programming with CGI.pm, Lincoln Stein, John Wiley & Sons.

    Last I knew, clean new or like new copies were selling at "remaindering" prices.
      Thanks, that sounds more like it. I guess I'll go hunting for the book. :)

      Regards,
      Alex.

Re: CGI.pm manual?
by FunkyMonk (Bishop) on Apr 11, 2011 at 19:03 UTC
    You mean like CGI?

    update:

    Standard Perl documentation is available at perldoc.perl.org, or from the command line using (for example) perldoc CGI. For modules that you've installed from CPAN, you can use perldoc Some::Module, or search.cpan.org.

      No, I mean something like DBI, but for CGI. A manual, not tutorial. Something I could consult when I forget which parameters a method takes, not sift through looking for clues and how-tos. A manual.

      I got a nagging feeling that I've seen it somewhere when I first encountered Perl, but it was long ago and I just don't remember.

      Regards,
      Alex.

        Ah, I see what you mean now. It's been a long time since looked at CGI too :(
Re: CGI.pm manual?
by luis.roca (Deacon) on Apr 14, 2011 at 18:20 UTC
      CGI.pm is module, there is no official manual, other than the documentation , which as OP states is a tutorial, and the source

      Ok, there is a book of some sort, but, the source code is fairly self-documenting, and the tutorial is thorough :)