Index: mythweb/skins/default/tv_upcoming.css
===================================================================
--- mythweb/skins/default/tv_upcoming.css	(Revision 15450)
+++ mythweb/skins/default/tv_upcoming.css	(Arbeitskopie)
@@ -80,10 +80,41 @@
 }
 #listings td.-commands a {
     display:            block;
-    padding:            .25em .5em;
     margin:             0;
+    border:             0;
 }
 #listings td.-recording a {
     border:             1px solid #0f0;
 }
 
+
+/* icons for commands */
+#listings td.-commands a.default {
+    height:             16px; 
+    width:              16px;
+    background: url(/mythweb/skins/default/img/commands/default.png) no-repeat center left;
+}
+
+#listings td.-commands a.never_record {
+    height:             16px; 
+    width:              16px;
+    background: url(/mythweb/skins/default/img/commands/never_record.png) no-repeat center left;
+}
+
+#listings td.-commands a.activate {
+    height:             16px; 
+    width:              16px;
+    background: url(/mythweb/skins/default/img/commands/activate.png) no-repeat center left;
+}
+
+#listings td.-commands a.dontrec {
+    height:             16px; 
+    width:              16px;
+    background: url(/mythweb/skins/default/img/commands/dontrec.png) no-repeat center left;
+}
+
+#listings td.-commands a.record {
+    height:             16px; 
+    width:              16px;
+    background: url(/mythweb/skins/default/img/commands/record.png) no-repeat center left;
+}
\ Kein Zeilenvorschub am Ende der Datei
Index: mythweb/skins/default/img/commands/never_record.png
===================================================================
Kann nicht anzeigen: Dateityp ist als binär angegeben.
svn:mime-type = application/octet-stream

Eigenschaftsänderungen: mythweb/skins/default/img/commands/never_record.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Index: mythweb/skins/default/img/commands/dontrec.png
===================================================================
Kann nicht anzeigen: Dateityp ist als binär angegeben.
svn:mime-type = application/octet-stream

Eigenschaftsänderungen: mythweb/skins/default/img/commands/dontrec.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Index: mythweb/skins/default/img/commands/activate.png
===================================================================
Kann nicht anzeigen: Dateityp ist als binär angegeben.
svn:mime-type = application/octet-stream

Eigenschaftsänderungen: mythweb/skins/default/img/commands/activate.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Index: mythweb/skins/default/img/commands/reload_page.png
===================================================================
Kann nicht anzeigen: Dateityp ist als binär angegeben.
svn:mime-type = application/octet-stream

Eigenschaftsänderungen: mythweb/skins/default/img/commands/reload_page.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Index: mythweb/skins/default/img/commands/default.png
===================================================================
Kann nicht anzeigen: Dateityp ist als binär angegeben.
svn:mime-type = application/octet-stream

Eigenschaftsänderungen: mythweb/skins/default/img/commands/default.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Index: mythweb/skins/default/img/commands/forget_old.png
===================================================================
Kann nicht anzeigen: Dateityp ist als binär angegeben.
svn:mime-type = application/octet-stream

Eigenschaftsänderungen: mythweb/skins/default/img/commands/forget_old.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Index: mythweb/modules/tv/tmpl/default/upcoming.php
===================================================================
--- mythweb/modules/tv/tmpl/default/upcoming.php	(Revision 15450)
+++ mythweb/modules/tv/tmpl/default/upcoming.php	(Arbeitskopie)
@@ -210,34 +210,28 @@
         foreach ($commands as $key => $val) {
             switch ($val) {
                 case 'dontrec':
-                    $commands[$key] = '<a href="'.root.'tv/upcoming/'.$urlstr.'?dontrec=yes"'
-                                     .' title="'.html_entities(t('info: dont record')).'">'
-                                     .t('Don\'t Record').'</a>';
+                    $commands[$key] = '<a class=dontrec href="'.root.'tv/upcoming/'.$urlstr.'?dontrec=yes"'
+                                     .' title="'.html_entities(t('Don\'t Record')).' '.html_entities(t('info: dont record')).'"></a>';
                     break;
                 case 'never_record':
-                    $commands[$key] = '<a href="'.root.'tv/upcoming/'.$urlstr.'?never_record=yes"'
-                                     .' title="'.html_entities(t('info:never record')).'">'
-                                     .t('Never Record').'</a>';
+                    $commands[$key] = '<a class=never_record href="'.root.'tv/upcoming/'.$urlstr.'?never_record=yes"'
+                                     .' title="'.html_entities(t('Never Record')).' '.html_entities(t('info: never record')).'"></a>';
                     break;
                 case 'record':
-                    $commands[$key] = '<a href="'.root.'tv/upcoming/'.$urlstr.'?record=yes"'
-                                     .' title="'.html_entities(t('info: record this')).'">'
-                                     .t('Record This').'</a>';
+                    $commands[$key] = '<a class=record href="'.root.'tv/upcoming/'.$urlstr.'?record=yes"'
+                                     .' title="'.html_entities(t('Record This')).html_entities(t('info: record this')).'"></a>';
                     break;
                 case 'forget_old':
-                    $commands[$key] = '<a href="'.root.'tv/upcoming/'.$urlstr.'?forget_old=yes"'
-                                     .' title="'.html_entities(t('info:forget old')).'">'
-                                     .t('Forget Old').'</a>';
+                    $commands[$key] = '<a class=forget_old href="'.root.'tv/upcoming/'.$urlstr.'?forget_old=yes"'
+                                     .' title="'.html_entities(t('Forget Old')).' '.html_entities(t('info:forget old')).'"></a>';
                     break;
                 case 'activate':
-                    $commands[$key] = '<a href="'.root.'tv/upcoming/'.$urlstr.'?record=yes"'
-                                     .' title="'.html_entities(t('info: activate recording')).'">'
-                                     .t('Activate').'</a>';
+                    $commands[$key] = '<a class=activate href="'.root.'tv/upcoming/'.$urlstr.'?record=yes"'
+                                     .' title="'.html_entities(t('Activate')).' '.html_entities(t('info: activate recording')).'"></a>';
                     break;
                 case 'default':
-                    $commands[$key] = '<a href="'.root.'tv/upcoming/'.$urlstr.'?default=yes"'
-                             .' title="'.html_entities(t('info: default recording')).'">'
-                             .t('Default').'</a>';
+                    $commands[$key] = '<a class=default href="'.root.'tv/upcoming/'.$urlstr.'?default=yes"'
+                             .' title="'.html_entities(t('Default')).' '.html_entities(t('info: default recording')).'"></a>';
                     break;
             }
         }
