Skip Menu |

This queue is for tickets about the IMDB-Movie CPAN distribution.

Report information
The Basics
Id: 4969
Status: rejected
Priority: 0/
Queue: IMDB-Movie

People
Owner: Nobody in particular
Requestors: f.zimmer [...] gmx.net
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: 0.12
Fixed in: 0.12



Subject: new features
Hello, i implement some new information runtime, tagline and countries, languages. for runtime, tagline i have to use also the German-word because i use the http://german.imdb.com host (have anyone a better idea ?). in the _cast-routine i add a new item named oder to get the actors in original order. sub _cast { my $parser = shift; my ($tag,%name,$i); ... while ($tag = $parser->get_tag('a')) { my $href = $tag->[1]{href}; if ($href) { if ($href eq 'fullcredits') { last; } else { my ($id) = $href =~ /\/name\/nm(\d+)/; if ($id) { $i++; # the order counter my $name = $parser->get_text; $name = reverse $name; my ($l,$f) = map { scalar reverse $_} split(' ',$name,2); $name{$id} = { order => $i, id => $id, last_name => $l, first_name => $f }; } } } } return {%name}; } by frank

Message body is not shown because it is too large.

Subject: IMDB::Movie on hold
Thanks to everyone for submitting these bug reports. I am planning on rewriting IMDB::Movie (using WWW::Mechanize this time) and i will review all of these bugs/feature requests/patches when i write it. jeffa
use IMDB::Film;