Changeset 18974
- Timestamp:
- 09/08/08 13:23:16 (5 years ago)
- Location:
- lang/perl/WWW-Mixi-Scraper/trunk
- Files:
-
- 12 modified
-
Changes (modified) (1 diff)
-
MANIFEST (modified) (7 diffs)
-
lib/WWW/Mixi/Scraper.pm (modified) (1 diff)
-
lib/WWW/Mixi/Scraper/Plugin/ListBookmark.pm (modified) (1 diff)
-
lib/WWW/Mixi/Scraper/Plugin/ListEcho.pm (modified) (2 diffs)
-
lib/WWW/Mixi/Scraper/Plugin/RecentEcho.pm (modified) (2 diffs)
-
lib/WWW/Mixi/Scraper/Plugin/ResEcho.pm (modified) (2 diffs)
-
lib/WWW/Mixi/Scraper/Plugin/ViewEcho.pm (modified) (2 diffs)
-
t_live/list_echo.t (modified) (1 prop)
-
t_live/recent_echo.t (modified) (1 prop)
-
t_live/res_echo.t (modified) (1 prop)
-
t_live/view_echo.t (modified) (1 prop)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/WWW-Mixi-Scraper/trunk/Changes
r18970 r18974 1 1 Revision history for WWW-Mixi-Scraper 2 3 0.19 2008/09/08 4 - oops, pods for echo stuff were stale, 5 and manifest was not updated. sorry. 2 6 3 7 0.18 2008/09/08 -
lang/perl/WWW-Mixi-Scraper/trunk/MANIFEST
r16783 r18974 6 6 lib/WWW/Mixi/Scraper/Plugin/ListComment.pm 7 7 lib/WWW/Mixi/Scraper/Plugin/ListDiary.pm 8 lib/WWW/Mixi/Scraper/Plugin/ListEcho.pm 8 9 lib/WWW/Mixi/Scraper/Plugin/ListMessage.pm 9 10 lib/WWW/Mixi/Scraper/Plugin/NewBBS.pm … … 11 12 lib/WWW/Mixi/Scraper/Plugin/NewMusic.pm 12 13 lib/WWW/Mixi/Scraper/Plugin/NewVideo.pm 14 lib/WWW/Mixi/Scraper/Plugin/RecentEcho.pm 15 lib/WWW/Mixi/Scraper/Plugin/ResEcho.pm 13 16 lib/WWW/Mixi/Scraper/Plugin/ShowCalendar.pm 14 17 lib/WWW/Mixi/Scraper/Plugin/ShowFriend.pm … … 16 19 lib/WWW/Mixi/Scraper/Plugin/ViewBBS.pm 17 20 lib/WWW/Mixi/Scraper/Plugin/ViewDiary.pm 21 lib/WWW/Mixi/Scraper/Plugin/ViewEcho.pm 18 22 lib/WWW/Mixi/Scraper/Plugin/ViewEvent.pm 19 23 lib/WWW/Mixi/Scraper/Plugin/ViewMessage.pm … … 22 26 Makefile.PL 23 27 MANIFEST This list of files 28 META.yml 24 29 README 25 30 t/00_load.t … … 30 35 t_live/list_comment.t 31 36 t_live/list_diary.t 37 t_live/list_echo.t 32 38 t_live/list_message.t 33 39 t_live/new_bbs.t … … 35 41 t_live/new_music.t 36 42 t_live/new_video.t 43 t_live/recent_echo.t 44 t_live/res_echo.t 37 45 t_live/show_calendar.t 38 46 t_live/show_friend.t … … 40 48 t_live/view_bbs.t 41 49 t_live/view_diary.t 50 t_live/view_echo.t 42 51 t_live/view_event.t 43 52 t_live/view_message.t -
lang/perl/WWW-Mixi-Scraper/trunk/lib/WWW/Mixi/Scraper.pm
r17201 r18974 4 4 use warnings; 5 5 6 our $VERSION = '0.1 8';6 our $VERSION = '0.19'; 7 7 8 8 use String::CamelCase qw( decamelize ); -
lang/perl/WWW-Mixi-Scraper/trunk/lib/WWW/Mixi/Scraper/Plugin/ListBookmark.pm
r16783 r18974 63 63 last_login => '5分以内'、 64 64 } 65 } 65 66 66 67 =head1 AUTHOR -
lang/perl/WWW-Mixi-Scraper/trunk/lib/WWW/Mixi/Scraper/Plugin/ListEcho.pm
r18970 r18974 39 39 =head1 DESCRIPTION 40 40 41 This would be equivalent to WWW::Mixi->parse_list_echo(). 42 (though the latter is not implemented yet as of writing this) 41 43 42 44 =head1 METHOD … … 47 49 48 50 { 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', 59 56 } 60 61 Recents may be a blank array reference.62 57 63 58 =head1 AUTHOR -
lang/perl/WWW-Mixi-Scraper/trunk/lib/WWW/Mixi/Scraper/Plugin/RecentEcho.pm
r18970 r18974 53 53 =head1 DESCRIPTION 54 54 55 This would be equivalent to WWW::Mixi->parse_recent_echo(). 56 (though the latter is not implemented yet as of writing this) 55 57 56 58 =head1 METHOD … … 61 63 62 64 { 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', 76 73 } 77 74 78 Recents may be a blank array reference.75 reply_name and reply_id may be blank. 79 76 80 77 =head1 AUTHOR -
lang/perl/WWW-Mixi-Scraper/trunk/lib/WWW/Mixi/Scraper/Plugin/ResEcho.pm
r18970 r18974 39 39 =head1 DESCRIPTION 40 40 41 This would be equivalent to WWW::Mixi->parse_res_echo(). 42 (though the latter is not implemented yet as of writing this) 41 43 42 44 =head1 METHOD … … 47 49 48 50 { 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', 59 56 } 60 61 Recents may be a blank array reference.62 57 63 58 =head1 AUTHOR -
lang/perl/WWW-Mixi-Scraper/trunk/lib/WWW/Mixi/Scraper/Plugin/ViewEcho.pm
r18970 r18974 34 34 =head1 DESCRIPTION 35 35 36 This would be equivalent to WWW::Mixi->parse_view_echo(). 37 (though the latter is not implemented yet as of writing this) 36 38 37 39 =head1 METHOD … … 39 41 =head2 scrape 40 42 41 returns a nhash reference of43 returns a hash reference of 42 44 43 45 { -
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
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)