Updated email and web addresses in comment header

This commit is contained in:
Thomas Jensen 2006-07-12 05:25:27 +00:00
parent 40a1bb3487
commit 3f8bdab8f2
8 changed files with 58 additions and 30 deletions

View File

@ -1,11 +1,10 @@
#
# File: Makefile
# Creation: March 18, 1999 (Thursday, 15:10h)
# Author: Copyright (C) 1999 Thomas Jensen
# tsjensen@stud.informatik.uni-erlangen.de
# Version: $Id: Makefile,v 1.16 1999/11/08 10:55:13 tsjensen Exp tsjensen $
# Author: Copyright (C) 1999 Thomas Jensen <boxes@thomasjensen.com>
# Version: $Id: Makefile,v 1.17 2000-03-17 15:51:43-08 tsjensen Exp tsjensen $
# Format: GNU make
# Web Site: http://home.pages.de/~jensen/boxes/
# Web Site: http://boxes.thomasjensen.com/
# Platforms: sparc/Solaris 2.6 and others
# Purpose: Makefile for boxes, the box drawing program
#
@ -25,6 +24,9 @@
# Revision History:
#
# $Log: Makefile,v $
# Revision 1.17 2000-03-17 15:51:43-08 tsjensen
# Added Makefile.Win32 and misc/* to snap generation commands
#
# Revision 1.16 1999/11/08 10:55:13 tsjensen
# Moved config.h into ORIG_HDRCL group, so it appears in the change log Web
# page

View File

@ -2,10 +2,10 @@
* File: lexer.h
* Project Main: boxes.c
* Date created: July 01, 1999 (Thursday, 13:43h)
* Author: Copyright (C) 1999 Thomas Jensen
* tsjensen@stud.informatik.uni-erlangen.de
* Version: $Id: lexer.h,v 1.3 1999/08/14 19:06:26 tsjensen Exp tsjensen $
* Author: Copyright (C) 1999 Thomas Jensen <boxes@thomasjensen.com>
* Version: $Id: lexer.h,v 1.4 1999-08-18 08:42:46-07 tsjensen Exp tsjensen $
* Language: ANSI C
* World Wide Web: http://boxes.thomasjensen.com/
* Purpose: Export symbols used by the parser files only
*
* Remarks: o This program is free software; you can redistribute it and/or
@ -24,6 +24,10 @@
* Revision History:
*
* $Log: lexer.h,v $
* Revision 1.4 1999-08-18 08:42:46-07 tsjensen
* Added LEX_SDELIM macro (valid string delimiter characters)
* Added prototype for chg_strdelims()
*
* Revision 1.3 1999/08/14 19:06:26 tsjensen
* Added GNU GPL disclaimer
* Added yylex() declaration to please compiler

View File

@ -2,10 +2,10 @@
/*
* File: parser.y
* Date created: March 16, 1999 (Tuesday, 17:17h)
* Author: Copyright (C) 1999 Thomas Jensen
* tsjensen@stud.informatik.uni-erlangen.de
* Version: $Id: parser.y,v 1.21 1999/08/18 15:38:44 tsjensen Exp tsjensen $
* Author: Copyright (C) 1999 Thomas Jensen <boxes@thomasjensen.com>
* Version: $Id: parser.y,v 1.22 1999-08-21 08:53:58-07 tsjensen Exp tsjensen $
* Language: GNU bison (ANSI C)
* World Wide Web: http://boxes.thomasjensen.com/
* Purpose: Yacc parser for boxes configuration files
*
* Remarks: o This program is free software; you can redistribute it and/or
@ -24,6 +24,9 @@
* Revision History:
*
* $Log: parser.y,v $
* Revision 1.22 1999-08-21 08:53:58-07 tsjensen
* Removed check for empty sample block, which is also done in lexer.l
*
* Revision 1.21 1999/08/18 15:38:44 tsjensen
* Added new tokens YCHGDEL and YDELWORD
* Added code for DELIMITER statements
@ -130,7 +133,7 @@
const char rcsid_parser_y[] =
"$Id: parser.y,v 1.21 1999/08/18 15:38:44 tsjensen Exp tsjensen $";
"$Id: parser.y,v 1.22 1999-08-21 08:53:58-07 tsjensen Exp tsjensen $";
static int pflicht = 0;

View File

@ -2,10 +2,10 @@
* File: remove.h
* Project Main: boxes.c
* Date created: June 23, 1999 (Wednesday, 21:00h)
* Author: Copyright (C) 1999 Thomas Jensen
* tsjensen@stud.informatik.uni-erlangen.de
* Version: $Id: remove.h,v 1.1 1999/06/23 19:15:00 tsjensen Exp $
* Author: Copyright (C) 1999 Thomas Jensen <boxes@thomasjensen.com>
* Version: $Id: remove.h,v 1.2 1999-07-23 09:16:40-07 tsjensen Exp tsjensen $
* Language: ANSI C
* World Wide Web: http://boxes.thomasjensen.com/
* Purpose: Box removal, i.e. the deletion of boxes
*
* Remarks: o This program is free software; you can redistribute it and/or
@ -24,6 +24,9 @@
* Revision History:
*
* $Log: remove.h,v $
* Revision 1.2 1999-07-23 09:16:40-07 tsjensen
* Added GNU GPL disclaimer
*
* Revision 1.1 1999/06/23 19:15:00 tsjensen
* Initial revision
*

View File

@ -2,11 +2,10 @@
* File: shape.c
* Project Main: boxes.c
* Date created: June 23, 1999 (Wednesday, 13:39h)
* Author: Copyright (C) 1999 Thomas Jensen
* tsjensen@stud.informatik.uni-erlangen.de
* Version: $Id: shape.c,v 1.4 1999/07/23 16:38:02 tsjensen Exp tsjensen $
* Author: Copyright (C) 1999 Thomas Jensen <boxes@thomasjensen.com>
* Version: $Id: shape.c,v 1.5 1999-08-14 12:11:53-07 tsjensen Exp tsjensen $
* Language: ANSI C
* World Wide Web: http://home.pages.de/~jensen/boxes/
* World Wide Web: http://boxes.thomasjensen.com/
* Purpose: Shape handling and information functions
*
* Remarks: o This program is free software; you can redistribute it and/or
@ -25,6 +24,11 @@
* Revision History:
*
* $Log: shape.c,v $
* Revision 1.5 1999-08-14 12:11:53-07 tsjensen
* Added findshape(), genshape(), freeshape(), and isdeepempty() functions
* Added on_side() back in with a few changes
* Changed empty_side() to use isdeepempty() -> much simpler code
*
* Revision 1.4 1999/07/23 16:38:02 tsjensen
* Removed functions iscorner(), on_side(), shapecmp(), both_on_side(), and
* shape_distance() - nobody was using them anyway.
@ -53,7 +57,7 @@
#include "tools.h"
static const char rcsid_shape_c[] =
"$Id: shape.c,v 1.4 1999/07/23 16:38:02 tsjensen Exp tsjensen $";
"$Id: shape.c,v 1.5 1999-08-14 12:11:53-07 tsjensen Exp tsjensen $";

View File

@ -2,10 +2,10 @@
* File: shape.h
* Project Main: boxes.c
* Date created: June 23, 1999 (Wednesday, 13:45h)
* Author: Copyright (C) 1999 Thomas Jensen
* tsjensen@stud.informatik.uni-erlangen.de
* Version: $Id: shape.h,v 1.3 1999/07/23 16:36:33 tsjensen Exp tsjensen $
* Author: Copyright (C) 1999 Thomas Jensen <boxes@thomasjensen.com>
* Version: $Id: shape.h,v 1.4 1999-08-14 12:08:34-07 tsjensen Exp tsjensen $
* Language: ANSI C
* World Wide Web: http://boxes.thomasjensen.com/
* Purpose: Shape handling and information functions
*
* Remarks: o This program is free software; you can redistribute it and/or
@ -24,6 +24,12 @@
* Revision History:
*
* $Log: shape.h,v $
* Revision 1.4 1999-08-14 12:08:34-07 tsjensen
* Added genshape(), freeshape(), and findshape() prototypes
* Added on_side() prototype back again
* Added isdeepempty() prototype
* Changed first parameter of empty_side() prototype
*
* Revision 1.3 1999/07/23 16:36:33 tsjensen
* Added GNU GPL disclaimer
* Removed prototypes of iscorner(), on_side(), shapecmp(), both_on_side(),

View File

@ -2,11 +2,10 @@
* File: tools.c
* Project Main: boxes.c
* Date created: June 20, 1999 (Sunday, 16:51h)
* Author: Copyright (C) 1999 Thomas Jensen
* tsjensen@stud.informatik.uni-erlangen.de
* Version: $Id: tools.c,v 1.4 1999/08/21 16:09:33 tsjensen Exp tsjensen $
* Author: Copyright (C) 1999 Thomas Jensen <boxes@thomasjensen.com>
* Version: $Id: tools.c,v 1.5 1999-08-31 08:35:13-07 tsjensen Exp tsjensen $
* Language: ANSI C
* World Wide Web: http://home.pages.de/~jensen/boxes/
* World Wide Web: http://boxes.thomasjensen.com/
* Purpose: Provide tool functions for error reporting and some
* string handling
*
@ -26,6 +25,10 @@
* Revision History:
*
* $Log: tools.c,v $
* Revision 1.5 1999-08-31 08:35:13-07 tsjensen
* Applied Joe Zbiciak's patches to remove all snprintf()s and variants
* Added concat_strings() function and changed yyerror() in the process
*
* Revision 1.4 1999/08/21 16:09:33 tsjensen
* Removed newline check from empty_line() function
*
@ -55,7 +58,7 @@
static const char rcsid_tools_c[] =
"$Id: tools.c,v 1.4 1999/08/21 16:09:33 tsjensen Exp tsjensen $";
"$Id: tools.c,v 1.5 1999-08-31 08:35:13-07 tsjensen Exp tsjensen $";

View File

@ -2,10 +2,10 @@
* File: tools.h
* Project Main: boxes.c
* Date created: June 20, 1999 (Sunday, 16:57h)
* Author: Copyright (C) 1999 Thomas Jensen
* tsjensen@stud.informatik.uni-erlangen.de
* Version: $Id: tools.h,v 1.2 1999/07/20 18:56:15 tsjensen Exp tsjensen $
* Author: Copyright (C) 1999 Thomas Jensen <boxes@thomasjensen.com>
* Version: $Id: tools.h,v 1.3 1999-08-31 08:38:42-07 tsjensen Exp tsjensen $
* Language: ANSI C
* World Wide Web: http://boxes.thomasjensen.com/
* Purpose: Tool functions for error reporting and some string
* handling and other needful things
*
@ -25,6 +25,9 @@
* Revision History:
*
* $Log: tools.h,v $
* Revision 1.3 1999-08-31 08:38:42-07 tsjensen
* Added concat_strings() function prototype from Joe Zbiciak's patches
*
* Revision 1.2 1999/07/20 18:56:15 tsjensen
* Added GNU GPL disclaimer
* Removed include boxes.h