<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/19513" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2016-02-15T15:02:31-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/19513</id>

		<entry>
		<author><name><![CDATA[Gordon]]></name></author>
		<updated>2016-02-15T15:02:31-04:00</updated>

		<published>2016-02-15T15:02:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104701#p104701</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104701#p104701"/>
		<title type="html"><![CDATA[IMDB script question]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104701#p104701"><![CDATA[
Is there eggdrop script equivalent of this <a href="https://github.com/butterscotchstallion/limnoria-plugins/tree/master/SpiffyTitles" class="postlink">https://github.com/butterscotchstallion ... iffyTitles</a> ?<br><br>It handles more types of links but I am interested in this.<blockquote class="uncited"><div>imdb handler<br><br>Queries the OMDB API to get additional information about IMDB links<br><br>imdbHandlerEnabled - Whether to show additional information about IMDB links<br><br>imdbTemplate - This is the template used for IMDB links<br><br>Default value: ^ {{Title}} ({{Year}}, {{Country}}) - Rating: {{imdbRating}} :: {{Plot}}</div></blockquote><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8876">Gordon</a> — Mon Feb 15, 2016 3:02 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Votex]]></name></author>
		<updated>2015-09-18T09:58:03-04:00</updated>

		<published>2015-09-18T09:58:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104424#p104424</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104424#p104424"/>
		<title type="html"><![CDATA[IMDB script question]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104424#p104424"><![CDATA[
@arkadio the script you posted is not working<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12408">Votex</a> — Fri Sep 18, 2015 9:58 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[arkadio]]></name></author>
		<updated>2015-09-01T18:20:10-04:00</updated>

		<published>2015-09-01T18:20:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104393#p104393</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104393#p104393"/>
		<title type="html"><![CDATA[IMDB script question]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104393#p104393"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code># IMDb query v1.17 (updated by username@egghelp.org forums)# Copyright (C) 2007-2009 perpleXa# http://perplexa.ugug.org / #perpleXa on QuakeNet## Redistribution, with or without modification, are permitted provided# that redistributions retain the above copyright notice, this condition# and the following disclaimer.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY, to the extent permitted by law; without# even the implied warranty of MERCHANTABILITY or FITNESS FOR A# PARTICULAR PURPOSE.## Usage:#  !movie &lt;title&gt;package require http 2.7; # TCL 8.5namespace eval imdb {  variable version 1.17;  # Headers color  variable color1 \00301  # Information color  variable color2 \00304  # flood protection (seconds)  variable antiflood "10";  # character encoding  variable encoding "utf-8";  # user agent  variable agent "Mozilla/5.0 (X11; U; Linux i686; en-GB; rv:1.8.1) Gecko/2006101023 Firefox/2.0";  # internal  bind pub -|- "!imdb" [namespace current]::public;  bind msg -|- "!imdb" [namespace current]::private;  variable flood;  namespace export *;}proc imdb::public {nick host hand chan argv} {  imdb::main $nick $host $hand $chan $argv}proc imdb::private {nick host hand argv} {  imdb::main $nick $host $hand $nick $argv}proc imdb::main {nick host hand chan argv} {  variable flood; variable antiflood;  variable color1; variable color2;  if {![info exists flood($chan)]} { set flood($chan) 0; }  if {[unixtime] - $flood($chan) &lt;= $antiflood} { return 0; }  set flood($chan) [unixtime];  set argv [string trim $argv];  if {$argv == ""} {    puthelp "NOTICE $nick :\002${color1}Syntax\002: ${color2}$::lastbind &lt;title&gt;\003";    return 0;  }  set id [id $argv];  if {$id == ""} {    chanmsg $chan "${color1}Filme não encontrado: ${color2}$argv";    return 0;  }  set info [getinfo $id];  if {![llength $info]} {    chanmsg $chan "${color1}Não foi possível ler as informações para ${color2}$id${color1}.\003";    return 0;  }  for {set i 0} {$i &lt; [llength $info]} {incr i} {    set info [lreplace $info $i $i [decode [lindex $info $i]]];  }  set name     [lindex $info 0];   set year      [lindex $info 1];  set desc     [lindex $info 2];   set dir       [lindex $info 3];  set rel      [lindex $info 4];   set storyline [lindex $info 5];  set keywords [lindex $info 6];   set country   [lindex $info 7];  set genre    [lindex $info 8];   set language  [lindex $info 9];  set aka      [lindex $info 10];  set runtime   [lindex $info 11];  set rating   [lindex $info 12];  set votes     [lindex $info 13];  set top5000   [lindex $info 14]; set stars   [lindex $info 15];  set alsoliked [lindex $info 16]; set budget [lindex $info 17];  if {$name == ""} {    chanmsg $chan "${color1}Couldn't get information for movie id ${color2}$id${color1}.\003";    return 0;  }  if {$rating == "-"} {      set rating_ 0  } else {      set rating_ $rating  }  chanmsg $chan "\002${color2}$name\002${color1}. \002Nota:\002 [bar $rating_] $color2$rating${color1}/10\003${color1}; \002${color1}Diretor\002: ${color2}$dir${color1}; ${color1}\002Lançamento\002: ${color2}$rel\003; \002${color1}Atores\002: ${color2}$stars${color1}; \002${color1}Link\002: \00312\037http://imdb.com/title/$id\037\003"  chanmsg $chan "\002${color1}Descrição: \002${color2}$desc\003";  #chanmsg $chan "\002${color1}Top 5000\002 ${color2}$top5000\003";  #chanmsg $chan "\002${color1}Stars\002: ${color2}$stars \002${color1}Director\002: ${color2}$dir ${color1}\002Release date\002: ${color2}$rel\003";  #chanmsg $chan "\002${color1}Storyline\002: ${color2}$storyline\003 ...";  #chanmsg $chan "\002${color1}Plot keywords\002: ${color2}$keywords ${color1}\002Genre\002: ${color2}$genre\003";  #chanmsg $chan "\002${color1}Language\002: ${color2}$language ${color1}\002Country\002: ${color2}$country ${color1}\002Runtime\002: ${color2}$runtime ${color1}\002Budget\002: ${color2}$budget ${color1}\002Link\002: \00312\037http://imdb.com/title/$id\037\003";  #chanmsg $chan "\002${color1}People who liked this also liked\002: ${color2}$alsoliked\003";}proc imdb::bar {float} {  set stars [format "%1.0f" $float];  return "\00312\[\00307[string repeat "*" $stars]\00314[string repeat "-" [expr 10-$stars]]\00312\]\003";}proc imdb::chanmsg {chan text} {  if {[validchan $chan]} {    if {[string first "c" [lindex [split [getchanmode $chan]] 0]] &gt;= 0} {      regsub -all {(?:\002|\003([0-9]{1,2}(,[0-9]{1,2})?)?|\017|\026|\037)} $text "" text;    }  }  putquick "PRIVMSG $chan :$text";}proc imdb::id {movie} {  variable agent;  http::config -useragent $agent;  if {[catch {http::geturl "http://www.imdb.com/find?q=[urlencode $movie]&amp;s=all" -timeout 20000} token]} {    return;  }  set data [http::data $token];  set code [http::ncode $token];  set meta [http::meta $token];  http::cleanup $token;  if {$code == 200} {    set id "";    regexp -nocase -- {&lt;a href="/title/(tt[0-9]+)/\?ref_=fn_al_tt_[0-9]" &gt;&lt;img src="http://ia.media-imdb.com/images/M.*?} $data -&gt; id;    return $id;  } else {    foreach {var val} $meta {      if {![string compare -nocase "Location" $var]} {        regexp -nocase {tt\d+} $val val;        return $val;      }    }  }}proc imdb::getinfo {id} {  variable agent;   variable color1;  variable color2;  http::config -useragent $agent;  if {[catch {http::geturl "http://www.imdb.com/title/$id/" -timeout 20000} token]} {    return;  }  set data [http::data $token];  set data [encoding convertfrom utf-8 $data]  regsub -all -- {\r|\n} $data "" data;  http::cleanup $token;  set name ""; set year ""; set desc ""; set dir ""; set rel ""; set genre ""; set country ""; set plot "";  set rating 0; set votes ""; set runtime ""; set language ""; set storyline ""; set keywords ""; set aka "";  set top5000 ""; set stars ""; set alsoliked ""; set budget "";  ### Main.  regexp -nocase -- {&lt;a href="/year/.*?" &gt;(.*?)&lt;/a&gt;.*?&lt;span class="title-extra" itemprop="name"&gt;(.*?)&lt;i&gt;} $data -&gt; year name;  if {$name == ""} {      regexp -nocase -- {&lt;h1 class="header"&gt; &lt;span class="itemprop" itemprop="name"&gt;(.*?)&lt;/span} $data -&gt; name;  }  if {$year == ""} {      regexp -nocase -- {&lt;a href="/year/.*?" &gt;(.*?)&lt;/a&gt;} $data -&gt; year;  }  regexp -nocase -- {&lt;p itemprop="description"&gt;(.*?)&lt;/p&gt;} $data -&gt; desc;  regexp -nocase -- {Director:(.*?)&lt;/a&gt;} $data -&gt; dir;  regsub -all "&lt;.*?&gt;" $dir "" dir  regexp -- {Release Date:&lt;/h4&gt;(.*?)&lt;span class="see-more inline"&gt;} $data -&gt; rel;  regsub -all "&lt;.*?&gt;" $rel "" rel  ### Stars.  regexp -nocase -- {Stars:&lt;/h4&gt;(.*?)&lt;/div&gt;} $data -&gt; stars_;  foreach {null star} [regexp -all -nocase -inline -- {&lt;span class="itemprop" itemprop="name"&gt;(.*?)&lt;/span&gt;} $stars_] {    lappend stars [string trim $star]  }  ### Storyline.  if {$storyline == ""} {      regexp -nocase -- {h2&gt;Storyline&lt;/h2&gt;(.*?)&lt;em class="nobr"&gt;} $data -&gt; storyline;      regsub -all "&lt;p&gt;" $storyline "" storyline      regsub -all "&lt;.*?&gt;" $storyline "" storyline  }  ### Keywords.  foreach {null plkw} [regexp -all -nocase -inline -- {&lt;span class="itemprop" itemprop="keywords"&gt;(.*?)&lt;/span&gt;} $data] {    lappend keywords [string trim $plkw]  }    ### Genre.  foreach {null gen} [regexp -all -nocase -inline -- {&lt;a href="/genre/.*?\?ref_=tt_stry_gnr" &gt;(.*?)&lt;/a&gt;} $data] {    lappend genre [string trim $gen]  }  ### Language.  foreach {null lang} [regexp -all -nocase -inline -- {&lt;a href="/language/.*?&gt;(.*?)&lt;/a&gt;} $data] {    lappend language [string trim $lang];  }    ### Country.  foreach {null coun} [regexp -all -nocase -inline -- {&lt;a href="/country/.*?&gt;(.*?)&lt;/a&gt;} $data] {    lappend country [string trim $coun];  }  ### AKA.  regexp -nocase -- {&lt;h4 class="inline"&gt;Also Known As:&lt;/h4&gt;(.*?)&lt;} $data -&gt; aka;  regsub -all "&lt;.*?&gt;" $aka "" aka  ### Technical Specs.  regexp -- {Runtime:&lt;/h4&gt;(.*?)&lt;/div&gt;} $data -&gt; runtime;  regsub -all "&lt;.*?&gt;" $runtime "" runtime  regsub -all {\s+} $runtime " " runtime  regexp -nocase -- {&lt;span itemprop="ratingValue"&gt;(.*?)&lt;/span&gt;} $data -&gt; rating;  regexp -nocase -- {href="ratings".*?&gt;(.*?) votes&lt;/a&gt;\)} $data -&gt; votes;  regsub -all "&lt;.*?&gt;" $votes "" votes  ### Top 5000  regexp -nocase -- {&lt;div id="meterChangeRow" class="meterToggleOnHover"&gt;(.*?)&lt;/div&gt;} $data -&gt; top5000;  regsub -all "&lt;.*?&gt;" $top5000 "" top5000  regsub -all "\n" $top5000 "" top5000  regsub -all {\s+} $top5000 " " top5000  ### Also.  regexp -nocase -- {People who liked this also liked(.*?)&lt;div class="rec_nav"&gt;} $data -&gt; also_;  if {[info exists also_] &amp;&amp; $also_ != ""} {      foreach {null alsol} [regexp -all -nocase -inline -- {&lt;img height="113" width="76" alt="(.*?)"} $also_] {            lappend alsoliked [string trim $alsol]      }  }    ### Budget.  regexp -nocase -- {&lt;h4 class="inline"&gt;Budget:&lt;/h4&gt;(.*?)&lt;span} $data -&gt; budget;  regsub -all "&lt;.*?&gt;" $budget "" budget  regsub -all "\n" $budget "" budget  regsub -all {\s+} $budget " " budget  return [list [string trim $name] $year [string trim $desc] [string trim $dir] [string trim $rel] [string range [string trim $storyline] 0 200] [join $keywords "$color1/$color2"] [join $country "$color1/$color2"] [join $genre "$color1/$color2"] [join $language "$color1/$color2"] [string trim $aka] [string trim $runtime] $rating $votes [string trim $top5000] [join $stars "$color1/$color2"] [join [lrange $alsoliked 0 5] "$color1/$color2"] [string trim $budget]];}proc imdb::urlencode {i} {  variable encoding  set index 0;  set i [encoding convertto $encoding $i]  set length [string length $i]  set n ""  while {$index &lt; $length} {    set activechar [string index $i $index]    incr index 1    if {![regexp {^[a-zA-Z0-9]$} $activechar]} {      append n %[format "%02X" [scan $activechar %c]]    } else {      append n $activechar    }  }  return $n}proc imdb::decode {content} {  if {$content == ""} {    return "n/a";  }  if {![string match *&amp;* $content]} {    return $content;  }  set escapes {      \x20 " \x22 &amp; \x26 &amp;apos; \x27 – \x2D    &lt; \x3C &gt; \x3E ˜ \x7E € \x80 ¡ \xA1    ¢ \xA2 £ \xA3 ¤ \xA4 ¥ \xA5 ¦ \xA6    § \xA7 ¨ \xA8 © \xA9 ª \xAA « \xAB    ¬ \xAC ­ \xAD ® \xAE &amp;hibar; \xAF ° \xB0    ± \xB1 ² \xB2 ³ \xB3 ´ \xB4 µ \xB5    ¶ \xB6 · \xB7 ¸ \xB8 ¹ \xB9 º \xBA    » \xBB ¼ \xBC ½ \xBD ¾ \xBE ¿ \xBF    À \xC0 Á \xC1 Â \xC2 Ã \xC3 Ä \xC4    Å \xC5 Æ \xC6 Ç \xC7 È \xC8 É \xC9    Ê \xCA Ë \xCB Ì \xCC Í \xCD Î \xCE    Ï \xCF Ð \xD0 Ñ \xD1 Ò \xD2 Ó \xD3    Ô \xD4 Õ \xD5 Ö \xD6 × \xD7 Ø \xD8    Ù \xD9 Ú \xDA Û \xDB Ü \xDC Ý \xDD    Þ \xDE ß \xDF à \xE0 á \xE1 â \xE2    ã \xE3 ä \xE4 å \xE5 æ \xE6 ç \xE7    è \xE8 é \xE9 ê \xEA ë \xEB ì \xEC    í \xED î \xEE ï \xEF ð \xF0 ñ \xF1    ò \xF2 ó \xF3 ô \xF4 õ \xF5 ö \xF6    ÷ \xF7 ø \xF8 ù \xF9 ú \xFA û \xFB    ü \xFC ý \xFD þ \xFE ÿ \xFF  };  set content [string map $escapes $content];  set content [string map [list "\]" "\\\]" "\[" "\\\[" "\$" "\\\$" "\\" "\\\\"] $content];  regsub -all -- {&amp;#([[:digit:]]{1,5});} $content {[format %c [string trimleft "\1" "0"]]} content;  regsub -all -- {&amp;#x([[:xdigit:]]{1,4});} $content {[format %c [scan "\1" %x]]} content;  regsub -all -- {&amp;#?[[:alnum:]]{2,7};} $content "?" content;  return [subst $content];}putlog "*IMDb v$imdb::version* Loaded"</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=12311">arkadio</a> — Tue Sep 01, 2015 6:20 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Gordon]]></name></author>
		<updated>2015-07-29T10:06:53-04:00</updated>

		<published>2015-07-29T10:06:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=104324#p104324</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=104324#p104324"/>
		<title type="html"><![CDATA[IMDB script question]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=104324#p104324"><![CDATA[
Can someone post complete script?<br><br>I cannot make it work (tcl knowledge less than limited).<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8876">Gordon</a> — Wed Jul 29, 2015 10:06 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2013-09-18T08:46:06-04:00</updated>

		<published>2013-09-18T08:46:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102041#p102041</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102041#p102041"/>
		<title type="html"><![CDATA[IMDB script question]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102041#p102041"><![CDATA[
I think you want something like (really simple):<div class="codebox"><p>Code: </p><pre><code>bind pubm - * checkimdbproc checkimdb {user host handle chan text} {   set url "http://www.omdbapi.com"   set watch [regexp -nocase -- {\/\?i\=([^\s]{11})} $text imdbid]   if { $imdbid } {      set agent "Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.0.1) Gecko/2008070208 Firefox/3.0.1"           set t [::http::config -useragent $agent]      set t [::http::geturl "$url/?i=$imdbid" -timeout 30000]      set data [::http::data $t]      ::http::cleanup $t# parse $t to get all infos...# And display (look at script given by caesar)   }   return 0}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=691">CrazyCat</a> — Wed Sep 18, 2013 8:46 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Gordon]]></name></author>
		<updated>2013-09-17T11:46:00-04:00</updated>

		<published>2013-09-17T11:46:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102039#p102039</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102039#p102039"/>
		<title type="html"><![CDATA[IMDB script question]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102039#p102039"><![CDATA[
<blockquote class="uncited"><div>The API you are referring to isn't as good as you would hope would cos it will return only one title if matches multiple, for example search "batman" and you will see what I'm talking about.</div></blockquote>True but what I want is not intended to be some manual title info search, but something that simply outputs info when triggered by imdb url with imdbId of a title in it. I have close to none tcl experience but I will try to find and look on scripts that provide similar function if no one else steps in.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8876">Gordon</a> — Tue Sep 17, 2013 11:46 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2013-09-17T09:36:53-04:00</updated>

		<published>2013-09-17T09:36:53-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102038#p102038</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102038#p102038"/>
		<title type="html"><![CDATA[IMDB script question]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102038#p102038"><![CDATA[
The API you are referring to isn't as good as you would hope would cos it will return only one title if matches multiple, for example search "batman" and you will see what I'm talking about.<br><br>You could use <a href="http://forum.egghelp.org/viewtopic.php?t=10377" class="postlink">this</a> (but you'll have to look at what's the latest working version) as starting point and have a pubm regexp to trigger the proc that fetches the results from IMDB itself and outputs the result to the channel. It's not that hard to do, so let us know if you get stuck or need help on what needs to be done.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Tue Sep 17, 2013 9:36 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Gordon]]></name></author>
		<updated>2013-09-17T03:54:30-04:00</updated>

		<published>2013-09-17T03:54:30-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102037#p102037</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102037#p102037"/>
		<title type="html"><![CDATA[IMDB script question]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102037#p102037"><![CDATA[
What youtube script you specifically refer to?<br><br>I'm not sure I could do it by myself, I was thinking it could use this API <a href="http://www.omdbapi.com" class="postlink">http://www.omdbapi.com</a> and imdbId to identify movie from url. For example <a href="http://www.omdbapi.com/?i=tt1285016" class="postlink">http://www.omdbapi.com/?i=tt1285016</a> With that it should be somewhat easy to parse and modify output by anyones choice. I suppose quite easy job for someone speaking tcl.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8876">Gordon</a> — Tue Sep 17, 2013 3:54 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[CrazyCat]]></name></author>
		<updated>2013-09-17T02:42:29-04:00</updated>

		<published>2013-09-17T02:42:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102036#p102036</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102036#p102036"/>
		<title type="html"><![CDATA[IMDB script question]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102036#p102036"><![CDATA[
Well, it exists for youtube so I think you can do it easily.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=691">CrazyCat</a> — Tue Sep 17, 2013 2:42 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Gordon]]></name></author>
		<updated>2013-09-15T12:13:54-04:00</updated>

		<published>2013-09-15T12:13:54-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=102035#p102035</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=102035#p102035"/>
		<title type="html"><![CDATA[IMDB script question]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=102035#p102035"><![CDATA[
Hi, I see there is few imdb lookup scripts but is there some script that will display movie info automatically when is the imdb url sent to channel?<br>Thanks.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=8876">Gordon</a> — Sun Sep 15, 2013 12:13 pm</p><hr />
]]></content>
	</entry>
	</feed>
