From: <ara...@us...> - 2007-03-14 08:18:35
|
Revision: 103 http://svn.sourceforge.net/easybox-mod/?rev=103&view=rev Author: aragornis Date: 2007-03-14 01:18:32 -0700 (Wed, 14 Mar 2007) Log Message: ----------- Modified Paths: -------------- trunk/http-vlc/lecteur/modif-config.html trunk/module/films/films.tpl trunk/module/films/info.php Modified: trunk/http-vlc/lecteur/modif-config.html =================================================================== --- trunk/http-vlc/lecteur/modif-config.html 2007-03-12 19:48:50 UTC (rev 102) +++ trunk/http-vlc/lecteur/modif-config.html 2007-03-14 08:18:32 UTC (rev 103) @@ -13,7 +13,7 @@ <vlc id="rpn" param1="valeur value variable value 'VLC_OBJECT_PLAYLIST' vlc_var_set"/> <vlc id="end" /> - <!-- Modification des obtions audio, sous-titre et chapitre - Type 2 --> + <!-- Modification des obtions audio, sous-titre, titre et chapitre - Type 2 --> <vlc id="if" param1="type value 2 =" /> <!-- CHANGE LA LANGUES AUDIO - Type2 = 1 --> <vlc id="if" param1="type2 value 1 =" /> @@ -51,7 +51,8 @@ <vlc id="rpn" param1="'valeur' value 'chapter' 'VLC_OBJECT_INPUT' vlc_var_set" /> <vlc id="end" /> - <vlc id="if" param1="type2 value 4 =" /> + <!-- CHANGE DE TITRE - Type2 = 4 --> + <vlc id="if" param1="type2 value 4 =" /> <vlc id="rpn" param1="'valeur' value 'title' 'VLC_OBJECT_INPUT' vlc_var_set" /> <vlc id="end" /> Modified: trunk/module/films/films.tpl =================================================================== --- trunk/module/films/films.tpl 2007-03-12 19:48:50 UTC (rev 102) +++ trunk/module/films/films.tpl 2007-03-14 08:18:32 UTC (rev 103) @@ -109,7 +109,7 @@ <font size="3"><u>Titres</u></font><br> {if count($title)} <form action="info.php" method="get"><input type=hidden name=module value=navigation><br> - <select name="chap"> + <select name="title"> {foreach from=$title item=chap key=key name=chap} <option value={$key} {if $chap.1}selected{/if}>{$chap.0} {/foreach} Modified: trunk/module/films/info.php =================================================================== --- trunk/module/films/info.php 2007-03-12 19:48:50 UTC (rev 102) +++ trunk/module/films/info.php 2007-03-14 08:18:32 UTC (rev 103) @@ -40,8 +40,11 @@ if (isset($_GET['chap'])){ @readfile('http://localhost:8081/lecteur/modif-config.html?type=2&type2=3&var=chapter&value='.$_GET['chap']); } + // Changement de titre + if (isset($_GET['title'])){ + @readfile('http://localhost:8081/lecteur/modif-config.html?type=2&type2=4&var=title&value='.$_GET['title']); + } - $RACINE_REP = "../../"; require($RACINE_REP.'_framework/framework.php'); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |