Index: /trunk/install/php/StarlightBreaker/sb-write.php =================================================================== --- /trunk/install/php/StarlightBreaker/sb-write.php (リビジョン 81) +++ /trunk/install/php/StarlightBreaker/sb-write.php (リビジョン 81) @@ -0,0 +1,141 @@ + + + + + + +Starlight Breaker -�吾�莨若� + + +
"; + +$htmloutput = mb_convert_encoding("$htmloutput","EUC-JP", "UTF-8"); +print "$htmloutput"; + + +printhtmlpageheader(); + +if (($tid == "") ||($filename == "") || ($path == "")) { + print "No pictures
"; + exit; +} + +$htmloutput = "

�吾�莨若��祉���������


"; +$htmloutput = mb_convert_encoding($htmloutput,"EUC-JP", "UTF-8"); +print "$htmloutput"; + + +print "\n \n"; + +$post = $bl->createNewPost(); +$post->title = "$blogtitle"; +$post->content = "$blogmessages"; +$bl->savePost($post); +//echo 'post id: ' . $post->id; + +print "id; +print "\">Go Entry

\n"; + +$blogtitle = mb_convert_encoding($blogtitle,"EUC-JP", "UTF-8"); +print "$blogtitle
\n"; + +//print "\n"; + +$blogmessages = mb_convert_encoding($blogmessages,"EUC-JP", "UTF-8"); +print "$blogmessages
\n"; + + + + +?> + + + Index: /trunk/install/php/StarlightBreaker/sb-config.php.template =================================================================== --- /trunk/install/php/StarlightBreaker/sb-config.php.template (リビジョン 81) +++ /trunk/install/php/StarlightBreaker/sb-config.php.template (リビジョン 81) @@ -0,0 +1,47 @@ + Index: /trunk/install/php/StarlightBreaker/sb-edit.php =================================================================== --- /trunk/install/php/StarlightBreaker/sb-edit.php (リビジョン 81) +++ /trunk/install/php/StarlightBreaker/sb-edit.php (リビジョン 81) @@ -0,0 +1,227 @@ + + + + + + + + +Starlight Breaker -編集 + + +
+ +"; + exit; +} + + +$query = " +SELECT +foltia_program.tid, +stationname, +foltia_program.title, +foltia_subtitle.countno, +foltia_subtitle.subtitle, +foltia_subtitle.startdatetime , +foltia_subtitle.lengthmin , +foltia_subtitle.pid , +foltia_subtitle.m2pfilename , +foltia_subtitle.pspfilename +FROM foltia_subtitle , foltia_program ,foltia_station +WHERE foltia_program.tid = foltia_subtitle.tid AND foltia_station.stationid = foltia_subtitle.stationid + AND foltia_subtitle.pid = '$pid' + + "; + $rs = m_query($con, $query, "DBクエリに失敗しました"); +$rows = pg_num_rows($rs); +if ($rows == 0){ + print "

書き込み編集

+
+

+録画記録がありません。
+"; + +}else{ +$rowdata = pg_fetch_row($rs, 0); + +print "

書き込み編集

+
+

"; +print ""; +$title = htmlspecialchars($rowdata[2]); +$countno = htmlspecialchars($rowdata[3]); +print "$title $countno " ; + +$tid = $rowdata[0]; +$subtitle = htmlspecialchars($rowdata[4]) ; +if ($tid > 0){ +print "$subtitle "; +}else{ +print "$subtitle "; +} +print htmlspecialchars($rowdata[1]) . " "; +print htmlspecialchars($rowdata[6]) . "分 "; +print htmlspecialchars(foldate2print($rowdata[5])); +print "

"; +$mp4filename = $rowdata[9]; +$serverfqdn = getserverfqdn(); + + +$m2pfilename = $rowdata[8]; + +list($tid,$countno,$date,$time)= split ("-", $m2pfilename ); + $tid = ereg_replace("[^0-9]", "", $tid); + +$path = ereg_replace("\.m2p$", "", $m2pfilename); +$serveruri = getserverfqdn (); + +print "

\n"; + +//画像 + +print "$tid:$countno:$filetid\n"; + + +if (getform(preview) == 1){ +//プレビュー表示 +// htmlspecialchars(stripslashes( )) +$subject = getform(subject); +$maintext = getform(textarea); +//$maintext = mbereg_replace("\n","
\n", $maintext); +$rate = getform(rank4); + +switch ($rate) { + case -2: + $ratechara = "× "; + break; + case -1: + $ratechara = "▲ "; + break; + case 0: + $ratechara = "− "; + break; + case 1: + $ratechara = "★ "; + break; + case 2: + $ratechara = "★★ "; + break; + case 3: + $ratechara = "★★★ "; + break; + case 4: + $ratechara = "★★★★ "; + break; + default: + $ratechara = "− "; +} +$subject = $ratechara . $subject; + +print "". htmlspecialchars(stripslashes( $subject)) ."\n"; +print "". stripslashes( $maintext) ."
\n"; +print "
\n"; +print "本文(source view):
". htmlspecialchars(stripslashes( $maintext)) ."



\n"; + +print "
[ Send Picture Only ] [ ]
"; + + +}else{//編集書き込みモード +//タイトル +if ($tid == 0){ + $subjects = "「".$subtitle."」"; +}else{ + if ($countno == ""){ + $subjects = "$title 「".$subtitle."」"; + }else{ + $subjects = "$title #". $countno ." 「".$subtitle."」"; + } +} +print "
+
+ +
+
+ + +
+ +
+ +"; +}//プレビュー表示かどうか +/* +ToDo +・Formプレビュー +・パブリッシュボタン +・ +*/ + +// タイトル一覧 ここまで +}//if rowdata == 0 + +?> + + +