From 1f80106afa0f0eb6f12544c75304f2084aca6499 Mon Sep 17 00:00:00 2001 From: adam Date: Tue, 4 Jan 2005 22:45:13 +0000 Subject: [PATCH] licensing update to APSL 2.0 darcs-hash:20050104224513-5007d-2944dfeee82aa1a42822282c995eed69b203932f.gz --- src/org/ibex/util/AccessibleCharArrayWriter.java | 4 ++++ src/org/ibex/util/BalancedTree.java | 9 +++------ src/org/ibex/util/Base64.java | 4 ++++ src/org/ibex/util/CAB.java | 9 +++------ src/org/ibex/util/Cache.java | 9 +++------ src/org/ibex/util/CachedInputStream.java | 9 +++------ src/org/ibex/util/Callback.java | 9 +++------ src/org/ibex/util/CounterEnumeration.java | 10 ++++------ src/org/ibex/util/DirtyList.java | 9 +++------ src/org/ibex/util/Encode.java | 4 ++++ src/org/ibex/util/FileNameEncoder.java | 9 +++------ src/org/ibex/util/Hash.java | 9 +++------ src/org/ibex/util/InputStreamToByteArray.java | 9 +++------ src/org/ibex/util/KnownLength.java | 9 +++------ src/org/ibex/util/LineReader.java | 4 ++++ src/org/ibex/util/Log.java | 9 +++------ src/org/ibex/util/PackBytesIntoString.java | 9 +++------ src/org/ibex/util/Queue.java | 9 +++------ src/org/ibex/util/Semaphore.java | 9 +++------ src/org/ibex/util/Simplex.java | 4 ++++ src/org/ibex/util/Vec.java | 9 +++------ src/org/ibex/util/XML.java | 9 +++------ 22 files changed, 72 insertions(+), 102 deletions(-) diff --git a/src/org/ibex/util/AccessibleCharArrayWriter.java b/src/org/ibex/util/AccessibleCharArrayWriter.java index 62e436a..c7d4e1c 100644 --- a/src/org/ibex/util/AccessibleCharArrayWriter.java +++ b/src/org/ibex/util/AccessibleCharArrayWriter.java @@ -1,3 +1,7 @@ +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. + package org.ibex.util; import java.io.*; diff --git a/src/org/ibex/util/BalancedTree.java b/src/org/ibex/util/BalancedTree.java index ee36a81..90d9498 100644 --- a/src/org/ibex/util/BalancedTree.java +++ b/src/org/ibex/util/BalancedTree.java @@ -1,9 +1,6 @@ -// Copyright (C) 2003 Adam Megacz all rights reserved. -// -// You may modify, copy, and redistribute this code under the terms of -// the GNU Library Public License version 2.1, with the exception of -// the portion of clause 6a after the semicolon (aka the "obnoxious -// relink clause") +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. package org.ibex.util; diff --git a/src/org/ibex/util/Base64.java b/src/org/ibex/util/Base64.java index 35fd3b9..b7f8900 100644 --- a/src/org/ibex/util/Base64.java +++ b/src/org/ibex/util/Base64.java @@ -1,3 +1,7 @@ +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. + package org.ibex.util; public class Base64 { diff --git a/src/org/ibex/util/CAB.java b/src/org/ibex/util/CAB.java index a8d7e0b..71921c9 100644 --- a/src/org/ibex/util/CAB.java +++ b/src/org/ibex/util/CAB.java @@ -1,9 +1,6 @@ -// Copyright (C) 2003 Adam Megacz all rights reserved. -// -// You may modify, copy, and redistribute this code under the terms of -// the GNU Library Public License version 2.1, with the exception of -// the portion of clause 6a after the semicolon (aka the "obnoxious -// relink clause") +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. package org.ibex.util; diff --git a/src/org/ibex/util/Cache.java b/src/org/ibex/util/Cache.java index af88c88..efb8707 100644 --- a/src/org/ibex/util/Cache.java +++ b/src/org/ibex/util/Cache.java @@ -1,9 +1,6 @@ -// Copyright (C) 2003 Adam Megacz all rights reserved. -// -// You may modify, copy, and redistribute this code under the terms of -// the GNU Library Public License version 2.1, with the exception of -// the portion of clause 6a after the semicolon (aka the "obnoxious -// relink clause") +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. /* diff --git a/src/org/ibex/util/CachedInputStream.java b/src/org/ibex/util/CachedInputStream.java index a712f84..d1affa1 100644 --- a/src/org/ibex/util/CachedInputStream.java +++ b/src/org/ibex/util/CachedInputStream.java @@ -1,9 +1,6 @@ -// Copyright (C) 2003 Adam Megacz all rights reserved. -// -// You may modify, copy, and redistribute this code under the terms of -// the GNU Library Public License version 2.1, with the exception of -// the portion of clause 6a after the semicolon (aka the "obnoxious -// relink clause") +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. package org.ibex.util; import java.io.*; diff --git a/src/org/ibex/util/Callback.java b/src/org/ibex/util/Callback.java index 471df9b..c56bb77 100644 --- a/src/org/ibex/util/Callback.java +++ b/src/org/ibex/util/Callback.java @@ -1,9 +1,6 @@ -// Copyright (C) 2003 Adam Megacz all rights reserved. -// -// You may modify, copy, and redistribute this code under the terms of -// the GNU Library Public License version 2.1, with the exception of -// the portion of clause 6a after the semicolon (aka the "obnoxious -// relink clause") +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. package org.ibex.util; diff --git a/src/org/ibex/util/CounterEnumeration.java b/src/org/ibex/util/CounterEnumeration.java index 5a01f3e..c83a1f4 100644 --- a/src/org/ibex/util/CounterEnumeration.java +++ b/src/org/ibex/util/CounterEnumeration.java @@ -1,9 +1,7 @@ -// Copyright (C) 2004 Adam Megacz all rights reserved. -// -// You may modify, copy, and redistribute this code under the terms of -// the GNU Library Public License version 2.1, with the exception of -// the portion of clause 6a after the semicolon (aka the "obnoxious -// relink clause") +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. + package org.ibex.util; import java.util.*; diff --git a/src/org/ibex/util/DirtyList.java b/src/org/ibex/util/DirtyList.java index 0a77a94..17294ea 100644 --- a/src/org/ibex/util/DirtyList.java +++ b/src/org/ibex/util/DirtyList.java @@ -1,9 +1,6 @@ -// Copyright (C) 2003 Adam Megacz all rights reserved. -// -// You may modify, copy, and redistribute this code under the terms of -// the GNU Library Public License version 2.1, with the exception of -// the portion of clause 6a after the semicolon (aka the "obnoxious -// relink clause") +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. package org.ibex.util; diff --git a/src/org/ibex/util/Encode.java b/src/org/ibex/util/Encode.java index 9334d46..0a2b1d9 100644 --- a/src/org/ibex/util/Encode.java +++ b/src/org/ibex/util/Encode.java @@ -1,3 +1,7 @@ +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. + package org.ibex.util; import java.io.*; import java.util.*; diff --git a/src/org/ibex/util/FileNameEncoder.java b/src/org/ibex/util/FileNameEncoder.java index e68bba2..1e903c0 100644 --- a/src/org/ibex/util/FileNameEncoder.java +++ b/src/org/ibex/util/FileNameEncoder.java @@ -1,9 +1,6 @@ -// Copyright (C) 2003 Adam Megacz all rights reserved. -// -// You may modify, copy, and redistribute this code under the terms of -// the GNU Library Public License version 2.1, with the exception of -// the portion of clause 6a after the semicolon (aka the "obnoxious -// relink clause") +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. package org.ibex.util; import java.util.*; diff --git a/src/org/ibex/util/Hash.java b/src/org/ibex/util/Hash.java index 0a31000..f0a0353 100644 --- a/src/org/ibex/util/Hash.java +++ b/src/org/ibex/util/Hash.java @@ -1,9 +1,6 @@ -// Copyright (C) 2003 Adam Megacz all rights reserved. -// -// You may modify, copy, and redistribute this code under the terms of -// the GNU Library Public License version 2.1, with the exception of -// the portion of clause 6a after the semicolon (aka the "obnoxious -// relink clause") +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. package org.ibex.util; diff --git a/src/org/ibex/util/InputStreamToByteArray.java b/src/org/ibex/util/InputStreamToByteArray.java index 7e19644..4486708 100644 --- a/src/org/ibex/util/InputStreamToByteArray.java +++ b/src/org/ibex/util/InputStreamToByteArray.java @@ -1,9 +1,6 @@ -// Copyright (C) 2003 Adam Megacz all rights reserved. -// -// You may modify, copy, and redistribute this code under the terms of -// the GNU Library Public License version 2.1, with the exception of -// the portion of clause 6a after the semicolon (aka the "obnoxious -// relink clause") +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. package org.ibex.util; import java.io.*; diff --git a/src/org/ibex/util/KnownLength.java b/src/org/ibex/util/KnownLength.java index 06118bb..e754fd2 100644 --- a/src/org/ibex/util/KnownLength.java +++ b/src/org/ibex/util/KnownLength.java @@ -1,9 +1,6 @@ -// Copyright (C) 2003 Adam Megacz all rights reserved. -// -// You may modify, copy, and redistribute this code under the terms of -// the GNU Library Public License version 2.1, with the exception of -// the portion of clause 6a after the semicolon (aka the "obnoxious -// relink clause") +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. package org.ibex.util; import java.io.*; diff --git a/src/org/ibex/util/LineReader.java b/src/org/ibex/util/LineReader.java index 429c218..ac784b8 100644 --- a/src/org/ibex/util/LineReader.java +++ b/src/org/ibex/util/LineReader.java @@ -1,3 +1,7 @@ +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. + package org.ibex.util; import java.io.*; diff --git a/src/org/ibex/util/Log.java b/src/org/ibex/util/Log.java index 2f6e3e4..67163d9 100644 --- a/src/org/ibex/util/Log.java +++ b/src/org/ibex/util/Log.java @@ -1,9 +1,6 @@ -// Copyright (C) 2003 Adam Megacz all rights reserved. -// -// You may modify, copy, and redistribute this code under the terms of -// the GNU Library Public License version 2.1, with the exception of -// the portion of clause 6a after the semicolon (aka the "obnoxious -// relink clause") +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. package org.ibex.util; import java.io.*; diff --git a/src/org/ibex/util/PackBytesIntoString.java b/src/org/ibex/util/PackBytesIntoString.java index 1e07e86..68dd981 100644 --- a/src/org/ibex/util/PackBytesIntoString.java +++ b/src/org/ibex/util/PackBytesIntoString.java @@ -1,9 +1,6 @@ -// Copyright (C) 2003 Adam Megacz all rights reserved. -// -// You may modify, copy, and redistribute this code under the terms of -// the GNU Library Public License version 2.1, with the exception of -// the portion of clause 6a after the semicolon (aka the "obnoxious -// relink clause") +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. package org.ibex.util; diff --git a/src/org/ibex/util/Queue.java b/src/org/ibex/util/Queue.java index 91b9b29..e8c50ed 100644 --- a/src/org/ibex/util/Queue.java +++ b/src/org/ibex/util/Queue.java @@ -1,9 +1,6 @@ -// Copyright (C) 2003 Adam Megacz all rights reserved. -// -// You may modify, copy, and redistribute this code under the terms of -// the GNU Library Public License version 2.1, with the exception of -// the portion of clause 6a after the semicolon (aka the "obnoxious -// relink clause") +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. package org.ibex.util; diff --git a/src/org/ibex/util/Semaphore.java b/src/org/ibex/util/Semaphore.java index b37993c..0537ce8 100644 --- a/src/org/ibex/util/Semaphore.java +++ b/src/org/ibex/util/Semaphore.java @@ -1,9 +1,6 @@ -// Copyright (C) 2003 Adam Megacz all rights reserved. -// -// You may modify, copy, and redistribute this code under the terms of -// the GNU Library Public License version 2.1, with the exception of -// the portion of clause 6a after the semicolon (aka the "obnoxious -// relink clause") +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. package org.ibex.util; diff --git a/src/org/ibex/util/Simplex.java b/src/org/ibex/util/Simplex.java index 2ae314a..c578912 100644 --- a/src/org/ibex/util/Simplex.java +++ b/src/org/ibex/util/Simplex.java @@ -1,3 +1,7 @@ +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. + package org.ibex.util; import java.io.* ; import java.util.* ; diff --git a/src/org/ibex/util/Vec.java b/src/org/ibex/util/Vec.java index f6a2453..2c55c6e 100644 --- a/src/org/ibex/util/Vec.java +++ b/src/org/ibex/util/Vec.java @@ -1,9 +1,6 @@ -// Copyright (C) 2003 Adam Megacz all rights reserved. -// -// You may modify, copy, and redistribute this code under the terms of -// the GNU Library Public License version 2.1, with the exception of -// the portion of clause 6a after the semicolon (aka the "obnoxious -// relink clause") +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. package org.ibex.util; import java.io.*; diff --git a/src/org/ibex/util/XML.java b/src/org/ibex/util/XML.java index d0775c7..29e798d 100644 --- a/src/org/ibex/util/XML.java +++ b/src/org/ibex/util/XML.java @@ -1,9 +1,6 @@ -// Copyright (C) 2003 Adam Megacz all rights reserved. -// -// You may modify, copy, and redistribute this code under the terms of -// the GNU Library Public License version 2.1, with the exception of -// the portion of clause 6a after the semicolon (aka the "obnoxious -// relink clause") +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. package org.ibex.util; -- 1.7.10.4