Add/fix copyright/licenses.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21394 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fedor 2005-07-01 21:00:04 +00:00
parent 6d0751af3e
commit efb94a8834
69 changed files with 384 additions and 1 deletions

View file

@ -1,3 +1,35 @@
2005-07-01 Adam Fedor <fedor@gnu.org>
* Documentation/Base.gsdoc, Documentation/BaseAdditions.gsdoc,
Documentation/Functions.gsdoc, Documentation/ReleaseNotes.gsdoc,
Documentation/TypesAndConstants.gsdoc,
Documentation/General/Debugging.gsdoc,
Documentation/manual/GNUmakefile,
Source/NSMessagePortNameServer.m,
Testing/NSData-test.m, Testing/awake.m, Testing/basic.m,
Testing/coder.m, Testing/containers.m, Testing/fref.m,
Testing/gstcpport-client.m, Testing/gstcpport-server.m,
Testing/heap.m, Testing/nsarchiver.m, Testing/nsarray.m,
Testing/nscharacterset.m, Testing/nsconnection.m,
Testing/nsconnection_client.m, Testing/nsconnection_server.m,
Testing/nsdata.m, Testing/nsdate.m, Testing/nsdictionary.m,
Testing/nsfilehandle.m, Testing/nsfilemanager.m,
Testing/nshashtable.m, Testing/nshost.m, Testing/nsindexset.m,
Testing/nsinvocation.m, Testing/nsmaptable.m,
Testing/nsnotification.m, Testing/nspathutilities.m,
Testing/nsprocessinfo.m, Testing/nsscanner.m, Testing/nsset.m,
Testing/nstask.m, Testing/nstimer.m, Testing/nstimezone.m,
Testing/nsundomanager.m, Testing/nsxmlparser.m, Testing/nxst.m,
Testing/oldserver.h, Testing/prepend.m, Testing/randoms.m,
Testing/release.m, Testing/server.h, Testing/string.m,
Testing/tcpport-client.m, Testing/tcpport-server.m,
Testing/thread-except.m, Testing/thread.m, Testing/values.m,
Testing/wgetopt.h, Tools/BaseTools.gsdoc, Tools/autogsdoc.1,
Tools/cvtenc.1, Tools/defaults.1, Tools/gdnc.1,
Tools/gdomap.8, Tools/gsdoc.7, Tools/locale_alias.m,
Tools/pldes.1, Tools/plist-0_9.dtd, Tools/sfparse.1,
Tools/xmlparse.1: Add/fix copyright/licenses.
2005-07-01 Richard Frith-Macdonald <rfm@gnu.org>
* The last change passed regression tests etc, but one program

View file

@ -7,6 +7,7 @@
<email address="rfm@gnu.org"/>
<url url="http://www.gnustep.org/developers/whoiswho.html"/>
</author>
<copy>2005 Free Software Foundation, Inc.</copy>
<version>$Revision$</version>
<date>$Date$</date>
</head>

View file

@ -7,6 +7,7 @@
<email address="rfm@gnu.org"/>
<url url="http://www.gnustep.org/developers/whoiswho.html"/>
</author>
<copy>2005 Free Software Foundation, Inc.</copy>
<version>$Revision$</version>
<date>$Date$</date>
</head>

View file

@ -4,6 +4,7 @@
<head>
<title>Functions</title>
<author name="Richard Frith-Macdonald"></author>
<copy>2005 Free Software Foundation, Inc.</copy>
</head>
<body>
<front>

View file

@ -4,6 +4,7 @@
<head>
<title>Debugging with GDB</title>
<author name="Adam Fedor"></author>
<copy>Copyright (C) 2005 Free Software Foundation, Inc.</copy>
</head>
<body>
<chapter>

View file

@ -7,6 +7,7 @@
<email address="fedor@gnu.org"/>
<url url="http://www.gnustep.org/developers/whoiswho.html"/>
</author>
<copy>2005 Free Software Foundation, Inc.</copy>
<version>$Revision$</version>
<date>$Date$</date>
</head>

View file

@ -4,6 +4,7 @@
<head>
<title>Types and Constants</title>
<author name="Richard Frith-Macdonald"></author>
<copy>2005 Free Software Foundation, Inc.</copy>
</head>
<body>
<front>

View file

@ -1,3 +1,22 @@
#
# Makefile for GNUstep base manual
#
# Copyright (C) 2005 Free Software Foundation, Inc.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this library; see the file COPYING.LIB.
# If not, write to the Free Software Foundation,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
include $(GNUSTEP_MAKEFILES)/common.make

View file

@ -1,3 +1,27 @@
/* Implementation of message port subclass of NSPortNameServer
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 USA.
<title>NSMessagePortNameServer class reference</title>
$Date$ $Revision$
*/
#include "Foundation/NSPortNameServer.h"
#include "Foundation/NSAutoreleasePool.h"

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
/******************************************************************************
* Module : NSMutableData(NSData) --- Black Box test module for the
* *Data classes to make sure that methods that raise exceptions

View file

@ -1,6 +1,12 @@
/* Test use of -awakeAfterUsingCoder:
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
This is a rather complicated, strenuous test, borrowing elements
from the fref.m test. */
from the fref.m test.
*/
/* Beginning of some parameters to vary. */

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/Foundation.h>
#include <GNUstepBase/GCObject.h>
#include <GNUstepBase/GSMime.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
/* A demonstration of writing and reading GNU Objective C objects to a file. */
// Fri Oct 23 03:01:09 MET DST 1998 dave@turbocat.de

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/Foundation.h>
#include <objc/Protocol.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
/* Test NSArchiver on encoding of self-referential forward references. */
#include <Foundation/NSArchiver.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/NSAutoreleasePool.h>
#include <Foundation/NSProcessInfo.h>
#include <Foundation/NSRunLoop.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/NSAutoreleasePool.h>
#include <Foundation/NSProcessInfo.h>
#include <Foundation/NSRunLoop.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
/* Test Heap class. */
#include <GNUstepBase/all.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
/* A demonstration of writing and reading with NSArchiver */
#if 1

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/NSAutoreleasePool.h>
#include <Foundation/NSArray.h>
#include <Foundation/NSValue.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/NSCharacterSet.h>
#include <Foundation/NSAutoreleasePool.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#define STRICT_OPENSTEP 1
#include <Foundation/Foundation.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <stdio.h>
#include <Foundation/NSObject.h>
#include <Foundation/NSConnection.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/NSDictionary.h>
#include <Foundation/NSConnection.h>
#include <Foundation/NSDistantObject.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <stdio.h>
#include <Foundation/NSData.h>
#include <Foundation/NSException.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/NSDate.h>
#include <Foundation/NSCalendarDate.h>
#include <Foundation/NSAutoreleasePool.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/NSDictionary.h>
#include <Foundation/NSString.h>
#include <Foundation/NSArray.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/NSAutoreleasePool.h>
#include <Foundation/NSFileHandle.h>
#include <Foundation/NSManager.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/Foundation.h>
static int errors = 0;

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <stdio.h>
#include <Foundation/NSHashTable.h>
#include <Foundation/NSValue.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
// Fri Oct 23 03:02:52 MET DST 1998 dave@turbocat.de
#include <Foundation/NSArray.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/Foundation.h>
int

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/NSMethodSignature.h>
#include <Foundation/NSInvocation.h>
#include <Foundation/NSString.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <stdio.h>
#include <Foundation/NSMapTable.h>
#include <Foundation/NSValue.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
/* The simplest of tests for the NSNotification and NSNotificationCenter
classes. These tests should be expanded.

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
/* TESTING: NSPathUtilities.h ************************************************
* *
* Author: Sheldon Gill *

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/NSProcessInfo.h>
#include <Foundation/NSString.h>
#include <Foundation/NSArray.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
/*
* Test the operation of the NSScanner class.
* All is well if this program produces no output.

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/NSSet.h>
#include <Foundation/NSArray.h>
#include <Foundation/NSString.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/Foundation.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/NSRunLoop.h>
#include <Foundation/NSTimer.h>
#include <Foundation/NSInvocation.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
/* Test time zone code. */
#include <stdio.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/Foundation.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/Foundation.h>
@interface MyDelegate : NSObject

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
/* Test NXStringTable class. */
#include <objc/NXStringTable.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#ifndef _server_h
#define _server_h

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
/*
From: Matthias Klose <doko@cs.tu-berlin.de>
Date: Mon, 1 Aug 1994 21:17:20 +0200

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <GNUstepBase/Random.h>
#include <GNUstepBase/RNGBerkeley.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/NSObject.h>
#include <Foundation/NSArray.h>
#include <Foundation/NSAutoreleasePool.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#ifndef _server_h
#define _server_h

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/Foundation.h>
// Fri Oct 23 02:58:47 MET DST 1998 dave@turbocat.de

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <stdio.h>
#include <GNUstepBase/TcpPort.h>
#include <Foundation/NSRunLoop.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <stdio.h>
#include <GNUstepBase/TcpPort.h>
#include <GNUstepBase/Invocation.h>

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
/* Test whether each thread has their own exception handlers. */
#ifndef _REENTRANT

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#include <Foundation/Foundation.h>
NSLock *lock = nil;

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
/*
Test NSValue, NSNumber, and related classes

View file

@ -1,3 +1,9 @@
/* Test/example program for the base library
Copyright (C) 2005 Free Software Foundation, Inc.
This file is part of the GNUstep Base Library.
*/
#if (defined __MINGW__)
/* A simple implementation of getopt() */
static int

View file

@ -5,6 +5,7 @@
<title>Base Tools</title>
<author name="Richard Frith-MacDonald"/>
<author name="and various others..."/>
<copy>2005 Free Software Foundation, Inc.</copy>
</head>
<body>
<chapter>

View file

@ -1,5 +1,6 @@
.\"autogsdoc(1) man page
.\"written by Adrian Robert <arobert@cogsci.ucsd.edu>
.\"Copyright (C) 2005 Free Software Foundation, Inc.
.\"
.\"Process this file with
.\"groff -man -Tascii autogsdoc.1

View file

@ -1,3 +1,4 @@
.\"Copyright (C) 2005 Free Software Foundation, Inc.
.TH CVTENC "1" "February 2004" "GNUstep" "GNUstep System Manual"
.SH NAME
cvtenc \- file encoding converter

View file

@ -1,3 +1,4 @@
.\"Copyright (C) 2005 Free Software Foundation, Inc.
.TH DEFAULTS "1" "February 2004" "GNUstep" "GNUstep System Manual"
.SH NAME
defaults - read or modify GNUstep user defaults

View file

@ -1,5 +1,6 @@
.\"gdnc(1) man page
.\"put together by Martin Brecher <martin@gnustep.de>
.\"Copyright (C) 2005 Free Software Foundation, Inc.
.\"
.\"Process this file with
.\"groff -man -Tascii gdnc.1

View file

@ -1,5 +1,6 @@
.\"gdomap(8) man page
.\"put together by Martin Brecher <martin@gnustep.de>
.\"Copyright (C) 2005 Free Software Foundation, Inc.
.\"
.\"Process this file with
.\"groff -man -Tascii gdomap.8

View file

@ -1,5 +1,6 @@
.\"gsdoc(1) man page
.\"written by Adrian Robert <arobert@cogsci.ucsd.edu>
.\"Copyright (C) 2005 Free Software Foundation, Inc.
.\"
.\"Process this file with
.\"groff -man -Tascii gsdoc.7

View file

@ -1,6 +1,8 @@
/* locale_alias - Test program to create a file of locale to language name
aliases
Copyright (C) 2005 Free Software Foundation, Inc.
Written: Adam Fedor <fedor@gnu.org>
Date: Oct 2000

View file

@ -1,5 +1,6 @@
.\"property list tools man page
.\"written by Adrian Robert (arobert@cogsci.ucsd.edu)
.\"Copyright (C) 2005 Free Software Foundation, Inc.
.\"
.\"Process this file with
.\"groff -man -Tascii gdnc.1

View file

@ -2,6 +2,8 @@
XML Document Type Definition for GNUstep property list (plist).
Copyright (C) 2005 Free Software Foundation, Inc.
This is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either

View file

@ -1,3 +1,4 @@
.\"Copyright (C) 2005 Free Software Foundation, Inc.
.TH SFPARSE "1" "February 2004" "GNUstep" "GNUstep System Manual"
.SH NAME
sfparse \- string file parse

View file

@ -1,3 +1,4 @@
.\"Copyright (C) 2005 Free Software Foundation, Inc.
.TH XMLPARSE "1" "February 2004" "GNUstep" "GNUstep System Manual"
.SH NAME
xmlparse \- error-check and validate XML documents