チェンジセット 65
- コミット日時:
- 2007/09/26 18:17:05 (17 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
trunk/doc/CHANGES.txt
r64 r65 1 1 foltia 更新履歴 http://www.dcc-jpl.com/soft/foltia/ 2 2 3 07.9.26 4 showlibc.php: 5 サムネールがない場合に代替画像表示する機能を追加。(./img/no-thumbnail-img.png) 6 HTML修正。 7 キャプチャ画像の存在判定を修正。 3 8 4 9 07.9.25 trunk/install/php/showlibc.php
r23 r65 30 30 <meta http-equiv="Content-Type" content="text/html; charset=EUC-JP"> 31 31 <meta http-equiv="Content-Style-Type" content="text/css"> 32 <link rel="stylesheet" type="text/css" href="graytable.css"> 33 <script src="http://images.apple.com/main/js/ac_quicktime.js" language="JavaScript" type="text/javascript"></script> 32 <link rel="stylesheet" type="text/css" href="graytable.css"> 33 <script src="http://images.apple.com/main/js/ac_quicktime.js" language="JavaScript" type="text/javascript"></script> 34 34 <?php 35 35 print "<link rel=\"alternate\" type=\"application/rss+xml\" title=\"RSS\" href=\"./folcast.php?tid=$tid\" /> … … 168 168 if (($sbpluginexist == 1) && (pg_num_rows ($rs ) > 0)){ 169 169 $capimgpath = htmlspecialchars(preg_replace("/.m2p/", "", $rowdata[5])); 170 if (file_exists("$recfolderpath/$tid.localized/img/$capimgpath") ){ 170 171 if (($capimgpath != "") && (file_exists("$recfolderpath/$tid.localized/img/$capimgpath") )){ 171 172 $caplink = " / <a href = \"./selectcaptureimage.php?pid=$rowdata[6]\">キャプ</a>"; 172 173 }else{ … … 177 178 }//end if sb 178 179 180 if (file_exists("$recfolderpath/$tid.localized/mp4/$thumbnail") ){ 181 $imgsrcuri = "$httpmediamappath/$tid.localized/mp4/$thumbnail\" alt=\"$title $count $subtitle"; 182 }else{ 183 $imgsrcuri = "./img/no-thumbnail-img.png\" alt=\"NO IMAGE"; 184 } 185 186 179 187 print " <tr> 180 <td rowspan=\"4\" width=\"170\"><a href = \"$httpmediamappath/$tid.localized/mp4/$fName\" target=\"_blank\"><img src = \"$ httpmediamappath/$tid.localized/mp4/$thumbnail\" width = \"160\" height = \"120\"></A></td>188 <td rowspan=\"4\" width=\"170\"><a href = \"$httpmediamappath/$tid.localized/mp4/$fName\" target=\"_blank\"><img src = \"$imgsrcuri\" width=\"160\" height=\"120\"></a></td> 181 189 <td>$count</td> 182 190 </tr> … … 205 213 </table> 206 214 207 208 215 </body> 209 216 </html>