mithrandir    04/11/06 03:29:50

  CVSROOT/commitlogs - New directory

mithrandir    04/11/06 03:30:50

  Modified:    .        config
  Log:
  disable warning
  
  Revision  Changes    Path
  1.2       +1 -0      CVSROOT/config
  
  Index: config
  ===================================================================
  RCS file: /cvsroot/simin/CVSROOT/config,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- config	21 Oct 2004 07:14:19 -0000	1.1
  +++ config	5 Nov 2004 18:30:50 -0000	1.2
  @@ -12,3 +12,4 @@
   # Set `LogHistory' to `all' or `TOFEWGCMAR' to log all transactions to the
   # history file, or a subset as needed (ie `TMAR' logs all write operations)
   #LogHistory=TOFEWGCMAR
  +UseNewInfoFmtStrings=no
  
  
  


mithrandir    04/11/06 03:37:44

  Modified:    .        log_accum.pl
  Log:
  change From
  
  Revision  Changes    Path
  1.3       +3 -1      CVSROOT/log_accum.pl
  
  Index: log_accum.pl
  ===================================================================
  RCS file: /cvsroot/simin/CVSROOT/log_accum.pl,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- log_accum.pl	5 Nov 2004 18:29:24 -0000	1.2
  +++ log_accum.pl	5 Nov 2004 18:37:44 -0000	1.3
  @@ -12,7 +12,7 @@
   # Roy Fielding removed useless code and added log/mail of new files
   # Ken Coar added special processing (i.e., no diffs) for binary files
   #
  -# $Id: log_accum.pl,v 1.2 2004/11/05 18:29:24 mithrandir Exp $
  +# $Id: log_accum.pl,v 1.3 2004/11/05 18:37:44 mithrandir Exp $
   # $Saenaru: /public/sourceforge/chroot/cvsroot/saenaru/CVSROOT/log_accum.pl,v 1.2 2003/12/21 14:30:43 perky Exp $
   
   ############################################################
  @@ -301,11 +301,13 @@
       open(MAIL, "| /usr/sbin/sendmail $MAIL_TO");
   
       $subject = "Subject: $ARGV[0]";
  +	$cvs_user = $ENV{'USER'} || getlogin || (getpwuid($<))[0] || sprintf("uid#%d",$<);
       if ($subject ne "") {
   	print(MAIL $subject, "\n");
       }
       print(MAIL "To: $MAIL_TO\n");
       print(MAIL "Content-Type: text/plain; charset=euc-kr\n");
  +	print(MAIL "From: $cvs_user".'@kldp.net'."\n");
       print(MAIL "\n");
       print(MAIL join("\n", @text));
   
  
  
  


mithrandir    04/11/06 03:38:23

  Modified:    .        config
  Log:
  disable warning
  
  Revision  Changes    Path
  1.3       +1 -1      CVSROOT/config
  
  Index: config
  ===================================================================
  RCS file: /cvsroot/simin/CVSROOT/config,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- config	5 Nov 2004 18:30:50 -0000	1.2
  +++ config	5 Nov 2004 18:38:23 -0000	1.3
  @@ -12,4 +12,4 @@
   # Set `LogHistory' to `all' or `TOFEWGCMAR' to log all transactions to the
   # history file, or a subset as needed (ie `TMAR' logs all write operations)
   #LogHistory=TOFEWGCMAR
  -UseNewInfoFmtStrings=no
  +UseNewInfoFmtStrings=yes
  
  
  


comfuture    04/11/24 17:23:58

  Log:
  Status:
  
  Vendor Tag:	tcvs-vendor
  Release Tags:	tcvs-release
  
  No conflicts created by this import


comfuture    04/11/24 17:25:42

  Log:
  Status:
  
  Vendor Tag:	tcvs-vendor
  Release Tags:	tcvs-release
  
  No conflicts created by this import


comfuture    04/11/24 17:32:40

  Added:       .        scheme.sql
  Log:
  mysql ̺ Ű
  
  Revision  Changes    Path
  1.1                  CVSROOT/scheme.sql
  
  Index: scheme.sql
  ===================================================================
  ## db scheme
  ## created by maroo
  
  DROP TABLE IF EXISTS simin_user;
  CREATE TABLE simin_user (
  	uid INT NOT NULL PRIMARY KEY auto_increment,
  	user VARCHAR(20) NOT NULL,
  	pass VARCHAR(60) NOT NULL,
  	name VARCHAR(50) NOT NULL DEFAULT '',
  	email VARCHAR(62) NOT NULL DEFAULT '',
  	activate TINYINT NOT NULL DEFAULT 0,
  	reg_date DATETIME NOT NULL DEFAULT '2004-10-20',
  
  	UNIQUE idx_user (user),
  	KEY key_activate (activate),
  	KEY key_reg_date (reg_date)
  );
  
  DROP TABLE IF EXISTS simin_money;
  CREATE TABLE simin_money (
  	idx INT NOT NULL PRIMARY KEY auto_increment,
  	uid INT NOT NULL,
  	money INT NOT NULL DEFAULT 500000,
  
  	UNIQUE idx_uid (uid)
  );
  
  DROP TABLE IF EXISTS simin_rank;
  CREATE TABLE simin_rank (
  	idx INT NOT NULL PRIMARY KEY auto_increment,
  	user VARCHAR(20) NOT NULL,
  	name VARCHAR(50) NOT NULL,
  	rank INT NOT NULL,
  
  	UNIQUE idx_user (user),
  	KEY key_rank (rank)
  );
  
  DROP TABLE IF EXISTS simin_log;
  CREATE TABLE simin_log (
  	idx INT NOT NULL PRIMARY KEY auto_increment,
  	user VARCHAR(20) NOT NULL,
  	event VARCHAR(255),
  	status CHAR(10),
  	price INT,
  	reg_date DATETIME,
  
  	INDEX idx_user (user,reg_date)
  );
  
  DROP TABLE IF EXISTS simin_news;
  CREATE TABLE simin_news (
  	idx INT NOT NULL PRIMARY KEY auto_increment,
  	subject VARCHAR(100) NOT NULL DEFAULT '',			# news, notice, etc...
  	title VARCHAR(255) NOT NULL DEFAULT '',
  	content TEXT,
  	name VARCHAR(20) NOT NULL DEFAULT '',
  	user VARCHAR(20) NOT NULL DEFAULT '',
  	reg_date DATETIME
  );
  
  DROP TABLE IF EXISTS simin_gameroom;
  CREATE TABLE simin_gameroom (
  	idx INT NOT NULL PRIMARY KEY,
  	title VARCHAR(100) NOT NULL DEFAULT '',
  ) type=heap;
  
  DROP TABLE IF EXISTS simin_gameroom_member;
  CREATE TABLE simin_gameroom_member (
  	idx INT NOT NULL PRIMARY KEY,
  	room_no INT NOT NULL,								# simin_gameroom.idx
  	user VARCHAR(20) NOT NULL,
  ) type=heap;
  
  


suup        04/12/17 02:52:08

  Log:
  Status:
  
  Vendor Tag:	tcvs-vendor
  Release Tags:	tcvs-release
  
  No conflicts created by this import


