Changeset 18974

Show
Ignore:
Timestamp:
09/08/08 13:23:16 (5 years ago)
Author:
charsbar
Message:

WWW-Mixi-Scraper: fixed pod and updated manifest and 0.19 -> CPAN

Location:
lang/perl/WWW-Mixi-Scraper/trunk
Files:
12 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/WWW-Mixi-Scraper/trunk/Changes

    r18970 r18974  
    11Revision history for WWW-Mixi-Scraper 
     2 
     30.19  2008/09/08 
     4  - oops, pods for echo stuff were stale, 
     5    and manifest was not updated. sorry. 
    26 
    370.18  2008/09/08 
  • lang/perl/WWW-Mixi-Scraper/trunk/MANIFEST

    r16783 r18974  
    66lib/WWW/Mixi/Scraper/Plugin/ListComment.pm 
    77lib/WWW/Mixi/Scraper/Plugin/ListDiary.pm 
     8lib/WWW/Mixi/Scraper/Plugin/ListEcho.pm 
    89lib/WWW/Mixi/Scraper/Plugin/ListMessage.pm 
    910lib/WWW/Mixi/Scraper/Plugin/NewBBS.pm 
     
    1112lib/WWW/Mixi/Scraper/Plugin/NewMusic.pm 
    1213lib/WWW/Mixi/Scraper/Plugin/NewVideo.pm 
     14lib/WWW/Mixi/Scraper/Plugin/RecentEcho.pm 
     15lib/WWW/Mixi/Scraper/Plugin/ResEcho.pm 
    1316lib/WWW/Mixi/Scraper/Plugin/ShowCalendar.pm 
    1417lib/WWW/Mixi/Scraper/Plugin/ShowFriend.pm 
     
    1619lib/WWW/Mixi/Scraper/Plugin/ViewBBS.pm 
    1720lib/WWW/Mixi/Scraper/Plugin/ViewDiary.pm 
     21lib/WWW/Mixi/Scraper/Plugin/ViewEcho.pm 
    1822lib/WWW/Mixi/Scraper/Plugin/ViewEvent.pm 
    1923lib/WWW/Mixi/Scraper/Plugin/ViewMessage.pm 
     
    2226Makefile.PL 
    2327MANIFEST                        This list of files 
     28META.yml 
    2429README 
    2530t/00_load.t 
     
    3035t_live/list_comment.t 
    3136t_live/list_diary.t 
     37t_live/list_echo.t 
    3238t_live/list_message.t 
    3339t_live/new_bbs.t 
     
    3541t_live/new_music.t 
    3642t_live/new_video.t 
     43t_live/recent_echo.t 
     44t_live/res_echo.t 
    3745t_live/show_calendar.t 
    3846t_live/show_friend.t 
     
    4048t_live/view_bbs.t 
    4149t_live/view_diary.t 
     50t_live/view_echo.t 
    4251t_live/view_event.t 
    4352t_live/view_message.t 
  • lang/perl/WWW-Mixi-Scraper/trunk/lib/WWW/Mixi/Scraper.pm

    r17201 r18974  
    44use warnings; 
    55 
    6 our $VERSION = '0.18'; 
     6our $VERSION = '0.19'; 
    77 
    88use String::CamelCase qw( decamelize ); 
  • lang/perl/WWW-Mixi-Scraper/trunk/lib/WWW/Mixi/Scraper/Plugin/ListBookmark.pm

    r16783 r18974  
    6363    last_login => '5分以内'、 
    6464  } 
     65  } 
    6566 
    6667=head1 AUTHOR 
  • lang/perl/WWW-Mixi-Scraper/trunk/lib/WWW/Mixi/Scraper/Plugin/ListEcho.pm

    r18970 r18974  
    3939=head1 DESCRIPTION 
    4040 
     41This would be equivalent to WWW::Mixi->parse_list_echo(). 
     42(though the latter is not implemented yet as of writing this) 
    4143 
    4244=head1 METHOD 
     
    4749 
    4850  { 
    49     count   => 'num of lists', 
    50     recents  => [ 
    51       { 
    52         link    => 'http://mixi.jp/view_echo.pl?id=xxxx&post_time=xxxx', 
    53         id      => 'xxxx', 
    54         time    => 'yyyymmddhhmmss', 
    55         name    => 'username', 
    56         comment => 'comment', 
    57       }, 
    58     ], 
     51    link    => 'http://mixi.jp/view_echo.pl?id=xxxx&post_time=xxxx', 
     52    id      => 'xxxx', 
     53    time    => 'yyyymmddhhmmss', 
     54    name    => 'username', 
     55    comment => 'comment', 
    5956  } 
    60  
    61 Recents may be a blank array reference. 
    6257 
    6358=head1 AUTHOR 
  • lang/perl/WWW-Mixi-Scraper/trunk/lib/WWW/Mixi/Scraper/Plugin/RecentEcho.pm

    r18970 r18974  
    5353=head1 DESCRIPTION 
    5454 
     55This would be equivalent to WWW::Mixi->parse_recent_echo(). 
     56(though the latter is not implemented yet as of writing this) 
    5557 
    5658=head1 METHOD 
     
    6163 
    6264  { 
    63     count   => 'num of recents', 
    64     recents  => [ 
    65       { 
    66         link       => 'http://mixi.jp/view_echo.pl?id=xxxx&post_time=xxxx', 
    67         id         => 'xxxx', 
    68         time       => 'yyyymmddhhmmss', 
    69         name       => 'username', 
    70         comment    => 'comment', 
    71         icon       => 'icon', 
    72         reply_name => 'username', 
    73         reply_id   => 'xxxx', 
    74       }, 
    75     ], 
     65    link       => 'http://mixi.jp/view_echo.pl?id=xxxx&post_time=xxxx', 
     66    id         => 'xxxx', 
     67    time       => 'yyyymmddhhmmss', 
     68    name       => 'username', 
     69    comment    => 'comment', 
     70    icon       => 'icon', 
     71    reply_name => 'username', 
     72    reply_id   => 'xxxx', 
    7673  } 
    7774 
    78 Recents may be a blank array reference. 
     75reply_name and reply_id may be blank. 
    7976 
    8077=head1 AUTHOR 
  • lang/perl/WWW-Mixi-Scraper/trunk/lib/WWW/Mixi/Scraper/Plugin/ResEcho.pm

    r18970 r18974  
    3939=head1 DESCRIPTION 
    4040 
     41This would be equivalent to WWW::Mixi->parse_res_echo(). 
     42(though the latter is not implemented yet as of writing this) 
    4143 
    4244=head1 METHOD 
     
    4749 
    4850  { 
    49     count   => 'num of lists', 
    50     recents  => [ 
    51       { 
    52         link    => 'http://mixi.jp/view_echo.pl?id=xxxx&post_time=xxxx', 
    53         id      => 'xxxx', 
    54         time    => 'yyyymmddhhmmss', 
    55         name    => 'username', 
    56         comment => 'comment', 
    57       }, 
    58     ], 
     51    link    => 'http://mixi.jp/view_echo.pl?id=xxxx&post_time=xxxx', 
     52    id      => 'xxxx', 
     53    time    => 'yyyymmddhhmmss', 
     54    name    => 'username', 
     55    comment => 'comment', 
    5956  } 
    60  
    61 Recents may be a blank array reference. 
    6257 
    6358=head1 AUTHOR 
  • lang/perl/WWW-Mixi-Scraper/trunk/lib/WWW/Mixi/Scraper/Plugin/ViewEcho.pm

    r18970 r18974  
    3434=head1 DESCRIPTION 
    3535 
     36This would be equivalent to WWW::Mixi->parse_view_echo(). 
     37(though the latter is not implemented yet as of writing this) 
    3638 
    3739=head1 METHOD 
     
    3941=head2 scrape 
    4042 
    41 returns an hash reference of 
     43returns a hash reference of 
    4244 
    4345  { 
  • lang/perl/WWW-Mixi-Scraper/trunk/t_live/list_echo.t

    • Property svn:eol-style set to native
  • lang/perl/WWW-Mixi-Scraper/trunk/t_live/recent_echo.t

    • Property svn:eol-style set to native
  • lang/perl/WWW-Mixi-Scraper/trunk/t_live/res_echo.t

    • Property svn:eol-style set to native
  • lang/perl/WWW-Mixi-Scraper/trunk/t_live/view_echo.t

    • Property svn:eol-style set to native