Update the copyrights on the PHP lib to have legal names.

This commit is contained in:
Jeff Teunissen 2001-07-19 11:52:47 +00:00
parent 8003941489
commit d7a07d55c5
9 changed files with 64 additions and 68 deletions

View file

@ -4,8 +4,7 @@
Array-handling function library
Copyright (C) 2000 Contributors of the QuakeForge Project
Please see the file "AUTHORS" for a list of contributors
Copyright (C) 2000, 2001 Jeff Teunissen <deek@quakeforge.net>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
@ -25,6 +24,7 @@
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA.
*/
define ('_ARRAY_', 1);
/*
inArray
@ -59,7 +59,6 @@
}
}
define('_ARRAY_', 1);
addToArray ('array', $has);
addToArray ('array', $needs);
?>

View file

@ -4,8 +4,7 @@
Authentication/Authorization function library
Copyright (C) 2000 Contributors of the QuakeForge Project
Please see the file "AUTHORS" for a list of contributors
Copyright (C) 2000, 2001 Jeff Teunissen <deek@quakeforge.net>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
@ -25,7 +24,6 @@
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA.
*/
have ('auth');
need ('table');

View file

@ -4,8 +4,7 @@
Date data and functions
Copyright (C) 2000 Contributors of the QuakeForge Project
Please see the file "AUTHORS" for a list of contributors
Copyright (C) 2000, 2001 Jeff Teunissen <deek@quakeforge.net>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License

View file

@ -4,8 +4,7 @@
File processing function library
Copyright (C) 2000 Contributors of the QuakeForge Project
Please see the file "AUTHORS" for a list of contributors
Copyright (C) 2000, 2001 Jeff Teunissen <deek@quakeforge.net>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
@ -25,7 +24,6 @@
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA.
*/
have ('file');
/*

View file

@ -4,8 +4,7 @@
Graphing function library
Copyright (C) 2000 Contributors of the QuakeForge Project
Please see the file "AUTHORS" for a list of contributors
Copyright (C) 2000,2001 Jeff Teunissen <deek@quakeforge.net>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
@ -25,7 +24,6 @@
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA.
*/
have ('graph');
/*
@ -39,24 +37,31 @@
$i = $pct;
$j = 100 - $newPct;
$result = '';
for (; $i >= 20; $i -= 20) {
$result .= '<IMG src="/img/graph/ProgressBar.20.white.gif" vAlign="center" width="50" height="10" border="0" alt=" ">';
}
for (; $i >= 10; $i -= 10) {
$result .= '<IMG src="/img/graph/ProgressBar.10.white.gif" vAlign="center" width="25" height="10" border="0" alt=" ">';
}
for (; $i >= 2; $i -= 2) {
$result .= '<IMG src="/img/graph/ProgressBar.2.white.gif" vAlign="center" width="5" height="10" border="0" alt=" ">';
}
for (; $j >= 20; $j -= 20) {
$result .= '<IMG src="/img/graph/ProgressBar.20.gray.gif" vAlign="center" width="50" height="10" border="0" alt=" ">';
}
for (; $j >= 10; $j -= 10) {
$result .= '<IMG src="/img/graph/ProgressBar.10.gray.gif" vAlign="center" width="25" height="10" border="0" alt=" ">';
}
for (; $j >= 2; $j -= 2) {
$result .= '<IMG src="/img/graph/ProgressBar.2.gray.gif" vAlign="center" width="5" height="10" border="0" alt=" ">';
}
return $result;
}
?>

View file

@ -4,8 +4,7 @@
Network function library
Copyright (C) 2000 Contributors of the QuakeForge Project
Please see the file "AUTHORS" for a list of contributors
Copyright (C) 2000,2001 Jeff Teunissen <deek@quakeforge.net>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
@ -26,6 +25,7 @@
Boston, MA 02111-1307, USA.
*/
have ('network');
/*
finger
@ -34,8 +34,9 @@
function finger ($user, $host)
{
$fp = fsockopen ($host, 79, &$errno, &$errstr) or die ("$errno: $errstr");
fputs ($fp, "$user\n");
while ( !feof( $fp ) ) {
while (!(feof ($fp))) {
echo fgets ($fp, 128);
}
fclose ($fp);

View file

@ -4,8 +4,8 @@
SQL-based news reading library
Copyright (C) 2000 Contributors of the QuakeForge Project
Please see the file "AUTHORS" for a list of contributors
Copyright (C) 2000,2001 Jeff Teunissen <deek@quakeforge.net>
Copyright (C) 2000 Daniel David Olson <theoddone33@users.sourceforge.net>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
@ -30,7 +30,6 @@
function newsItem ($date, $user, $text)
{
if ($user == "Theoddone33") $user = "theoddone33";
echo '<TR>' .
' <TD>' .
' <DL>' .
@ -45,7 +44,6 @@
{
need ("date");
if ($array[n_user] == "Theoddone33") $user = "theoddone33";
return '<TR>' .
' <TD>' .
' <DL>' .

View file

@ -4,8 +4,7 @@
SQL function library
Copyright (C) 2000 Contributors of the QuakeForge Project
Please see the file "AUTHORS" for a list of contributors
Copyright (C) 2000,2001 Jeff Teunissen <deek@quakeforge.net>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License

View file

@ -4,8 +4,7 @@
Table function library
Copyright (C) 2000 Contributors of the QuakeForge Project
Please see the file "AUTHORS" for a list of contributors
Copyright (C) 2000,2001 Jeff Teunissen <deek@quakeforge.net>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License