Acme-MetaSyntactic

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

    - Correct a typo in Markefile.PL (thanks to Mike Castle)
    - The method themes() returns the sorted list of available themes
    - New themes:
      + crypto (anonymous)
      + simpsons
    - closed ticket #9725 on rt.cpan.org (wishlist)

0.03 2005-01-14 BOOK
    - Documentation patches
    - Put everything in __DATA__ to make adding new themes easier
    - New themes (the names in parentheses indicate who suggested
      the theme and/or provided the list):
      + dilbert (Sébastien Aperghis-Tramoni)
      + donmartin (Vahe Sarkissian)
      + pynchon (David Landgren)
      + robin
    - closed ticket #9731 on rt.cpan.org (discussion)

0.02 2005-01-14 BOOK
    - The module now exports all meta* functions.
    - If many items are requested, the module will supply as many

lib/Acme/MetaSyntactic.pm  view on Meta::CPAN

The Batman serial from the 60s (it was shown in France in the 80s).

my wife loves it, I name most of my machines after the bat fight sound
effects (C<zowie>, C<klonk>, C<zlonk>), and I even own a CD of the serial's
theme music and the DVD of the movie (featuring the batboat and the batcopter!).

=item *

Rafael Garcia-Suarez,

who apparently plans to use it. Especially now that it's usable in
one-liners.

=item *

Vahe Sarkissian,

who was the first to suggest an additional list (the sound effects from
Don Martin's comic-books) and provided a link to a comprehensive list.

=item *

lib/Acme/MetaSyntactic/Locale.pm  view on Meta::CPAN


our @ISA = qw( Acme::MetaSyntactic::MultiList );
our $VERSION = '1.000';

sub init {
    # alias the older package variable %Locale to %MultiList
    no strict 'refs';
    *{"$_[0]::Locale"}    = \%{"$_[0]::MultiList"};
    ${"$_[0]::Separator"} = '_';

    # call the parent class init code
    goto &Acme::MetaSyntactic::MultiList::init;
}

sub new {
    my $class = shift;

    no strict 'refs';
    my $self = bless { @_, cache => [] }, $class;

    # compute some defaults



( run in 0.369 second using v1.01-cache-2.11-cpan-4d50c553e7e )