| Acme-CPANAuthors-Norwegian documentation | Contained in the Acme-CPANAuthors-Norwegian distribution. |
Acme::CPANAuthors::Norwegian - We are Norwegian CPAN authors
use Acme::CPANAuthors;
my $authors = Acme::CPANAuthors->new("Norwegian");
my $number = $authors->count;
my @ids = $authors->id;
my @distros = $authors->distributions("MRAMBERG");
my $url = $authors->avatar_url("SJN");
my $kwalitee = $authors->kwalitee("COSIMO");
my $name = $authors->name("TAFFY");
See documentation for Acme::CPANAuthors for more details.
This class provides a hash of Norwegian CPAN authors' PAUSE ID and name to
the Acme::CPANAuthors module.
If you are a Norwegian CPAN author not listed here, please send me your ID/name via email or RT so I can always keep this module up to date.
Now 32 Norwegian CPAN authors:
AFF => 'Andreas Faafeng', ALKNAFF => 'Alain Knaff', ANDREMAR => 'Andreas Marienborg', ARNE => 'Arne Sommer', ARNESOND => 'Dag Arneson', AVITARNET => 'David Peter Smith', CAFFIEND => 'Andrew Robertson', COSIMO => 'Cosimo Streppone', CRAFFI => 'Chris Dagdigian', EARNESON => 'Erik Arneson', EBHANSSEN => 'Eirik Berg Hanssen', GAFFER => 'George A. Fitch III', GAFFIE => 'Mario Gaffiero', GIRAFFED => 'Bryan Henderson', JANL => 'Nicolai Langfeldt', KIRILLM => 'Кирилл Мязин', KJETIL => 'Kjetil Skotheim', KJETILK => 'Kjetil Kjernsmo', LARSNYG => 'Lars Nygaard', MRAMBERG => 'Marcus Ramberg', PEREINAR => 'Per Einar Ellefsen', PJACKLAM => 'Peter John Acklam', PRATZLAFF => 'Pete Ratzlaff', RGRAFF => 'Robert Graff', SCHAFFTER => 'Gustav Schaffter', SJN => 'Salve J. Nilsen', SLAFF => 'Slavej Karadjov', TAFFY => 'David Kr�ber', TECHIE => 'Thomas Martinsen', TERJE => 'Terje Br�ten', TROHAU => 'Trond Haugen',
Acme::CPANAuthors Acme::CPANAuthors::Russian http://search.cpan.org/search?query=Acme%3A%3ACPANAuthors&mode=all
Anatoly Sharifulin, <sharifulin at gmail.com>
Please report any bugs or feature requests to bug-acme-cpanauthors-Norwegian at rt.cpan.org, or through
the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Acme-CPANAuthors-Norwegian. We will be notified, and then you'll
automatically be notified of progress on your bug as we make changes.
You can find documentation for this module with the perldoc command.
perldoc Acme::CPANAuthors::Norwegian
You can also look for information at:
http://github.com/sharifulin/acme-cpanauthors-Norwegian/tree/master
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Acme-CPANAuthors-Norwegian
http://cpants.perl.org/dist/overview/Acme-CPANAuthors-Norwegian
Copyright (C) 2009-2010 by Anatoly Sharifulin.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Acme-CPANAuthors-Norwegian documentation | Contained in the Acme-CPANAuthors-Norwegian distribution. |
package Acme::CPANAuthors::Norwegian; use utf8; # encoding="utf-8" use warnings; use strict; our $VERSION = '0.2'; use Acme::CPANAuthors::Register ( AFF => 'Andreas Faafeng', ALKNAFF => 'Alain Knaff', ANDREMAR => 'Andreas Marienborg', ARNE => 'Arne Sommer', ARNESOND => 'Dag Arneson', AVITARNET => 'David Peter Smith', CAFFIEND => 'Andrew Robertson', COSIMO => 'Cosimo Streppone', CRAFFI => 'Chris Dagdigian', EARNESON => 'Erik Arneson', EBHANSSEN => 'Eirik Berg Hanssen', GAFFER => 'George A. Fitch III', GAFFIE => 'Mario Gaffiero', GIRAFFED => 'Bryan Henderson', JANL => 'Nicolai Langfeldt', KIRILLM => 'ÐиÑилл ÐÑзин', KJETIL => 'Kjetil Skotheim', KJETILK => 'Kjetil Kjernsmo', LARSNYG => 'Lars Nygaard', MRAMBERG => 'Marcus Ramberg', PEREINAR => 'Per Einar Ellefsen', PJACKLAM => 'Peter John Acklam', PRATZLAFF => 'Pete Ratzlaff', RGRAFF => 'Robert Graff', SCHAFFTER => 'Gustav Schaffter', SJN => 'Salve J. Nilsen', SLAFF => 'Slavej Karadjov', TAFFY => 'David Kr�ber', TECHIE => 'Thomas Martinsen', TERJE => 'Terje Br�ten', TROHAU => 'Trond Haugen', ); 1; __END__