IMDB suchen direkt von Neutrino Webinterface

Das Original Benutzerinterface Neutrino-SD incl. zapit, sectionsd, yWeb etc...
Barf
Developer
Beiträge: 1475
Registriert: Dienstag 4. Februar 2003, 22:02

IMDB suchen direkt von Neutrino Webinterface

Beitrag von Barf »

Ich habe ein kleines Hack zu epg.html und global.css (beide in /share/tuxbox/neutrino/http)
gemacht, so dass mann die IMDB (Internet Movie Database) mit einem Mausklick nach dem aktuellen Film suchen kann. Kein Meisterwerk, aber ... Verbesserungen möglich :) (Die diffs sind von HEAD branch, gesaugt für etwas eine Woche.)

Keep hacking,

Barf



Code: Alles auswählen

*** global.css.orig     Sun Mar  2 16:26:54 2003
--- global.css  Sat Mar  8 21:39:04 2003
***************
*** 162,164 ****
--- 162,177 ----
        padding-left: 5px;
        padding-right: 5px;
  }
+ 
+ .imdb
+ {
+       font-weight:normal;
+       font-style:italic;
+       padding-left: 3em;
+ }
+ 
+ .imdb:hover
+ {
+       font-weight: bold;
+       text-decoration:underline;
+ }

Code: Alles auswählen

*** epg.html.orig       Sun Mar  2 16:26:54 2003
--- epg.html    Sat Mar  8 21:38:51 2003
***************
*** 11,17 ****
  <BODY>
  <table width="100%" border="0" cellspacing="0" cellpadding="4">
        <tr>
!               <td class="a">%%Title%%</td>
        </tr>
        <tr>
                <td class="bepg"><b>%%Info1%%</b><br></td>
--- 11,25 ----
  <BODY>
  <table width="100%" border="0" cellspacing="0" cellpadding="4">
        <tr>
!               <td class="a">%%Title%% 
!                       <span class="imdb">
!                               <a title="Suche in IMDB nach %%Title%%"
!                               target="imdb" 
!                               href="http://www.imdb.com/Tsearch?title=%%Title%%&restrict=Movies+only">
!                                       Suche IMDB
!                               </a>
!                       </span>
!               </td>
        </tr>
        <tr>
                <td class="bepg"><b>%%Info1%%</b><br></td>