#!/usr/local/bin/perl
################################################################################
#
# mb_sitenews.cgi
#
# 区分：ネットマーケティング専用
# 概要：お客様お知らせ出力プログラム
# 制作：Ｗｅｂ工房まる高（2011.09.20）
#
################################################################################

# プログラム・バージョン
$ProgramType	= "MB";
$ProgramModel	= "SITENEWS";
$ProgramVersion = "1.00";


##################################
# パス環境取得
##################################
require "./lib/m_lib.pl";							# 必ず先頭に定義


################################################################################
# メイン処理
################################################################################
local($Body);
local($JsPath,$StyleMode,$AccessMode);


$ContentPath	= $HomepageDir;
$CgiPath		= $HomepageDir . "/cgi-bin";
$ImagePath		= $ContentPath;
$JsPath			= $ContentPath;	
$StyleMode		= "c_stylesheet2.js";


#
# お知らせファイルの読み込み
#

$Notice	= "";
open(IN, "< $NewsFile");
@NoticeRec	= <IN>;
close(IN);

@NoticeRec = sort { $b cmp $a; } @NoticeRec;


#
# 表示ニュース編集
#
foreach $News (@NoticeRec){
	chop($News);

	# 発効日<>ニュースNo.<>終了日<>登録日<>ニュース
	($N_date,$N_no,$N_enddate,$N_entrydate,$N_notice)	= split(/<>/,$News);

	if( substr($N_date,0,1) eq '#' || $N_date eq "" ){ next; }

	# ハイパーリンク変換（特種文字変換）
	$N_notice =~ s/&lt;br\ \/&gt;/\n/g;

	# ハイパーリンク解除
	$N_notice =~ s/&lt;/</g;
	$N_notice =~ s/&gt;/>/g;
	$N_notice =~ s/&quot;/"/g;
	$N_notice =~ s/<\/a>/<\/span>/g;
	$N_notice =~ s/<a /<span /g;

	$Notice .=<<EOF_LINE;
<img src="../m/images/icon_leaf.gif" alt="" width="12" height="12"><font color="#006565">$N_date</font><br>
$N_notice
<br>
<div align="center"><img src="../m/images/line_dotted.gif" alt="" width="222" height="9"></div>
<br>
EOF_LINE
}


#
# ニュース表示
#
print <<"EOF";
Content-type: text/html

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=shift_jis">
<meta name="Keywords" content="">
<meta name="Description" content=""> 
<title>なかや保育園</title>
</head>
<body bgcolor="#fff3f9" text="#666666" link="#333333" vlink="#333333">
<a name="top" id="top"></a>
<div align="center"><img src="../m/images/logo.gif" alt="なかや保育園" width="200" height="65"></div>
<font size="1">

<br>
<div align="right"><a href="../m/">ﾎｰﾑﾍﾟｰｼﾞに戻る</a></div>
<br>
<div align="center"><img src="../m/images/sitenews.gif" alt="最新お知らせ" width="240" height="27"></div>
<br>
$Notice

<br>
<img src="../m/images/icon_leaf.gif" alt="" width="12" height="12"><font color="#006565">社会福祉法人 愛友福祉会 なかや保育園</font><br>
<img src="../m/images/icon_leaf.gif" alt="" width="12" height="12"><font color="#006565">【住所】〒312-0001 茨城県ひたちなか市佐和612-3</font><br>
<img src="../m/images/icon_leaf.gif" alt="" width="12" height="12"><font color="#006565">【電話】029-285-4808
</font><br>
<br>


<div align="right"><a href="../m/">ﾎｰﾑﾍﾟｰｼﾞに戻る</a></div>
<br>
<div align="center"><img src="../m/images/line.gif" alt="" width="100%" height="2"></div>
<img src="../m/images/spacer.gif" alt="" width="1" height="5"><br>
<div align="right"><a href="#">▲ﾍﾟｰｼﾞﾄｯﾌﾟへ</a></div>
<img src="../m/images/spacer.gif" alt="" width="1" height="5"><br>
<div align="center"><img src="../m/images/footer.gif" alt="" width="240" height="27"></div>

</font>
</body>
</html>
EOF

exit;
