Tagged Questions
The perldoc tag has no wiki summary.
11
votes
3answers
768 views
How do I use Unicode characters in Pod and perldoc?
I need to use utf-8 characters in my perl-documentation.
If I use:
perldoc MyMod.pm
I see strange characters. If I use:
pod2text MyMod.pm
everything is fine.
I use Ubuntu/Debian.
$ locale
...
5
votes
5answers
671 views
How can I generate HTML documentation for Perl code comments?
I've come into ownership of a bunch of code that's held together with various Perl scripts. There's some documentation in the form of comments (not Pod) embedded in these scripts that I'd like to be ...
4
votes
3answers
213 views
Is there really no better way to document perl code than POD?
I'm a perl programmer for a long time. But I always have problems with documentation in POD.
When I use POD comment in the code the code is difficult to read. When I use POD comments at the end of ...
4
votes
7answers
610 views
How can I use perldoc to lookup the %ENV variable?
I find from reading perldoc perlvar, about a thousand lines in is help for %ENV. Is there a way to find that from the command line directly?
On my Windows machine, I've tried the following
perldoc ...
3
votes
2answers
144 views
Where in the documentation does it say that while tests readdir for definedness?
See also: How is "0" result from readdir not false in a while condition?. (Not a duplicate; just closely related.)
Where in the documentation does it say that while tests readdir for definedness? ...
3
votes
5answers
128 views
What are the perldoc perlxxx options?
It appears that using perldoc perl gives the list of, e.g. perlre, perlvar, etc.
Is this the best place to find the list of what's available as an overview or tutorial or reference manual section? Is ...
2
votes
3answers
369 views
Net::SSLeay post_https compilation error: Too many arguments
I'm interfacing with a payment gateway and not having any luck with Net::SSLeay and its post_https subroutine. The payment gateway has issued me a client certificate that must be used for ...
1
vote
1answer
379 views
Vim JSDoc, PHPDoc, JavaDoc, RDoc info
Here is the deal,
If you've used Aptana, Eclipse or even Microsoft Expression Web editor, then you've seen that they feature a Balloon Text or Intellisense popup showing hints/info of built-in and ...
0
votes
1answer
96 views
Using POD for CSS documentation
I'm working on the frontend of a project which has a Perl backend. The CSS files are getting pretty big and complicated, and are in need of some documentation and Tables of Contents.
I looked at ...
0
votes
2answers
135 views
How to I get perldoc to find my modules in perl/site/lib?
Update: My problem seems to have solved itself. Not sure what's going on. Sorry for the false alarm.
My understanding is that perl/lib is reserved for the core Perl distribution and that I should be ...