チェンジセット 83: trunk/install/php/showlib.php
- コミット日時:
- 2008/12/30 22:12:46 (16 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
trunk/install/php/showlib.php
r70 r83 36 36 <head> 37 37 <meta http-equiv="Content-Type" content="text/html; charset=EUC-JP"> 38 <meta http-equiv="Content-Style-Type" content="text/css"> 39 <link rel="stylesheet" type="text/css" href="graytable.css"> 40 <link rel="alternate" type="application/rss+xml" title="RSS" href="./folcast.php" /> 38 <?php 39 if (file_exists ( "./iui/iui.css" )){ 40 $useragent = $_SERVER['HTTP_USER_AGENT']; 41 } 42 if(ereg("iPhone",$useragent)){ 43 print "<meta name=\"viewport\" content=\"width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=no;\"/> 44 <link rel=\"apple-touch-icon\" type=\"image/png\" href=\"./img/icon.png\" /> 45 46 <style type=\"text/css\" media=\"screen\">@import \"./iui/iui.css\";</style> 47 <script type=\"application/x-javascript\" src=\"./iui/iui.js\"></script>"; 48 }else{ 49 print "<meta http-equiv=\"Content-Style-Type\" content=\"text/css\"> 50 <link rel=\"stylesheet\" type=\"text/css\" href=\"graytable.css\"> 51 <link rel=\"alternate\" type=\"application/rss+xml\" title=\"RSS\" href=\"./folcast.php\" />"; 52 } 53 ?> 41 54 <title>foltia:MP4 Lib</title> 42 55 </head> 43 56 44 57 <?php 45 $now = date("YmdHi"); 58 $now = date("YmdHi"); 59 if(ereg("iPhone",$useragent)){ 60 print "<body onclick=\"console.log('Hello', event.target);\"> 61 <div class=\"toolbar\"> 62 <h1 id=\"pageTitle\"></h1> 63 <a id=\"backButton\" class=\"button\" href=\"#\"></a> 64 </div> 65 "; 66 }else{ 67 print "<body BGCOLOR=\"#ffffff\" TEXT=\"#494949\" LINK=\"#0047ff\" VLINK=\"#000000\" ALINK=\"#c6edff\" > 68 <div align=\"center\"> 69 "; 70 printhtmlpageheader(); 71 print " <p align=\"left\"><font color=\"#494949\" size=\"6\">録画ライブラリ表示</font></p> 72 <hr size=\"4\"> 73 <p align=\"left\">再生可能ライブラリを表示します。<br> 74 "; 75 } 46 76 47 ?>48 <body BGCOLOR="#ffffff" TEXT="#494949" LINK="#0047ff" VLINK="#000000" ALINK="#c6edff" >49 <div align="center">50 <?php51 printhtmlpageheader();52 ?>53 <p align="left"><font color="#494949" size="6">録画ライブラリ表示</font></p>54 <hr size="4">55 <p align="left">再生可能ライブラリを表示します。<br>56 57 <?58 77 //新仕様 /* 2006/10/26 */ 59 78 $query = " … … 70 89 71 90 if ($maxrows > 0 ){ 91 if(ereg("iPhone",$useragent)){ 92 print "<ul id=\"home\" title=\"録画ライブラリ表示\" selected=\"true\">"; 93 }else{ 72 94 print " 73 95 <table BORDER=\"0\" CELLPADDING=\"0\" CELLSPACING=\"2\" WIDTH=\"100%\"> … … 82 104 <tbody> 83 105 "; 106 } 84 107 for ($row = 0; $row < $maxrows; $row++) { 85 108 $rowdata = pg_fetch_row($rs, $row); … … 90 113 $counts = htmlspecialchars($counts); 91 114 115 if(ereg("iPhone",$useragent)){ 116 print "<li><a href=\"showlibc.php?tid=$tid\" target=\"_self\">$title</a></li>\n"; 117 }else{ 92 118 print " 93 119 <tr> … … 98 124 </tr>\n 99 125 "; 126 } 100 127 }//for 128 129 if(ereg("iPhone",$useragent)){ 130 print "</ul>\n</body>\n</html>\n"; 131 }else{ 101 132 print " 102 133 </tbody> … … 105 136 </html> 106 137 "; 138 } 139 107 140 }else{ 108 141 print "録画ファイルが存在しません。</body></html>";