#! /usr/bin/perl # # mgchat2.cgi # 2.205 : 2/19/07 : postprocessを修正 # 2.204 : 12/19/06 : postprocessを修正 # 2.203 : 11/15/06 : ローカルタイムのオプションを追加 # 2.202 : 10/16/06 : Cookieを修正 # 2.201 : 10/1/06 : 退室時のエラーを修正 # 2.2 : 7/30/06 : Modified from mgchat.cgi # # http://www.hidekik.com # # $Id: mgchat2.cgi,v 1.6 2007/02/18 22:02:47 Hideki Kanayama Exp $ # Copyright(c) 1998-2007, Hideki Kanayama, All rights reserved. use strict; use CGI::Carp qw(fatalsToBrowser); use CGI qw(:cgi-bin); use File::Basename; #管理人パスワードファイル my $admindat = "adminpwd.dat"; #セットアップファイル my $setupfile = "mgchat_setup.pl"; my $version="2.205"; my $lastupdateyear = "2007"; #このスクリプト my $script = basename($0); my $method = 'post'; my $admin_link = "$script?mode=admin"; my $lang = 0; #### 環境設定 ###### ここから ############ our $chatfile = "chatdata.dat"; our $joinlist = "join.lst"; #タイトルロゴ 1:使用 0:非使用 our $title_logo_en = 0; our $title_logo = ''; our $title = 'チャット2'; our $title_color = '#0000ff'; our $toplink_en = 1; our $toplink_link = '..'; our $toplink_title = '【トップへ】'; our $admin_link_en = 1; our $admin_title = '【管理用】'; #トップと管理用のリンク先のターゲットウィンドウ our $top_target = '_top'; # 待機ウィンドウ 1:on, 0:off our $wait_en = 1; our $wait_title = '待機'; # シンプルウィンドウ 1:on, 0:off our $simple_en = 1; our $simple_title = 'シンプル'; # シンプル2ウィンドウ 1:on, 0:off our $simple2_en = 1; our $simple2_title = 'シンプル2'; # スプリットウィンドウ 1:on, 0:off our $split_en = 1; our $split_title = '分割'; # バックグランドカラー our $entry_bgcolor = '#ffffff'; our $write_bgcolor = '#ffffff'; our $show_bgcolor = '#ffffff'; # フォントカラー our $name_color = 'darkblue'; our $main_color = 'black'; our $time_color = 'gray'; #cookie name our $cookie_name = 'mgchat_cookie'; #更新間隔のオプション our $int10 = 'on'; our $int20 = 'on'; our $int30 = 'on'; our $int40 = 'on'; our $int50 = 'on'; our $int60 = 'on'; #表示行数のオプション our $line10 = 'on'; our $line30 = 'on'; our $line50 = 'on'; #保存最大行数 our $max = 100; # 時間設定 our $localtime_en = 1; our $offset = 9; #自動退室までの時間 our $limit=600; #
〜内に挿入できる構文 1:on, 0:off our $head_insert_en = 0; our $head_insert = ''; #スタイルシート 1:on 0:off our $style_sheet_en = 1; our $style_sheet = ' A:link {text-decoration: none} A:visited {text-decoration: none} A:active {text-decoration: none} '; #使い方の説明 our $usage = '