Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
After reading a question on this node about querying installed module versions without having an interactive shell account on the box, I decided to hack up a quick CGI that does what the monk asked, and also adds a bit of additional functionality that could be helpful to others as well.

This module will query your locally installed modules using ExtUtils::Installed, present them in a standard dropdown form using CGI, and when you select a module by name from the list and click "Module Details", it will display the module name, version number, and the files associated with that module, including the full path to them on the system. Additionally, it will link the module name to a CPAN search for that module, so you can read up on the docs for it. Originally, I was going to use File::Basename and run pod2html against $base, and display that, but I figured CPAN's module documentation would be more current, and probably more useful.

It was a quick hack, let me know what you think!

ChangeLog

v0.2
A few small updates, as requested by some monks.

  • Added ability to link to both local and CPAN documentation for the module. This will require pod2html to be installed, and the .html files it creates will be stored in $ENV{'PWD'}, so make sure you put this script where it can write those files.
  • Added the ability to query the local environment (@INC, $^X and $^O for starters)
  • Ripped out the fonts for now, I'll add them and validate the HTML in a later version.

v0.1
Initial release

#!/usr/bin/perl use strict; use CGI qw(:standard); use File::Basename; use ExtUtils::Installed; my $script = $ENV{'SCRIPT_NAME'}; my $cpan = "http://search.cpan.org/search"; my $inst = ExtUtils::Installed->new(); my $cgi = CGI->new(); print header(), start_html({-style =>'font-family: courier;', -title =>'MoDetails v0.2'}); print_form(); print_results($cgi) if $cgi->param('mod'); sub print_form { push my @modules, $inst->modules(); my $modname = $cgi->param('mod'); print start_form(-name =>"modules", -action =>"$script?mod=$modname"), popup_menu(-name =>'mod', -value =>\@modules), submit(-label =>'Module Details'), end_form; } sub print_results { my $module = $cgi->param('mod'); print p({-class=>'c'}, b("Module Name"), ":", $module); print p(b("Version currently installed"), ":", $inst->version($module)); push my @filelist, $inst->files($module); print p(b("Files Installed by $module"), br(), join br(), $inst->files($module)); push my @podpm, $inst->files($module); foreach my $file (@podpm) { my $base = basename($file); my $dir = dirname($file); my $nmod = $module; $nmod =~ s,::,/,; if ($file =~ /$nmod.pm/i) { system('/usr/bin/pod2html', "$file", '--outfile', "$base.html"); print b("Documentation for"), ":", br(), a({-href=>"$base.html"}, "$module.pm"), " (local version)", br(); } } print a({-href=>"${cpan}?query=$module&mode=module"}, "$module"), " (CPAN latest version)", br(); my @newinc = (split " ", "@INC"); print br(), b("Environment available to this user"), br(), "\@INC", div({-style=>'padding-left: 20px;'}, join br(), sort @newinc); print br(), b("Host operating system"), br(), div({-style=>'padding-left: 20px;'}, "$^O"); print br(), b("Path to perl binary"), br(), div({-style=>'padding-left: 20px;'}, "$^X"); }

In reply to MoDetails v0.2 by hacker

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (5)
As of 2024-04-19 01:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found