Acme::CPANAuthors::Chinese - We are chinese CPAN authors


Acme-CPANAuthors-Chinese documentation Contained in the Acme-CPANAuthors-Chinese distribution.

Index


Code Index:

NAME

Top

Acme::CPANAuthors::Chinese - We are chinese CPAN authors

Acme::CPANAuthors::Chinese - CPAN 中国作者

SYNOPSIS

Top

   use Acme::CPANAuthors;
   use Acme::CPANAuthors::Chinese;

   my $authors = Acme::CPANAuthors->new('Chinese');

   my $number   = $authors->count;
   my @ids      = $authors->id;
   my @distros  = $authors->distributions('AGENT');
   my $url      = $authors->avatar_url('FAYLAND');
   my $kwalitee = $authors->kwalitee('YEWENBIN');




DESCRIPTION

Top

This class is used to provide a hash of chinese CPAN author's PAUSE id/name to Acme::CPANAuthors.

MAINTENANCE

Top

If you are a chinese CPAN author not listed here, please send me your id/name via email or RT so we can always keep this module up to date. If there's a mistake and you're listed here but are not chinese (or just don't want to be listed), sorry for the inconvenience: please contact me and I'll remove the entry right away.

SEE ALSO

Top

Acme::CPANAuthors - Main class to manipulate this one

Acme::CPANAuthors::Japanese - Code and documentation nearly taken verbatim from it

Acme::CPANAuthors::Brazilian - inspired me directly

AUTHOR

Top

Fayland Lam, <fayland at gmail.com>

COPYRIGHT AND LICENSE

Top


Acme-CPANAuthors-Chinese documentation Contained in the Acme-CPANAuthors-Chinese distribution.

package Acme::CPANAuthors::Chinese;

use strict;
use warnings;

our $VERSION = '0.20';

use Acme::CPANAuthors::Register (
    AGENT       => 'Agent Zhang (章亦春)',
    ALEXE       => 'Alexe',
    CARMARK     => 'Lei Xue',
    CHAOSLAW    => '王晓哲',
    CHENGANG    => '陈钢',
    CHENYR      => 'Chen Yirong (春江)',
    CHUNZI      => 'Chunzi',
    CHYLLI      => 'chylli',
    CNANGEL     => '李俊良',
    CNHACKTNT   => '王晖',
    DOGGY       => 'Pan Fan (nightsailer)',
    DONGXU      => 'Dongxu Ma <马东旭>',
    FAYLAND     => 'Fayland æž—',
    FKIORI      => '陈正伟',
    FLW         => '王兴华',
    FOOLFISH    => '錢宇/Qian Yu',
    HGNENG      => '黄冠能',
    HOOWA       => '孙冰',
    ISLUE       => '胡海麟',
    JOEJIANG    => '蒋永清',
    JWU         => '吴健源',
    JZHANG      => '张军',
    KAILI       => '李凯',
    LAOMOI      => 'xiaoshengcaicai',
    LENIK       => '谢继雷',
    MAIN        => '吴健源',
    NSNAKE      => '徐昊',
    PANGJ       => 'Jeff Pang',
    PANYU       => 'PAN YU',
    QJZHOU      => 'Qing-Jie Zhou',
    QSUN        => '孙泉',
    RANN        => '灿烂微笑 / Ran Ningyu',
    REDICAPS    => 'woosley.xu(徐洲)',
    ROOTKWOK    => '郭樂聰', # HK, he posted to ChinaUnix Perl board
    SAL         => 'Sal Zhong (仲伟祥)',
    SHUCAO   => 'Shu Cao',
    SUNNAVY     => '孙海军',
    SUNTONG     => 'Tong Sun',
    SWANSUN     => 'swansun huang',
    WEIQK       => '万朝伟',
    YEWENBIN    => '叶文彬',
    XIAOLAN     => '傅小兰',
    XINZHENG    => '郑 鑫',
    XUERON      => 'Xueron Nee',
    ZHUZHU      => 'Zhu Zhu',
);

1;

__END__