Thanks grantm but this doesn't really give me what i'm looking for either.
The closest i've got so far has been by comparing the modules to the html pages supplied by Activestate:
my $file;
my $module;
my @installed;
my %installed;
my @standard;
my %standard;
my @non_standard;
my @INC_html = @INC;
map {s/perl/perl\/html/i;} @INC_html;
# Find all '.html' suffixed files in paths contained in the array @INC
+_html
find( sub { push @standard, $File::Find::name if -f _ && /\.html$/ },@
+INC_html);
foreach $file (@standard)
{
$file =~ /(.*lib\/)(.*)(\.html)/;
$file = $2;
$file =~ s/\//::/g;
}
# Find all '.pm' suffixed files in paths contained in the array @INC
find( sub { push @installed, $File::Find::name if -f _ && /\.pm$/ },@I
+NC);
foreach $file (@installed)
{
$file =~ /(.*lib\/)(.*)(\.pm)/;
$file = $2;
$file =~ s/\//::/g;
}
# Build a look-up table (Hash) for the standard modules
@standard{@standard} = (1) x @standard;
# Look-up standard and non-standard modules
foreach $module (@installed)
{
unless(exists $standard{$module})
{
push @non_standard,$module;
}
}
Unfortuantely ActiveState do not provide an html page for every module that they supply in the Perl bundle.
Looks like i may have to do a fresh install on another machine to get the unadulterated module listing.
Marv.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.