SourceForge.net | 4 Sep 2010 17:16
Picon
Favicon

[ videodb-Bugs-3039326 ] VideoDB does not fetch Actor Thumbnails

Bugs item #3039326, was opened at 2010-08-04 20:11
Message generated for change (Comment added) made by ulnagar
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=586362&aid=3039326&group_id=88349

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: engines
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Ugnius Soraka (ugnius40)
Assigned to: Nobody/Anonymous (nobody)
Summary: VideoDB does not fetch Actor Thumbnails

Initial Comment:
I've updated my version as of today from CVS trying to fix problem. My VideoDB install does not show any Actor
Thumbnails in Cast, when selecting on thumbnail I get
this:
------------
URL:
http://www.imdb.com/name/nm0000168/"%20onclick="(new%20Image()).src='/rg/castlist/position-3/images/b.gif?link=/name/nm0000168/';/
Fetch time: 1s
Error: Server returned wrong status.
Header:
HTTP/1.1 404 Not Found
Date: Wed, 04 Aug 2010 10:06:05 GMT
(Continue reading)

SourceForge.net | 8 Sep 2010 18:47
Picon
Favicon

[ videodb-Bugs-3062063 ] Cover URL not displayed

Bugs item #3062063, was opened at 2010-09-08 16:47
Message generated for change (Tracker Item Submitted) made by 
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=586362&aid=3062063&group_id=88349

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: engines
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: https://www.google.com/accounts ()
Assigned to: Nobody/Anonymous (nobody)
Summary: Cover URL not displayed

Initial Comment:
Cover URL isn't displaying any longer.  Its fetching the correct URL from IMDB but doesn't display cover url
when saving.  

This is the page source of how it's trying to display the fetched cover url IMDB data.

<td class="center" rowspan="2" width="200">
<a href="http://www.imdb.com/title/tt1391137/"><img
src="img.php?url=http%3A%2F%2Fia.media-imdb.com%2Fimages%2FM%2FMV5BMjIwMDc4MDgyMF5BMl5BanBnXkFtZTcwNjgxODkxMw%40%40._V1._SX94_SY140_.jpg"
alt="" border="0" width="97" height="144" title="Visit" /></a>
</td>

(Continue reading)

mike dentifrice | 23 Sep 2010 12:41

Re: is VideoDB dead? [was: v4.0-pre?]

Hello. Anyone here?

I posted the following message three months ago. It was holidays for
some, but still. Does that mean that the VideoDB project is dead?

I certainly hope not!

mike dentifrice a dit:
> Greetings,
> 
> Browsing the blog [1], I saw that VideoDB v4.0-pre was out there (the
> post is from a year ago). I tried to get it by CVS, but ended up with a
> v3.0.3 version. This is also the version the demo [2] advertises itself
> as, though it is announced to be 4.0-pre in the previously mentionned
> post.
> 
> So I'm a little confused. Can someone clear out the doubt?
> 
> Thanks!
> 
> PS: is there a TODO/roadmap about features to be implemented somewhere?
> 
> 1. http://www.videodb.net/blog/?p=27
> 2. http://videodb.net/demo/

--

-- 
mike dentifrice <fluor@...>

------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
(Continue reading)

robelix | 23 Sep 2010 23:11
Picon

imdb engine patch

Hi,

Here is a small patch to correct fetching languages from imdb

Roland

Index: engines/imdb.php
===================================================================
RCS file: /cvsroot/videodb/videodb/engines/imdb.php,v
retrieving revision 1.59
diff -u -8 -p -w -r1.59 imdb.php
--- engines/imdb.php	27 Mar 2010 12:05:30 -0000	1.59
+++ engines/imdb.php	23 Sep 2010 21:05:34 -0000
 <at>  <at>  -180,17 +180,17  <at>  <at>  function imdbData($imdbID) 
     $data['rating']   = trim($ary[1]);

     // Countries
     preg_match('/<h5>Country:<\/h5>(.+?)<\/div>/si', $resp['data'], $ary);
     preg_match_all('/<A HREF="\/Sections\/Countries\/.+?\/">(.+?)<\/A>/si', $ary[1], $ary, PREG_PATTERN_ORDER);
     $data['country']  = trim(join(', ', $ary[1]));

     // Languages
-    preg_match_all('/<A HREF="\/Sections\/Languages\/.+?\/">(.+?)<\/A>/si', $resp['data'], $ary, PREG_PATTERN_ORDER);
+    preg_match_all('/<A HREF="\/Sections\/Languages\/.+?">(.+?)<\/A>/si', $resp['data'], $ary, PREG_PATTERN_ORDER);
     $data['language'] = trim(strtolower(join(', ', $ary[1])));

     // Plot (movies in their early stages have the plot here but not yet in plotsummary?)
     preg_match('/<h5>Plot Outline:<\/h5>\s+(.*?)<\/div>/si', $resp['data'], $ary);
(Continue reading)

robelix | 23 Sep 2010 23:59
Picon

Yet another imdb-engine patch

Hi, again

Yet another patch for the imdb-engine - this one enables it to get the
year for episodes of tv-series

Index: engines/imdb.php
===================================================================
RCS file: /cvsroot/videodb/videodb/engines/imdb.php,v
retrieving revision 1.59
diff -u -8 -p -w -r1.59 imdb.php
--- engines/imdb.php	27 Mar 2010 12:05:30 -0000	1.59
+++ engines/imdb.php	23 Sep 2010 21:53:27 -0000
 <at>  <at>  -148,16 +148,22  <at>  <at>  function imdbData($imdbID) 
     list($t, $s)      = explode(' - ', trim($ary[1]), 2);
     $data['title']    = html_clean($t);
     $data['subtitle'] = html_clean($s);

     // Year
     preg_match('/<A HREF="\/year\/([1-2][0-9][0-9][0-9])\/?">([1-2][0-9][0-9][0-9])<\/A>/i',
$resp['data'], $ary);
     $data['year']     = trim($ary[1]);

+    // Year for tv series episodes
+    if (!$data['year']) {
+    	preg_match('/<title>.+?\(([1-2][0-9][0-9][0-9])\)<\/title>/i', $resp['data'], $ary);
+    	$data['year'] = trim($ary[1]);
+    }
+
(Continue reading)

Pascal | 27 Sep 2010 17:21

Re: imdb engine patch

Thanks, could you also try to fix the fetching of the country ?
It doesn't seem to work anymore.

Le jeudi 23 septembre 2010 à 23:11 +0200, robelix a écrit :
> Hi,
> 
> Here is a small patch to correct fetching languages from imdb
> 
> 
> Roland

------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
videodb-devel mailing list
videodb-devel <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/videodb-devel
Andreas Goetz | 28 Sep 2010 10:17
Picon
Picon

Re: imdb engine patch

Hi Pascal, Roland,

I can't find the original email containing the patch- could you resend that one?

Best regards,
Andreas


On 27.09.2010 17:21, Pascal wrote:
Thanks, could you also try to fix the fetching of the country ? It doesn't seem to work anymore. Le jeudi 23 septembre 2010 à 23:11 +0200, robelix a écrit :
Hi, Here is a small patch to correct fetching languages from imdb Roland
------------------------------------------------------------------------------ Start uncovering the many advantages of virtual appliances and start using them to simplify application deployment and accelerate your shift to cloud computing. http://p.sf.net/sfu/novell-sfdev2dev _______________________________________________ videodb-devel mailing list videodb-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org https://lists.sourceforge.net/lists/listinfo/videodb-devel
------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
videodb-devel mailing list
videodb-devel@...
https://lists.sourceforge.net/lists/listinfo/videodb-devel
Stevie Robinson | 28 Sep 2010 10:20
Picon
Favicon
Gravatar

Fwd: imdb engine patch

As requested here is the original patch. There was all also another one submitted on that day, do you have if
or need a copy?

Sent from my iPhone

Begin forwarded message:

> From: robelix <robelx@...>
> Date: 23 September 2010 22:11:05 GMT+01:00
> To: videodb-devel@...
> Subject: [videodb-devel] imdb engine patch
> Reply-To: videodb-devel@...
> 

> Hi,
> 
> Here is a small patch to correct fetching languages from imdb
> 
> 
> Roland
> 
> 
> ------------------------------------------------------------------------------
> Nokia and AT&T present the 2010 Calling All Innovators-North America contest
> Create new apps & games for the Nokia N8 for consumers in  U.S. and Canada
> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing
> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store 
> http://p.sf.net/sfu/nokia-dev2dev
> _______________________________________________
> videodb-devel mailing list
> videodb-devel@...
> https://lists.sourceforge.net/lists/listinfo/videodb-devel
------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
videodb-devel mailing list
videodb-devel@...
https://lists.sourceforge.net/lists/listinfo/videodb-devel
robelix | 29 Sep 2010 00:49
Picon

Re: imdb engine patch

On 2010-09-27 17:21, Pascal wrote:
> Thanks, could you also try to fix the fetching of the country ?
> It doesn't seem to work anymore.

Yepp, the country was also changed at imdb.

Here is a combined patch for all 3 fixes - language, country and
episode-year.

Roland
Index: engines/imdb.php
===================================================================
RCS file: /cvsroot/videodb/videodb/engines/imdb.php,v
retrieving revision 1.59
diff -u -8 -p -w -r1.59 imdb.php
--- engines/imdb.php	27 Mar 2010 12:05:30 -0000	1.59
+++ engines/imdb.php	28 Sep 2010 22:38:15 -0000
 <at>  <at>  -148,16 +148,22  <at>  <at>  function imdbData($imdbID) 
     list($t, $s)      = explode(' - ', trim($ary[1]), 2);
     $data['title']    = html_clean($t);
     $data['subtitle'] = html_clean($s);

     // Year
     preg_match('/<A HREF="\/year\/([1-2][0-9][0-9][0-9])\/?">([1-2][0-9][0-9][0-9])<\/A>/i',
$resp['data'], $ary);
     $data['year']     = trim($ary[1]);

+    // Year for tv series episodes
+    if (!$data['year']) {
+    	preg_match('/<title>.+?\(([1-2][0-9][0-9][0-9])\)<\/title>/i', $resp['data'], $ary);
+    	$data['year'] = trim($ary[1]);
+    }
+
     // Cover URL
     preg_match('/name="poster".+?<IMG.+?(http:\/\/.+?\.(jpe?g|gif))/i', $resp['data'], $ary);
     $data['coverurl'] = trim($ary[1]);

     // MPAA Rating
     preg_match('/<A HREF="\/mpaa">MPAA<\/A>:<\/h5>.+?<div class="info-content">(.+?)<\/div>/is',
$resp['data'], $ary);
     $data['mpaa']     = trim($ary[1]);

 <at>  <at>  -176,21 +182,21  <at>  <at>  function imdbData($imdbID) 
     $data['director']  = trim(join(', ', $ary[1]));

     // Rating
     preg_match('/<b>([0-9.]+)\/10<\/b>[^<]*<a href="ratings" class="tn15more">[0-9,]+
votes<\/a>/si', $resp['data'], $ary);
     $data['rating']   = trim($ary[1]);

     // Countries
     preg_match('/<h5>Country:<\/h5>(.+?)<\/div>/si', $resp['data'], $ary);
-    preg_match_all('/<A HREF="\/Sections\/Countries\/.+?\/">(.+?)<\/A>/si', $ary[1], $ary, PREG_PATTERN_ORDER);
+    preg_match_all('/<A HREF="\/Country\/.+?">(.+?)<\/A>/si', $ary[1], $ary, PREG_PATTERN_ORDER);;
     $data['country']  = trim(join(', ', $ary[1]));

     // Languages
-    preg_match_all('/<A HREF="\/Sections\/Languages\/.+?\/">(.+?)<\/A>/si', $resp['data'], $ary, PREG_PATTERN_ORDER);
+    preg_match_all('/<A HREF="\/Sections\/Languages\/.+?">(.+?)<\/A>/si', $resp['data'], $ary, PREG_PATTERN_ORDER);
     $data['language'] = trim(strtolower(join(', ', $ary[1])));

     // Plot (movies in their early stages have the plot here but not yet in plotsummary?)
     preg_match('/<h5>Plot Outline:<\/h5>\s+(.*?)<\/div>/si', $resp['data'], $ary);
     if (!empty($ary[1])) $data['plot'] = trim($ary[1]);

     // Genres (as Array)
     preg_match('/<h5>Genre:<\/h5>(.+?)<\/div>/si', $resp['data'], $ary);
------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
videodb-devel mailing list
videodb-devel@...
https://lists.sourceforge.net/lists/listinfo/videodb-devel
Andreas Goetz | 29 Sep 2010 22:18
Picon
Picon

Re: Fwd: imdb engine patch

Not sure language is working- and most other engines are currently borked.. sorry, no time to investigate :(

Starting tests.

allocine

Fail: ./test/test_allocine.php -> TestAllocine -> testMovie -> Equal expectation fails as [NULL] does not match [Integer: 1999] at [D:\data\htdocs\videodb\test\test_allocine.php line 38]
Fail: ./test/test_allocine.php -> TestAllocine -> testMovie -> Equal expectation fails at character 0 with [0] and [133] at [D:\data\htdocs\videodb\test\test_allocine.php line 40]
Fail: ./test/test_allocine.php -> TestAllocine -> testMovie -> at [D:\data\htdocs\videodb\test\test_allocine.php line 42]
Fail: ./test/test_allocine.php -> TestAllocine -> testMovie -> Equal expectation fails as [NULL] does not match [String: USA] at [D:\data\htdocs\videodb\test\test_allocine.php line 44]
Fail: ./test/test_allocine.php -> TestAllocine -> testMovie -> Equal expectation fails at character 0 with [,,,,,,,,,,,,,,,,,,,,,,,,,,,,Action,Adventure,Fantasy,Sci-Fi] and [Adventure,Fantasy,Sci-Fi] at [D:\data\htdocs\videodb\test\test_allocine.php line 47]
Fail: ./test/test_allocine.php -> TestAllocine -> testMovie2 -> Equal expectation fails as [NULL] does not match [Integer: 2004] at [D:\data\htdocs\videodb\test\test_allocine.php line 72]
Fail: ./test/test_allocine.php -> TestAllocine -> testMovie2 -> Equal expectation fails at character 0 with [0] and [140] at [D:\data\htdocs\videodb\test\test_allocine.php line 74]
Fail: ./test/test_allocine.php -> TestAllocine -> testMovie2 -> at [D:\data\htdocs\videodb\test\test_allocine.php line 76]
Fail: ./test/test_allocine.php -> TestAllocine -> testMovie2 -> Equal expectation fails as [NULL] does not match [String: USA] at [D:\data\htdocs\videodb\test\test_allocine.php line 78]
Fail: ./test/test_allocine.php -> TestAllocine -> testMovie2 -> Equal expectation fails at character 0 with [,,,,,,,,,,,,,,,,,,,,,,,Action,Action,Sci-Fi] and [Action,Sci-Fi] at [D:\data\htdocs\videodb\test\test_allocine.php line 81]
1/1 test cases complete: 36 passes, 10 fails and 0 exceptions.

amazonaws

Fail: ./test/test_amazonaws.php -> TestAmazonAWS -> testSearch -> at [D:\data\htdocs\videodb\test\test_amazonaws.php line 54]
1/1 test cases complete: 12 passes, 1 fails and 0 exceptions.

dvdb

Fail: ./test/test_dvdb.php -> TestDVDB -> testMovie -> Equal expectation fails at character 0 with [HTTP Status 404] and [Star Wars: Episode I] at [D:\data\htdocs\videodb\test\test_dvdb.php line 34]
Fail: ./test/test_dvdb.php -> TestDVDB -> testMovie -> Equal expectation fails at character 0 with [/dvdb/discover/dvd/details] and [Die dunkle Bedrohung] at [D:\data\htdocs\videodb\test\test_dvdb.php line 35]
Fail: ./test/test_dvdb.php -> TestDVDB -> testMovie -> Equal expectation fails as [NULL] does not match [String: Star Wars: Episode I - The Phantom Menace] at [D:\data\htdocs\videodb\test\test_dvdb.php line 36]
Fail: ./test/test_dvdb.php -> TestDVDB -> testMovie -> Equal expectation fails as [NULL] does not match [Integer: 1999] at [D:\data\htdocs\videodb\test\test_dvdb.php line 37]
Fail: ./test/test_dvdb.php -> TestDVDB -> testMovie -> Pattern [#http://www.dvdb.de/dvdpix/big/.*\.jpg#] not detected in [NULL] at [D:\data\htdocs\videodb\test\test_dvdb.php line 38]
Fail: ./test/test_dvdb.php -> TestDVDB -> testMovie -> Equal expectation fails as [NULL] does not match [Integer: 130] at [D:\data\htdocs\videodb\test\test_dvdb.php line 39]
Fail: ./test/test_dvdb.php -> TestDVDB -> testMovie -> Equal expectation fails as [NULL] does not match [String: George Lucas] at [D:\data\htdocs\videodb\test\test_dvdb.php line 40]
Fail: ./test/test_dvdb.php -> TestDVDB -> testMovie -> at [D:\data\htdocs\videodb\test\test_dvdb.php line 41]
Fail: ./test/test_dvdb.php -> TestDVDB -> testMovie -> Equal expectation fails as [NULL] does not match [String: USA] at [D:\data\htdocs\videodb\test\test_dvdb.php line 43]
Fail: ./test/test_dvdb.php -> TestDVDB -> testMovie -> Equal expectation fails as [NULL] does not match [String: 6] at [D:\data\htdocs\videodb\test\test_dvdb.php line 44]
Fail: ./test/test_dvdb.php -> TestDVDB -> testMovie -> Equal expectation fails as [NULL] does not match [String: german, english] at [D:\data\htdocs\videodb\test\test_dvdb.php line 45]
Fail: ./test/test_dvdb.php -> TestDVDB -> testMovie -> Equal expectation fails as [NULL] does not match [String: Sci-Fi] at [D:\data\htdocs\videodb\test\test_dvdb.php line 46]
Fail: ./test/test_dvdb.php -> TestDVDB -> testMovie -> Pattern [/Liam Neeson\n/s] not detected in [String: ] at [D:\data\htdocs\videodb\test\test_dvdb.php line 48]
Fail: ./test/test_dvdb.php -> TestDVDB -> testMovie -> Pattern [/Ewan McGregor\n/s] not detected in [String: ] at [D:\data\htdocs\videodb\test\test_dvdb.php line 49]
Fail: ./test/test_dvdb.php -> TestDVDB -> testMovie -> Pattern [/Naboo mit seiner Königin/] not detected in [NULL] at [D:\data\htdocs\videodb\test\test_dvdb.php line 50]
Exception: ./test/test_dvdb.php -> TestDVDB -> testMovie -> Unexpected PHP error [join() [<a href='function.join'>function.join</a>]: Invalid arguments passed] severity [E_WARNING] in [D:\data\htdocs\videodb\test\test_dvdb.php line 46]
Fail: ./test/test_dvdb.php -> TestDVDB -> testSearch -> at [D:\data\htdocs\videodb\test\test_dvdb.php line 67]
Fail: ./test/test_dvdb.php -> TestDVDB -> testSearch -> Equal expectation fails as [NULL] does not match [String: dvdb:37649] at [D:\data\htdocs\videodb\test\test_dvdb.php line 70]
Fail: ./test/test_dvdb.php -> TestDVDB -> testSearch -> Equal expectation fails as [NULL] does not match [String: Clerks 2 - Die Abhänger - DVD - USA (2006) 03.12.2007 fsk16 92min] at [D:\data\htdocs\videodb\test\test_dvdb.php line 71]
Fail: ./test/test_dvdb.php -> TestDVDB -> testSearch -> at [D:\data\htdocs\videodb\test\test_dvdb.php line 67]
Fail: ./test/test_dvdb.php -> TestDVDB -> testSearch -> Equal expectation fails as [NULL] does not match [String: dvdb:37649] at [D:\data\htdocs\videodb\test\test_dvdb.php line 70]
Fail: ./test/test_dvdb.php -> TestDVDB -> testSearch -> Equal expectation fails as [NULL] does not match [String: Clerks 2 - Die Abhänger - DVD - USA (2006) 03.12.2007 fsk16 92min] at [D:\data\htdocs\videodb\test\test_dvdb.php line 71]
Fail: ./test/test_dvdb.php -> TestDVDB -> testSearch -> at [D:\data\htdocs\videodb\test\test_dvdb.php line 67]
Fail: ./test/test_dvdb.php -> TestDVDB -> testSearch -> Equal expectation fails as [NULL] does not match [String: dvdb:37649] at [D:\data\htdocs\videodb\test\test_dvdb.php line 70]
Fail: ./test/test_dvdb.php -> TestDVDB -> testSearch -> Equal expectation fails as [NULL] does not match [String: Clerks 2 - Die Abhänger - DVD - USA (2006) 03.12.2007 fsk16 92min] at [D:\data\htdocs\videodb\test\test_dvdb.php line 71]
Fail: ./test/test_dvdb.php -> TestDVDB -> testSearch2 -> at [D:\data\htdocs\videodb\test\test_dvdb.php line 83]
Fail: ./test/test_dvdb.php -> TestDVDB -> testSearch2 -> Equal expectation fails as [NULL] does not match [String: dvdb:6554] at [D:\data\htdocs\videodb\test\test_dvdb.php line 88]
Fail: ./test/test_dvdb.php -> TestDVDB -> testSearch2 -> Equal expectation fails as [NULL] does not match [String: Arac Attack - Angriff der achtbeinigen Monster - DVD - USA (2002) 16.01.2003 fsk12 96min] at [D:\data\htdocs\videodb\test\test_dvdb.php line 89]
1/1 test cases complete: 7 passes, 27 fails and 1 exceptions.

dvdfr

Fail: ./test/test_dvdfr.php -> TestDVDFR -> testMovie -> Equal expectation fails at character 38 with [Star Wars - Episode I - La Menace Fantme] and [Star Wars - Episode I - La Menace Fantôme] at [D:\data\htdocs\videodb\test\test_dvdfr.php line 50]
1/1 test cases complete: 18 passes, 1 fails and 0 exceptions.

google

1/1 test cases complete: 4 passes, 0 fails and 0 exceptions.

imdb

Fail: ./test/test_imdb.php -> TestIMDB -> testMovie -> Equal expectation fails at character 0 with [View content advisory for parents] and [Rated PG for sci-fi action/violence.] at [D:\data\htdocs\videodb\test\test_imdb.php line 38]
Fail: ./test/test_imdb.php -> TestIMDB -> testMovie -> Equal expectation fails at character 0 with [] and [english] at [D:\data\htdocs\videodb\test\test_imdb.php line 45]
1/1 test cases complete: 55 passes, 2 fails and 0 exceptions.

isohunt

1/1 test cases complete: 2 passes, 0 fails and 0 exceptions.

ofdb


( ! ) Fatal error: Maximum execution time of 30 seconds exceeded in D:\data\htdocs\videodb\core\httpclient.php on line 276 Call Stack # Time Memory Function Location
1 0.0011 349120 {main}( ) ..\index.php:0
2 27.1003 3944648 TestSuite->run( ) ..\index.php:66
3 27.1005 3944792 TestSuite->run( ) ..\test_case.php:598
4 27.1006 3945360 SimpleTestCase->run( ) ..\test_case.php:595
5 27.1027 3945408 SimpleExceptionTrappingInvoker->invoke( ) ..\test_case.php:143
6 27.1027 3945440 SimpleInvokerDecorator->invoke( ) ..\exceptions.php:43
7 27.1027 3945440 SimpleErrorTrappingInvoker->invoke( ) ..\invoker.php:126
8 27.1028 3945472 SimpleInvokerDecorator->invoke( ) ..\errors.php:49
9 27.1028 3945472 SimpleInvoker->invoke( ) ..\invoker.php:126
10 27.1028 3945504 TestOFDB->testMovie( ) ..\invoker.php:68
11 27.1028 3945600 engineGetData( ) ..\test_ofdb.php:26
12 27.1053 4101336 ofdbData( ) ..\engines.php:90
13 27.1057 4102328 httpClient( ) ..\ofdb.php:190
14 27.3530 4107096 httpClient( ) ..\httpclient.php:345


On 28.09.2010 10:20, Stevie Robinson wrote:
As requested here is the original patch. There was all also another one submitted on that day, do you have if or need a copy?

Sent from my iPhone

Begin forwarded message:

From: robelix <robelx-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Date: 23 September 2010 22:11:05 GMT+01:00
To: videodb-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
Subject: [videodb-devel] imdb engine patch
Reply-To: videodb-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org

Hi,

Here is a small patch to correct fetching languages from imdb


Roland



------------------------------------------------------------------------------
Nokia and AT&T present the 2010 Calling All Innovators-North America contest
Create new apps & games for the Nokia N8 for consumers in  U.S. and Canada
$10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing
Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store
http://p.sf.net/sfu/nokia-dev2dev
------------------------------------------------------------------------------ Start uncovering the many advantages of virtual appliances and start using them to simplify application deployment and accelerate your shift to cloud computing. http://p.sf.net/sfu/novell-sfdev2dev _______________________________________________ videodb-devel mailing list videodb-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org https://lists.sourceforge.net/lists/listinfo/videodb-devel
------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
videodb-devel mailing list
videodb-devel@...
https://lists.sourceforge.net/lists/listinfo/videodb-devel

Gmane