|
From: <ara...@us...> - 2007-05-28 19:48:33
|
Revision: 164
http://svn.sourceforge.net/easybox-mod/?rev=164&view=rev
Author: aragornis
Date: 2007-05-28 12:48:30 -0700 (Mon, 28 May 2007)
Log Message:
-----------
- skin ETI (pour d?\195?\169group?\195?\169s seulement)
- r?\195?\169paration de qq bugs
Modified Paths:
--------------
trunk/_framework/fonctions_partagees.inc.php
trunk/_framework/lib/lib_photo.php
trunk/skin/mediacenter/films.tpl
trunk/skin/mediacenter/menu.tpl
Added Paths:
-----------
trunk/skin/ETI/
trunk/skin/ETI/audio.tpl
trunk/skin/ETI/avertissement.tpl
trunk/skin/ETI/bouton.tpl
Removed Paths:
-------------
trunk/module/telesite/
Modified: trunk/_framework/fonctions_partagees.inc.php
===================================================================
--- trunk/_framework/fonctions_partagees.inc.php 2007-05-26 09:43:53 UTC (rev 163)
+++ trunk/_framework/fonctions_partagees.inc.php 2007-05-28 19:48:30 UTC (rev 164)
@@ -262,7 +262,7 @@
function DISQUES(){
$lect=array();
if (PHP_OS == "WIN32" || PHP_OS == "WINNT") {
- $obj = new COM ( 'Scripting.FileSystemObject' );
+ $obj = @new COM ( 'Scripting.FileSystemObject' );
if ( is_object ( $obj ) )
{
@@ -299,21 +299,21 @@
{
$lect[] = array('lettre'=>$io->DriveLetter, 'path'=>$io->DriveLetter.':\\', 'type'=>$type, 'nom'=>$io->VolumeName, 'gif'=>$gifFile);
}
-// BDE - 18/10/2006 - Modification dans la gestion des disques
-// Le code suivant est \xE0 d\xE9commenter pour afficher les disques HS
-/*
- else
- {
- $gifFile = $gifFile.'KO';
- $lect[] = array('lettre'=>$io->DriveLetter, 'path'=>$io->DriveLetter.':\\', 'type'=>$type, 'nom'=>'Non accessible', 'gif'=>$gifFile);
- }
-*/
}
// On ajoute le bouton de rafraichissement
$lect[] = array('lettre'=>'Rafra\xEEchir', 'path'=>'reload', 'type'=>'fonction', 'nom'=>'Recharger', 'gif'=>'reload');
$obj = null;
+ }else{
+
+ // Au cas o\xF9 le composant DOM ne marcherait pas
+ $lecteur=array("b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z");
+ foreach($lecteur as $l){
+ if(realpath($l.':/')!=''){
+ $lect[]=array('lettre'=>$l, 'path'=>$l.':\\', 'type'=>'Disque dur', 'nom'=>$l.':', 'gif'=>'diskhdd');
+ }
+ }
}
} elseif (is_readable('/etc/mtab')) {
// si ce fichier est lisible on assume qu'on est sur un OS qui le supporte
Modified: trunk/_framework/lib/lib_photo.php
===================================================================
--- trunk/_framework/lib/lib_photo.php 2007-05-26 09:43:53 UTC (rev 163)
+++ trunk/_framework/lib/lib_photo.php 2007-05-28 19:48:30 UTC (rev 164)
@@ -127,6 +127,12 @@
$this->width = imagesx($this->img);
$this->height = imagesy($this->img);
+
+ $trans = imagecolortransparent($this->img);
+ if($trans!=-1){
+ $trans = imagecolorsforindex($this->img,imagecolortransparent($this->img));
+ }
+
// Tourner
$this->tourner();
@@ -135,6 +141,10 @@
$this->redimensionner();
}
+ if($trans!=-1){
+ imagecolortransparent($this->img,imagecolorallocate($this->img, $trans['red'], $trans['green'], $trans['blue']));
+ }
+
// Mettre en cache
if($this->cache){
@@ -171,7 +181,11 @@
$redimx = floor($this->width*$pourcent);
$redimy = floor($this->height*$pourcent);
$image1 = imagecreatetruecolor($redimx, $redimy);
-
+ imagesavealpha($image1, true);
+ $trans_colour = imagecolorallocatealpha($image1, 0, 0, 0, 127);
+ imagefill($image1, 0, 0, $trans_colour);
+ imagealphablending($image1, false);
+
if($this->quality=='max'){
ImageCopyresampled($image1,$this->img,0,0,0,0,$redimx,$redimy,$this->width,$this->height);
}else{
Added: trunk/skin/ETI/audio.tpl
===================================================================
--- trunk/skin/ETI/audio.tpl (rev 0)
+++ trunk/skin/ETI/audio.tpl 2007-05-28 19:48:30 UTC (rev 164)
@@ -0,0 +1,168 @@
+{php}
+global $MENU_ALT, $VLC, $smarty, $mode;
+($VLC['etat']!='playing'?$text='Jouer':$text='Pause');
+
+$MENU_ALT[] = array('lien'=>'lecteuraudio.php?control=pause', 'nom'=>$text, 'selected'=>0);
+$MENU_ALT[] = array('lien'=>'lecteuraudio.php?control=stop', 'nom'=>'Arr\xEAter', 'selected'=>0);
+$MENU_ALT[] = array('lien'=>'lecteuraudio.php?control=previous', 'nom'=>'Piste pr\xE9c\xE9dente', 'selected'=>0);
+$MENU_ALT[] = array('lien'=>'lecteuraudio.php?control=next', 'nom'=>'Piste suivante', 'selected'=>0);
+
+$MENU_ALT[] = array('lien'=>'lecteuraudio.php?mode=pla', 'nom'=>'Playlist', 'selected'=>$mode=='pla');
+$MENU_ALT[] = array('lien'=>'lecteuraudio.php?mode=bib', 'nom'=>'Biblioth\xE8que', 'selected'=>$mode=='bib');
+$MENU_ALT[] = array('lien'=>'lecteuraudio.php?mode=exp', 'nom'=>'Explorateur', 'selected'=>$mode=='exp');
+$MENU_ALT[] = array('lien'=>'lecteuraudio.php?mode=par', 'nom'=>'Paroles', 'selected'=>$mode=='par');
+$MENU_ALT[] = array('lien'=>'lecteuraudio.php?mode=pod', 'nom'=>'Podcast', 'selected'=>$mode=='pod');
+$MENU_ALT[] = array('lien'=>'lecteuraudio.php?mode=web', 'nom'=>'Web-Radios', 'selected'=>$mode=='web');
+
+
+/*
+href="lecteuraudio.php?action=nextrandom"><font size=1 color="{if $statut.random}{#COULEUR_BOUTON_SELECTED#}{else}{#COULEUR_DEFAUT#}{/if}">Al\xE9atoire</font></a></td>
+href="lecteuraudio.php?action=nextboucle"><font size=1 color="{if $statut.repeat or $statut.loop}{#COULEUR_BOUTON_SELECTED#}{else}{#COULEUR_DEFAUT#}{/if}">{$boucle_valeur}</font></a></td>
+*/
+ $smarty->assign('TITRE','Lecteur audio');
+ $smarty->assign('CONTENT2',$smarty->fetch('interface.tpl'));
+{/php}
+{$CONTENT2}
+ <center><var name=aide width=450></center>
+{*
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<html>
+<head>
+{include file="bouton.tpl"}
+{setbackground path="none"}
+</head>
+<body background="ts://127.0.0.1" text="{#COULEUR_LECTEUR_TEXT#}" link="{#COULEUR_LECTEUR_LINK#}" alink="{#COULEUR_LECTEUR_ALINK#}" vlink="{#COULEUR_LECTEUR_VLINK#}">
+<center>
+<table width="645" height="494" border="0" align="center" cellpadding="0" cellspacing="0">
+ <tr><td width="10" height="1"><img src="transparent.gif" width="1" height="1"></td><td width="625" height="1"><img src="transparent.gif" width="1" height="1"></td><td width="10" height="1"><img src="transparent.gif" width="1" height="1"></td></tr>
+ <tr><td width="5" height="493"><img src="transparent.gif" width="1" height="1"></td>
+ <td width="625" height="493">
+ <table width="625" height="493" border="0" align="center" cellpadding="0" cellspacing="0">
+ <tr><td bgcolor="{#COULEUR_FOND2#}" width="295" height="73" align=center>
+
+ <!-- D\xE9but du panneau de commandes -->
+ <table border="0" cellpadding="0" cellspacing="0" width="295" height="73" background="player.gif">
+ <tr>
+ <td width="19" height="73"><img src="transparent.gif" width="1" height="1"></td>
+ <td width="19" height="73"><table align="left" border="0" cellpadding="0" cellspacing="0" width="19" height="73">
+ <tr>
+ <td width="19" height="36"><img src="transparent.gif" width="1" height="1"></td>
+ </tr>
+ <tr>
+ <td width="19" height="21" align=center valign=middle><a href="lecteuraudio.php?control=pause"><font color="{if $VLC.etat!='playing'}{#COULEUR_BOUTON_SELECTED#}{else}{#COULEUR_DEFAUT#}{/if}" family="Symbol">{if $VLC.etat=='stop'}T{else}Y{/if}</font></a></td>
+ </tr>
+ <tr>
+ <td width="19" height="16"><img src="transparent.gif" width="1" height="1"></td>
+ </tr>
+ </table></td>
+ <td width="29" height="73"><img src="transparent.gif" width="1" height="1"></td>
+ <td height="73" width="14"><table align="left" border="0" cellpadding="0" cellspacing="0" width="14" height="73">
+ <tr>
+ <td width="14" height="39"><img src="transparent.gif" width="1" height="1"></td>
+ </tr>
+ <tr>
+ <td width="14" height="14" align=center valign=middle><a href="lecteuraudio.php?control=stop"><font color="{if $VLC.etat!='stop'}{#COULEUR_DEFAUT#}{else}{#COULEUR_BOUTON_SELECTED#}{/if}" family="Symbol">Z</font></a></td>
+ </tr>
+ <tr>
+ <td width="14" height="20"><img src="transparent.gif" width="1" height="1"></td>
+ </tr>
+ </table></td>
+ <td width="18" height="73"><img src="transparent.gif" width="1" height="1"></td>
+ <td width="14" height="73"><table align="left" border="0" cellpadding="0" cellspacing="0" width="14" height="73">
+ <tr>
+ <td width="14" height="34"><img src="transparent.gif" width="1" height="1"></td>
+ </tr>
+ <tr>
+ <td width="14" height="14" align=center valign=middle><a href="lecteuraudio.php?control=previous"><font color="{#COULEUR_DEFAUT#}" family="Symbol">@@</font></a></td>
+ </tr>
+ <tr>
+ <td width="14" height="25"><img src="transparent.gif" width="1" height="1"></td></tr></table></td>
+ <!--
+
+ -->
+ <td width="11" height="73"><img src="transparent.gif" width="1" height="1"></td>
+ <td width="14" height="73"><table align="left" border="0" cellpadding="0" cellspacing="0" width="14" height="73">
+ <tr>
+ <td width="14" height="34"><img src="transparent.gif" width="1" height="1"></td>
+ </tr>
+ <tr>
+ <td width="14" height="14" align=center valign=middle><a href="lecteuraudio.php?control=next"><font color="{#COULEUR_DEFAUT#}" family="Symbol">AA</font></a></td>
+ </tr>
+ <tr>
+ <td width="14" height="25"><img src="transparent.gif" width="1" height="1"></td>
+ </tr>
+ </table></td>
+ <td width="49" height="73"><img src="transparent.gif" width="1" height="1"></td>
+ <td width="90" height="73"><table align="left" border="0" cellpadding="0" cellspacing="0" width="90" height="73">
+ <tr>
+ <td width="90" height="20"><img src="transparent.gif" width="1" height="1"></td>
+ </tr>
+ <tr>
+ <td width="90" height="12" align=center valign=middle><a href="lecteuraudio.php?action=nextrandom"><font size=1 color="{if $statut.random}{#COULEUR_BOUTON_SELECTED#}{else}{#COULEUR_DEFAUT#}{/if}">Al\xE9atoire</font></a></td>
+ </tr>
+ <tr>
+ <td width="90" height="5"><img src="transparent.gif" width="1" height="1"></td>
+ </tr>
+ <tr>
+ <td width="90" height="10" align=center valign=middle><a href="lecteuraudio.php?action=nextboucle"><font size=1 color="{if $statut.repeat or $statut.loop}{#COULEUR_BOUTON_SELECTED#}{else}{#COULEUR_DEFAUT#}{/if}">{$boucle_valeur}</font></a></td>
+ </tr>
+ <tr>
+ <td width="90" height="18"><img src="transparent.gif" width="1" height="1"></td>
+ </tr>
+ </table></td>
+ <td width="18" height="73"><img src="transparent.gif" width="1" height="1"></td>
+ </tr>
+ </table>
+ <!-- Fin du panneau de commandes -->
+
+ </td><td width="330" height="73" bgcolor="{#COULEUR_FOND2#}">
+
+ <table border="0" cellpadding="0" cellspacing="0" width="330" height="73"><tr>
+
+ {if $VLC.etat!='stop'}
+ <td bgcolor="{#COULEUR_FOND#}" width="70" height="73">
+ <img width="80" height="80" src="jaquette.php?directory={$VLC.url_current|dirname|urlencode}&lec={$VLC.type_current}&info={$search|trim|urlencode}">
+ </td>
+ {/if}
+
+ <td width="260" height="73">
+
+ {section name=infos loop=$informations max=5}
+ <font size="1">{$informations[infos].0|capitalize|ucfirst} : {$informations[infos].1|truncate:45:''}</font><br>
+ {sectionelse}
+ Aucune information disponible
+ {/section}
+
+ </td></tr></table>
+
+ </td>
+ </td></tr>
+ <tr bgcolor="#00000000"><td colspan="2" width="625" height="3"><img src="transparent.gif" width="1" height="1"></td></tr>
+ <tr><td bgcolor="{#COULEUR_FOND2#}" colspan="2" width="625" height="25">
+ <table width="625" height="25" border="0" align="center" cellpadding="0" cellspacing="0">
+ <tr>
+ <td width="104" align=center><a href="lecteuraudio.php?mode=pla" {if $mode=='pla'}focused{/if}><table width="104" height="25" border="0" cellpadding="0" cellspacing="0" bgcolor="{#COULEUR_FOND2#}" abgcolor="{#COULEUR_TABLE_SELECTED#}"><tr height="25"><td align=center width="104" height="25">Playlist</td></tr></table></a></td>
+ <td width="104" align=center><a href="lecteuraudio.php?mode=bib" {if $mode=='bib'}focused{/if}><table width="104" height="25" border="0" cellpadding="0" cellspacing="0" bgcolor="{#COULEUR_FOND2#}" abgcolor="{#COULEUR_TABLE_SELECTED#}"><tr height="25"><td align=center width="104" height="25">Biblioth\xE8que</td></tr></table></a></td>
+ <td width="104" align=center><a href="lecteuraudio.php?mode=exp" {if $mode=='exp'}focused{/if}><table width="104" height="25" border="0" cellpadding="0" cellspacing="0" bgcolor="{#COULEUR_FOND2#}" abgcolor="{#COULEUR_TABLE_SELECTED#}"><tr height="25"><td align=center width="104" height="25">Explorateur</td></tr></table></a></td>
+ <td width="104" align=center><a href="lecteuraudio.php?mode=par" {if $mode=='par'}focused{/if}><table width="104" height="25" border="0" cellpadding="0" cellspacing="0" bgcolor="{#COULEUR_FOND2#}" abgcolor="{#COULEUR_TABLE_SELECTED#}"><tr height="25"><td align=center width="104" height="25">Paroles</td></tr></table></a></td>
+ <td width="104" align=center><a href="lecteuraudio.php?mode=pod" {if $mode=='pod'}focused{/if}><table width="104" height="25" border="0" cellpadding="0" cellspacing="0" bgcolor="{#COULEUR_FOND2#}" abgcolor="{#COULEUR_TABLE_SELECTED#}"><tr height="25"><td align=center width="104" height="25">Podcast</td></tr></table></a></td>
+ <td width="104" align=center><a href="lecteuraudio.php?mode=web" {if $mode=='web'}focused{/if}><table width="104" height="25" border="0" cellpadding="0" cellspacing="0" bgcolor="{#COULEUR_FOND2#}" abgcolor="{#COULEUR_TABLE_SELECTED#}"><tr height="25"><td align=center width="104" height="25">Web-Radios</td></tr></table></a></td>
+ </tr>
+ </table>
+ </td></tr>
+ <tr bgcolor="#00000000"><td colspan="2" width="625" height="3"><img src="transparent.gif" width="1" height="1"></td></tr>
+ <tr><td bgcolor="{#COULEUR_FOND2#}" colspan="2" width="625" height="389" align="center" valign="top">
+
+ {eval var=$CONTENT}
+
+ <var name=aide width=450>
+
+ </td></tr>
+ </table>
+ </td><td width="5" height="493"></td></tr>
+</table>
+</center>
+<script language="javascript" src="/fb2ie.js">
+</script>
+</body>
+</html>*}
Added: trunk/skin/ETI/avertissement.tpl
===================================================================
--- trunk/skin/ETI/avertissement.tpl (rev 0)
+++ trunk/skin/ETI/avertissement.tpl 2007-05-28 19:48:30 UTC (rev 164)
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<html>
+<head>
+{include file="bouton.tpl"}
+</head>
+<body background="ts://127.0.0.1" text="{#COULEUR_TEXT#}" link="{#COULEUR_LINK#}" alink="{#COULEUR_ALINK#}" vlink="{#COULEUR_VLINK#}">
+<center><table width="590" height="510" border="0" align="center" cellpadding="0" cellspacing="0"><tr><td align=center width="590" height="510" valign="middle">
+ <table width="540" border="2" cellpadding="10" cellspacing="0" bgcolor="{#COULEUR_FOND_AVERTISSEMENT#}" bordercolor="#54585A3F"><tr><td width="590">
+ <table width="540" border="0" cellpadding="10" cellspacing="0"><tr>
+ {if NOT $no_icone}<td align="center" width="80" height="80">
+ <img src="{$INTERFACE_REP}info.gif" border="0" width="80" height="80">
+ </td>{/if}<td align="center" valign="middle" width="460">
+ {if $TITRE!=''}<font size=4>{$TITRE}</font><br> <br> <br>{/if}
+ {eval var=$AVERTISSEMENT}
+ </td>
+ </tr></table>
+ </td></tr></table>
+</td></tr></table></center>
+
+<script language="javascript" src="/fb2ie.js">
+</script>
+</body>
+</html>
Added: trunk/skin/ETI/bouton.tpl
===================================================================
--- trunk/skin/ETI/bouton.tpl (rev 0)
+++ trunk/skin/ETI/bouton.tpl 2007-05-28 19:48:30 UTC (rev 164)
@@ -0,0 +1,10 @@
+<!BOUTONS!>
+{foreach from=$META item=META_FE key=key}
+ <meta name="{$key}" content="{$META_FE}">
+
+{/foreach}
+{foreach from=$LINK item=META_FE key=key}
+ <link rel="{$key}" href="{$META_FE}">
+{/foreach}
+
+<!BOUTONS!>
Modified: trunk/skin/mediacenter/films.tpl
===================================================================
--- trunk/skin/mediacenter/films.tpl 2007-05-26 09:43:53 UTC (rev 163)
+++ trunk/skin/mediacenter/films.tpl 2007-05-28 19:48:30 UTC (rev 164)
@@ -49,18 +49,34 @@
Augmenter la qualit\xE9 du traitement de l'image (de 0 vers 6) demande plus de puissance CPU.
<br>
-<select name=display_scaling>
-<option value=letterbox>Letterbox
-<option value=panscan>Pan Scan
-<option value=fullscreen>Fullscreen
-</select>
-
<table width="500" align="left">
<tr><td width="90">Lumi\xE9re</td><td width="5">:</td><td><input bgcolor="{#COULEUR_FOND_RADIO#}" type=hslider name=denc_brightness min=0 max=255 grad=16></td></tr>
<tr><td width="90">Contraste</td><td width="5">:</td><td><input bgcolor="{#COULEUR_FOND_RADIO#}" type=hslider name=denc_contrast min='-128' max=127 grad=16></td></tr>
<tr><td width="90">Couleur</td><td width="5">:</td><td><input bgcolor="{#COULEUR_FOND_RADIO#}" type=hslider name=denc_saturation min=0 max=255 grad=16></td></tr>
<tr><td width="90">Zoom</td><td width="5">:</td><td><input bgcolor="{#COULEUR_FOND_RADIO#}" type=hslider name=video_output_scale min=25 max=175 grad=5> - <a href="none" onSelect='video_output_scale="100";'>R\xE9initialiser</a></td></tr>
</table>
+
+{if $vers_fbx==5}
+<select name=display_scaling>
+<option value=letterbox>Letterbox
+<option value=panscan>Panscan
+<option value=fullscreen>Fullscreen
+</select>
+<select name=display_aspect_ratio_conversion>
+<option value=letterbox>Letterbox
+<option value=combined>Combined
+<option value=panscan>Panscan
+<option value=ignore>Ignore
+</select>
+{else}
+<table width="250" align="left">
+<tr><td width="130">4/3 Letterbox</td><td><input type=radio bgcolor="{#COULEUR_FOND_RADIO#}" name=display_aspect_ratio_conversion value=letterbox></td></tr>
+<tr><td width="130">4/3 Combined</td><td><input type=radio bgcolor="{#COULEUR_FOND_RADIO#}" name=display_aspect_ratio_conversion value=combined></td></tr>
+<tr><td width="130">4/3 Pan Scan</td><td><input type=radio bgcolor="{#COULEUR_FOND_RADIO#}" name=display_aspect_ratio_conversion value=panscan></td></tr>
+<tr><td width="130">16/9</td><td><input type=radio bgcolor="{#COULEUR_FOND_RADIO#}" name=display_aspect_ratio_conversion value=ignore></td></tr>
+</table>
+{/if}
+
<br>
<input bgcolor="{#COULEUR_TEXTBOX#}" type=submit value="Valider les modifications">
</form>
Modified: trunk/skin/mediacenter/menu.tpl
===================================================================
--- trunk/skin/mediacenter/menu.tpl 2007-05-26 09:43:53 UTC (rev 163)
+++ trunk/skin/mediacenter/menu.tpl 2007-05-28 19:48:30 UTC (rev 164)
@@ -8,19 +8,19 @@
{section name=menu loop=$MENU}
{if $CAT=="1" AND NOT $SHOW}
{if $smarty.section.menu.first}
- <a focused onfocus='front_panel="FILMS";location="ts://127.0.0.1?ox=0&oy=0&ow=720&oh=576,&ix=0&iy=0&iw=360&ih=192";service="ts://127.0.0.1?ox=0&oy=0&ow=720&oh=576,&ix=0&iy=0&iw=360&ih=192";' href="../../module/films/index1.php">
+ <a focused onfocus='front_panel="FILMS";service="ts://127.0.0.1?ox=0&oy=0&ow=720&oh=576,&ix=0&iy=0&iw=360&ih=192";location="ts://127.0.0.1?ox=0&oy=0&ow=720&oh=576,&ix=0&iy=0&iw=360&ih=192";' href="../../module/films/index1.php">
</a>
- <a onfocus='front_panel="MODULES";location="ts://127.0.0.1?ox=0&oy=0&ow=720&oh=576,&ix=0&iy=384&iw=360&ih=192";service="ts://127.0.0.1?ox=0&oy=0&ow=720&oh=576,&ix=0&iy=384&iw=360&ih=192";' href="../../module/_menu/menu.php?show=1">
+ <a onfocus='front_panel="MODULES";service="ts://127.0.0.1?ox=0&oy=0&ow=720&oh=576,&ix=0&iy=384&iw=360&ih=192";location="ts://127.0.0.1?ox=0&oy=0&ow=720&oh=576,&ix=0&iy=384&iw=360&ih=192";' href="../../module/_menu/menu.php?show=1">
</a>
- <a onfocus='front_panel="PHOTO";location="ts://127.0.0.1?ox=0&oy=0&ow=720&oh=576,&ix=360&iy=192&iw=360&ih=192";service="ts://127.0.0.1?ox=0&oy=0&ow=720&oh=576,&ix=360&iy=192&iw=360&ih=192";' href="../../module/diaporama/index1.php">
+ <a onfocus='front_panel="PHOTO";service="ts://127.0.0.1?ox=0&oy=0&ow=720&oh=576,&ix=360&iy=192&iw=360&ih=192";location="ts://127.0.0.1?ox=0&oy=0&ow=720&oh=576,&ix=360&iy=192&iw=360&ih=192";' href="../../module/diaporama/index1.php">
</a>
- <a onfocus='front_panel="AUDIO";location="ts://127.0.0.1?ox=0&oy=0&ow=720&oh=576,&ix=0&iy=192&iw=360&ih=192";service="ts://127.0.0.1?ox=0&oy=0&ow=720&oh=576,&ix=0&iy=192&iw=360&ih=192";' href="../../module/mp3/lecteuraudio.php">
+ <a onfocus='front_panel="AUDIO";service="ts://127.0.0.1?ox=0&oy=0&ow=720&oh=576,&ix=0&iy=192&iw=360&ih=192";location="ts://127.0.0.1?ox=0&oy=0&ow=720&oh=576,&ix=0&iy=192&iw=360&ih=192";' href="../../module/mp3/lecteuraudio.php">
</a>
- <a onfocus='front_panel="BIBLIOTHEQUE";location="ts://127.0.0.1?ox=0&oy=0&ow=720&oh=576,&ix=360&iy=0&iw=360&ih=192";service="ts://127.0.0.1?ox=0&oy=0&ow=720&oh=576,&ix=360&iy=0&iw=360&ih=192";' href="../../module/films/catalogue.php">
+ <a onfocus='front_panel="BIBLIOTHEQUE";service="ts://127.0.0.1?ox=0&oy=0&ow=720&oh=576,&ix=360&iy=0&iw=360&ih=192";location="ts://127.0.0.1?ox=0&oy=0&ow=720&oh=576,&ix=360&iy=0&iw=360&ih=192";' href="../../module/films/catalogue.php">
</a>
{/if}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|