This page (warning it's huge) lists all CPAN distributions and marks the ones bundled with ActivePerl as 'CORE'. This is a misleading label since some are core (come in the Perl distribution) and the rest are added by ActiveState.

I grabbed a local copy using wget then ran this script to extract the names of all the distributions marked 'CORE' and then use Richard Clamp's Module::CoreList to filter out the ones that really are core:

#!/usr/bin/perl -w use strict; use XML::LibXML; use Module::CoreList; my $parser = XML::LibXML->new(); $parser->recover(1); my $dom = $parser->parse_html_file('activeperl_ppm_status.html') or die "parse error"; foreach ( $dom->findnodes('//tr[./td[3]/text() = "CORE"]/td[1]/text()' +) ) { my $dist = $_->to_literal; $dist =~ s/-/::/g; next if Module::CoreList->first_release($dist); print $dist, "\n"; }

Which returned this list:

Archive::Tar
Compress::Zlib
Data::Dump
Digest::HMAC
Digest::MD2
Digest::MD4
Digest::SHA1
File::CounterFile
Font::AFM
HTML::Parser
HTML::Tagset
HTML::Tree
IO::Zlib
libwin32
libwww::perl
MD5
Scalar::List::Utils
SOAP::Lite
Tk
URI
Win32::OLE
Win32::Sound
Win32::TieRegistry
Win32API::File
XML::Parser
XML::Simple

Update: added the s/-/::/g line to fix the list filtering.


In reply to Re: Standard Modules by grantm
in thread Standard Modules by TeraMarv

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



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.