You are viewing a plain text version of this content. The canonical link for it is here.
Posted to triplesoup-commits@incubator.apache.org by le...@apache.org on 2007/04/13 17:20:01 UTC

svn commit: r528559 [5/6] - in /incubator/triplesoup/donations/TRIPLES-3-RDFStore: ./ dbms/ dbms/client/ dbms/client/t/ dbms/dbmsproxy/ dbms/deamon/ dbms/doc/ dbms/include/ dbms/libdbms/ dbms/utils/ doc/ include/ lib/ lib/DBD/ lib/RDFStore/ lib/RDFStor...

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Statement.pm
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Statement.pm?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Statement.pm (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Statement.pm Fri Apr 13 10:19:54 2007
@@ -1,34 +1,38 @@
-# *
-# *     Copyright (c) 2000-2006 Alberto Reggiori <ar...@webweaving.org>
-# *                        Dirk-Willem van Gulik <di...@webweaving.org>
-# *
-# * NOTICE
-# *
-# * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
-# * file you should have received together with this source code. If you did not get a
-# * a copy of such a license agreement you can pick up one at:
-# *
-# *     http://rdfstore.sourceforge.net/LICENSE
-# *
-# * Changes:
-# *     version 0.1 - 2000/11/03 at 04:30 CEST
-# *     version 0.2
-# *             - added getNamespace() getLocalName() methods accordingly to rdf-api-2000-10-30
-# *     version 0.3
-# *             - fixed bugs when checking references/pointers (defined and ref() )
-# *     version 0.4
-# *		- changed way to return undef in subroutines
-# *		- fixed warning in getDigest()
-# *             - updated new() equals() and added hashCode() accordingly to rdf-api-2001-01-19
-# *		- updated accordingly to rdf-api-2001-01-19
-# *		- Devon Smith <de...@taller.pscl.cwru.edu> changed getDigest to generate digests and hashes 
-# *		  that match Stanford java ones exactly
-# *     version 0.41
-# *		- updated toString() and getDigest()
-# *     version 0.42
-# *		- updated accordingly to new RDFStore API
-# *             - added statements reification and context support
-# *
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+
+# Changes:
+#     version 0.1 - 2000/11/03 at 04:30 CEST
+#     version 0.2
+#             - added getNamespace() getLocalName() methods accordingly to rdf-api-2000-10-30
+#     version 0.3
+#             - fixed bugs when checking references/pointers (defined and ref() )
+#     version 0.4
+#		- changed way to return undef in subroutines
+#		- fixed warning in getDigest()
+#             - updated new() equals() and added hashCode() accordingly to rdf-api-2001-01-19
+#		- updated accordingly to rdf-api-2001-01-19
+#		- Devon Smith <de...@taller.pscl.cwru.edu> changed getDigest to generate digests and hashes 
+#		  that match Stanford java ones exactly
+#     version 0.41
+#		- updated toString() and getDigest()
+#     version 0.42
+#		- updated accordingly to new RDFStore API
+#             - added statements reification and context support
+#
 
 package RDFStore::Statement;
 {

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Util/Digest.pm
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Util/Digest.pm?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Util/Digest.pm (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Util/Digest.pm Fri Apr 13 10:19:54 2007
@@ -1,18 +1,22 @@
-# *
-# *     Copyright (c) 2000-2006 Alberto Reggiori <ar...@webweaving.org>
-# *                        Dirk-Willem van Gulik <di...@webweaving.org>
-# *
-# * NOTICE
-# *
-# * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
-# * file you should have received together with this source code. If you did not get a
-# * a copy of such a license agreement you can pick up one at:
-# *
-# *     http://rdfstore.sourceforge.net/LICENSE
-# *
-# * Changes:
-# *     version 0.1 - Thu Feb  6 18:45:53 CET 2003
-# *
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+
+# Changes:
+#     version 0.1 - Thu Feb  6 18:45:53 CET 2003
+#
 
 package RDFStore::Util::Digest;
 {

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Util/UTF8.pm
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Util/UTF8.pm?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Util/UTF8.pm (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Util/UTF8.pm Fri Apr 13 10:19:54 2007
@@ -1,18 +1,22 @@
-# *
-# *     Copyright (c) 2000-2006 Alberto Reggiori <ar...@webweaving.org>
-# *                        Dirk-Willem van Gulik <di...@webweaving.org>
-# *
-# * NOTICE
-# *
-# * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
-# * file you should have received together with this source code. If you did not get a
-# * a copy of such a license agreement you can pick up one at:
-# *
-# *     http://rdfstore.sourceforge.net/LICENSE
-# *
-# * Changes:
-# *     version 0.1 - Fri Apr 11 18:24:29 CEST 2003
-# *
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+
+# Changes:
+#     version 0.1 - Fri Apr 11 18:24:29 CEST 2003
+#
 
 package RDFStore::Util::UTF8;
 {

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/VirtualModel.pm
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/VirtualModel.pm?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/VirtualModel.pm (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/VirtualModel.pm Fri Apr 13 10:19:54 2007
@@ -1,15 +1,17 @@
-# *
-# *     Copyright (c) 2000-2006 Alberto Reggiori <ar...@webweaving.org>
-# *                        Dirk-Willem van Gulik <di...@webweaving.org>
-# *
-# * NOTICE
-# *
-# * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
-# * file you should have received together with this source code. If you did not get a
-# * a copy of such a license agreement you can pick up one at:
-# *
-# *     http://rdfstore.sourceforge.net/LICENSE
-# *
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
 
 package RDFStore::VirtualModel;
 {

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/DAML.pm
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/DAML.pm?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/DAML.pm (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/DAML.pm Fri Apr 13 10:19:54 2007
@@ -1,15 +1,18 @@
-# *
-# *     Copyright (c) 2000-2006 Alberto Reggiori <ar...@webweaving.org>
-# *                        Dirk-Willem van Gulik <di...@webweaving.org>
-# *
-# * NOTICE
-# *
-# * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
-# * file you should have received together with this source code. If you did not get a
-# * a copy of such a license agreement you can pick up one at:
-# *
-# *     http://rdfstore.sourceforge.net/LICENSE
-# *
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 
 package RDFStore::Vocabulary::DAML;
 {

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/DC.pm
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/DC.pm?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/DC.pm (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/DC.pm Fri Apr 13 10:19:54 2007
@@ -1,15 +1,18 @@
-# *
-# *     Copyright (c) 2000-2006 Alberto Reggiori <ar...@webweaving.org>
-# *                        Dirk-Willem van Gulik <di...@webweaving.org>
-# *
-# * NOTICE
-# *
-# * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
-# * file you should have received together with this source code. If you did not get a
-# * a copy of such a license agreement you can pick up one at:
-# *
-# *     http://rdfstore.sourceforge.net/LICENSE
-# *
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 
 package RDFStore::Vocabulary::DC;
 {

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/DCQ.pm
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/DCQ.pm?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/DCQ.pm (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/DCQ.pm Fri Apr 13 10:19:54 2007
@@ -1,15 +1,18 @@
-# *
-# *     Copyright (c) 2000-2006 Alberto Reggiori <ar...@webweaving.org>
-# *                        Dirk-Willem van Gulik <di...@webweaving.org>
-# *
-# * NOTICE
-# *
-# * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
-# * file you should have received together with this source code. If you did not get a
-# * a copy of such a license agreement you can pick up one at:
-# *
-# *     http://rdfstore.sourceforge.net/LICENSE
-# *
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 
 package RDFStore::Vocabulary::DCQ;
 {

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/DCT.pm
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/DCT.pm?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/DCT.pm (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/DCT.pm Fri Apr 13 10:19:54 2007
@@ -1,15 +1,18 @@
-# *
-# *     Copyright (c) 2000-2006 Alberto Reggiori <ar...@webweaving.org>
-# *                        Dirk-Willem van Gulik <di...@webweaving.org>
-# *
-# * NOTICE
-# *
-# * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
-# * file you should have received together with this source code. If you did not get a
-# * a copy of such a license agreement you can pick up one at:
-# *
-# *     http://rdfstore.sourceforge.net/LICENSE
-# *
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 
 package RDFStore::Vocabulary::DCT;
 {

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/FOAF.pm
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/FOAF.pm?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/FOAF.pm (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/FOAF.pm Fri Apr 13 10:19:54 2007
@@ -1,15 +1,18 @@
-# *
-# *     Copyright (c) 2000-2006 Alberto Reggiori <ar...@webweaving.org>
-# *                        Dirk-Willem van Gulik <di...@webweaving.org>
-# *
-# * NOTICE
-# *
-# * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
-# * file you should have received together with this source code. If you did not get a
-# * a copy of such a license agreement you can pick up one at:
-# *
-# *     http://rdfstore.sourceforge.net/LICENSE
-# *
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 
 package RDFStore::Vocabulary::FOAF;
 {

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/Generator.pm
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/Generator.pm?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/Generator.pm (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/Generator.pm Fri Apr 13 10:19:54 2007
@@ -1,33 +1,37 @@
-# *
-# *     Copyright (c) 2000-2006 Alberto Reggiori <ar...@webweaving.org>
-# *                        Dirk-Willem van Gulik <di...@webweaving.org>
-# *
-# * NOTICE
-# *
-# * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
-# * file you should have received together with this source code. If you did not get a
-# * a copy of such a license agreement you can pick up one at:
-# *
-# *     http://rdfstore.sourceforge.net/LICENSE
-# *
-# * Changes:
-# *     version 0.1 - 2000/11/03 at 04:30 CEST
-# *     version 0.2
-# *             - added more magic keywords to 'reservedWords' list
-# *             - Modified createResource() accordingly to rdf-api-2000-10-30
-# *     version 0.3
-# *		- fixed bug in toPerlName() and dumpVocabulary() avoid grep regex checking
-# *		- fixed bugs when checking references/pointers (defined and ref() )
-# *     version 0.4
-# *		- fixed bug in dumpVocabulary() when matching input namespace (escape plus signs)
-# *		  and output full qualified package variable names of voc properties
-# *		- fixed bug in createVocabulary() when check package name
-# *		- fixed miss-spelling bug in toPerlName()
-# *             - fixed a few warnings
-# *		- updated accordingly to new RDFStore::Model
-# *	version 0.41
-# *		- updated to use RDFStore::Model new API
-# *
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+
+# Changes:
+#     version 0.1 - 2000/11/03 at 04:30 CEST
+#     version 0.2
+#             - added more magic keywords to 'reservedWords' list
+#             - Modified createResource() accordingly to rdf-api-2000-10-30
+#     version 0.3
+#		- fixed bug in toPerlName() and dumpVocabulary() avoid grep regex checking
+#		- fixed bugs when checking references/pointers (defined and ref() )
+#     version 0.4
+#		- fixed bug in dumpVocabulary() when matching input namespace (escape plus signs)
+#		  and output full qualified package variable names of voc properties
+#		- fixed bug in createVocabulary() when check package name
+#		- fixed miss-spelling bug in toPerlName()
+#             - fixed a few warnings
+#		- updated accordingly to new RDFStore::Model
+#	version 0.41
+#		- updated to use RDFStore::Model new API
+#
 
 package RDFStore::Vocabulary::Generator;
 {
@@ -47,18 +51,18 @@
 
     	my $self = {};
 
-	$self->{LICENSE} = qq|# *
-# *     Copyright (c) 2000-2004 Alberto Reggiori <ar...@webweaving.org>
-# *                        Dirk-Willem van Gulik <di...@webweaving.org>
-# *
-# * NOTICE
-# *
-# * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
-# * file you should have received together with this source code. If you did not get a
-# * a copy of such a license agreement you can pick up one at:
-# *
-# *     http://rdfstore.sourceforge.net/LICENSE
-# *
+	$self->{LICENSE} = qq|#
+#     Copyright (c) 2000-2004 Alberto Reggiori <ar...@webweaving.org>
+#                        Dirk-Willem van Gulik <di...@webweaving.org>
+#
+# NOTICE
+#
+# This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
+# file you should have received together with this source code. If you did not get a
+# a copy of such a license agreement you can pick up one at:
+#
+#     http://rdfstore.sourceforge.net/LICENSE
+#
 |;
 	$self->{DEFAULT_PACKAGE_CLASS} = "UnspecifiedClass";
 	$self->{NS_IMPORT} = "use RDFStore::Model;\nuse Carp;\n";

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/OWL.pm
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/OWL.pm?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/OWL.pm (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/OWL.pm Fri Apr 13 10:19:54 2007
@@ -1,15 +1,18 @@
-# *
-# *     Copyright (c) 2000-2006 Alberto Reggiori <ar...@webweaving.org>
-# *                        Dirk-Willem van Gulik <di...@webweaving.org>
-# *
-# * NOTICE
-# *
-# * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
-# * file you should have received together with this source code. If you did not get a
-# * a copy of such a license agreement you can pick up one at:
-# *
-# *     http://rdfstore.sourceforge.net/LICENSE
-# *
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 
 package RDFStore::Vocabulary::OWL;
 {

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/RDF.pm
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/RDF.pm?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/RDF.pm (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/RDF.pm Fri Apr 13 10:19:54 2007
@@ -1,15 +1,18 @@
-# *
-# *     Copyright (c) 2000-2006 Alberto Reggiori <ar...@webweaving.org>
-# *                        Dirk-Willem van Gulik <di...@webweaving.org>
-# *
-# * NOTICE
-# *
-# * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
-# * file you should have received together with this source code. If you did not get a
-# * a copy of such a license agreement you can pick up one at:
-# *
-# *     http://rdfstore.sourceforge.net/LICENSE
-# *
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 
 package RDFStore::Vocabulary::RDF;
 {

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/RDFS.pm
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/RDFS.pm?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/RDFS.pm (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/RDFS.pm Fri Apr 13 10:19:54 2007
@@ -1,15 +1,18 @@
-# *
-# *     Copyright (c) 2000-2006 Alberto Reggiori <ar...@webweaving.org>
-# *                        Dirk-Willem van Gulik <di...@webweaving.org>
-# *
-# * NOTICE
-# *
-# * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
-# * file you should have received together with this source code. If you did not get a
-# * a copy of such a license agreement you can pick up one at:
-# *
-# *     http://rdfstore.sourceforge.net/LICENSE
-# *
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 
 package RDFStore::Vocabulary::RDFS;
 {

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/RDFStoreContext.pm
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/RDFStoreContext.pm?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/RDFStoreContext.pm (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/RDFStoreContext.pm Fri Apr 13 10:19:54 2007
@@ -1,15 +1,18 @@
-# *
-# *     Copyright (c) 2000-2006 Alberto Reggiori <ar...@webweaving.org>
-# *                        Dirk-Willem van Gulik <di...@webweaving.org>
-# *
-# * NOTICE
-# *
-# * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
-# * file you should have received together with this source code. If you did not get a
-# * a copy of such a license agreement you can pick up one at:
-# *
-# *     http://rdfstore.sourceforge.net/LICENSE
-# *
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 
 package RDFStore::Vocabulary::RDFStoreContext;
 {

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/RSS.pm
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/RSS.pm?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/RSS.pm (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDFStore/Vocabulary/RSS.pm Fri Apr 13 10:19:54 2007
@@ -1,15 +1,18 @@
-# *
-# *     Copyright (c) 2000-2006 Alberto Reggiori <ar...@webweaving.org>
-# *                        Dirk-Willem van Gulik <di...@webweaving.org>
-# *
-# * NOTICE
-# *
-# * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
-# * file you should have received together with this source code. If you did not get a
-# * a copy of such a license agreement you can pick up one at:
-# *
-# *     http://rdfstore.sourceforge.net/LICENSE
-# *
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 
 package RDFStore::Vocabulary::RSS;
 {

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDQL/Parser.pm
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDQL/Parser.pm?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDQL/Parser.pm (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/RDQL/Parser.pm Fri Apr 13 10:19:54 2007
@@ -1,42 +1,46 @@
-# *
-# *     Copyright (c) 2000-2006 Alberto Reggiori <ar...@webweaving.org>
-# *                        Dirk-Willem van Gulik <di...@webweaving.org>
-# *
-# * NOTICE
-# *
-# * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
-# * file you should have received together with this source code. If you did not get a
-# * a copy of such a license agreement you can pick up one at:
-# *
-# *     http://rdfstore.sourceforge.net/LICENSE
-# *
-# * Changes:
-# *     version 0.1
-# *		- first hacked version: pure perl RDQL/SquishQL top-down LL(1) parser with some extesnions:
-# *                  * LIKE operator in AND clause
-# *                  * free-text triple matching like (?x, ?y, %"whatever"%)
-# *     version 0.2
-# *    		- added SELECT DISTINCT 
-# *    		- added SPARQL PREFIX support and default/built-in prefixes
-# *    		- added # and // style comments
-# *    		- added SPARQL QNAME like support
-# *		- added ?prefix:var QName support to vars
-# *		- added SPARQL CONSTRUCT support
-# *		- added SPARQL $var support
-# *		- added getQueryType() method
-# *		- added SPARQL DESCRIBE support
-# *		- fixed bug in Literal() when matching floating point numbers
-# *		- updated constraints and removed AND keyword to be SPARQL compatible
-# *		- added not standard RDQL/SPARQL DELETE support
-# *		- added default SPARQL PREFIX op: <http://www.w3.org/2001/sw/DataAccess/operations> and PREFIX fn: <http://www.w3.org/2004/07/xpath-functions>
-# *		- updated and simplified constraints productions to reflect latest SPARQL spec
-# *		- constraints are now stacked into a RPN
-# *		- added full SPARQL graph-patterns and grouping
-# *		- added SPARQL FROM NAMED support
-# *		- added SPARQL LIMIT support
-# *		- added SPARQL OFFSET support
-# *		- added SPARQL ORDER BY support
-# *
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+
+# Changes:
+#     version 0.1
+#		- first hacked version: pure perl RDQL/SquishQL top-down LL(1) parser with some extesnions:
+#                  * LIKE operator in AND clause
+#                  * free-text triple matching like (?x, ?y, %"whatever"%)
+#     version 0.2
+#    		- added SELECT DISTINCT 
+#    		- added SPARQL PREFIX support and default/built-in prefixes
+#    		- added # and // style comments
+#    		- added SPARQL QNAME like support
+#		- added ?prefix:var QName support to vars
+#		- added SPARQL CONSTRUCT support
+#		- added SPARQL $var support
+#		- added getQueryType() method
+#		- added SPARQL DESCRIBE support
+#		- fixed bug in Literal() when matching floating point numbers
+#		- updated constraints and removed AND keyword to be SPARQL compatible
+#		- added not standard RDQL/SPARQL DELETE support
+#		- added default SPARQL PREFIX op: <http://www.w3.org/2001/sw/DataAccess/operations> and PREFIX fn: <http://www.w3.org/2004/07/xpath-functions>
+#		- updated and simplified constraints productions to reflect latest SPARQL spec
+#		- constraints are now stacked into a RPN
+#		- added full SPARQL graph-patterns and grouping
+#		- added SPARQL FROM NAMED support
+#		- added SPARQL LIMIT support
+#		- added SPARQL OFFSET support
+#		- added SPARQL ORDER BY support
+#
 
 package RDQL::Parser;
 {

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/Util/BLOB.pm
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/Util/BLOB.pm?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/Util/BLOB.pm (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/lib/Util/BLOB.pm Fri Apr 13 10:19:54 2007
@@ -1,18 +1,22 @@
-# *
-# *     Copyright (c) 2000-2006 Alberto Reggiori <ar...@webweaving.org>
-# *                        Dirk-Willem van Gulik <di...@webweaving.org>
-# *
-# * NOTICE
-# *
-# * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
-# * file you should have received together with this source code. If you did not get a
-# * a copy of such a license agreement you can pick up one at:
-# *
-# *     http://rdfstore.sourceforge.net/LICENSE
-# *
-# * Changes:
-# *     version 0.1 - 2002/04/26 at 15:30 CEST
-# *
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+
+# Changes:
+#     version 0.1 - 2002/04/26 at 15:30 CEST
+#
 
 package Util::BLOB;
 {

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/my_compress.c
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/my_compress.c?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/my_compress.c (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/my_compress.c Fri Apr 13 10:19:54 2007
@@ -1,18 +1,19 @@
-/*
-  *
-  *     Copyright (c) 2000-2006 Alberto Reggiori <ar...@webweaving.org>
-  *                        Dirk-Willem van Gulik <di...@webweaving.org>
-  *
-  * NOTICE
-  *
-  * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
-  * file you should have received together with this source code. If you did not get a
-  * a copy of such a license agreement you can pick up one at:
-  *
-  *     http://rdfstore.sourceforge.net/LICENSE
-  *
-  * $Id: my_compress.c,v 1.5 2006/06/19 10:10:21 areggiori Exp $
-  */
+/* Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 
 #include <sys/types.h>
 #include <stdio.h>

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_ap_sha1.c
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_ap_sha1.c?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_ap_sha1.c (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_ap_sha1.c Fri Apr 13 10:19:54 2007
@@ -1,62 +1,19 @@
-/* ====================================================================
- * The Apache Software License, Version 1.1
- *
- * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
- * reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in
- *    the documentation and/or other materials provided with the
- *    distribution.
- *
- * 3. The end-user documentation included with the redistribution,
- *    if any, must include the following acknowledgment:
- *       "This product includes software developed by the
- *        Apache Software Foundation (http://www.apache.org/)."
- *    Alternately, this acknowledgment may appear in the software itself,
- *    if and wherever such third-party acknowledgments normally appear.
- *
- * 4. The names "Apache" and "Apache Software Foundation" must
- *    not be used to endorse or promote products derived from this
- *    software without prior written permission. For written
- *    permission, please contact apache@apache.org.
- *
- * 5. Products derived from this software may not be called "Apache",
- *    nor may "Apache" appear in their name, without prior written
- *    permission of the Apache Software Foundation.
- *
- * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
- * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
- * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
- * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
- * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
- * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- * ====================================================================
- *
- * This software consists of voluntary contributions made by many
- * individuals on behalf of the Apache Software Foundation.  For more
- * information on the Apache Software Foundation, please see
- * <http://www.apache.org/>.
- *
- * Portions of this software are based upon public domain software
- * originally written at the National Center for Supercomputing Applications,
- * University of Illinois, Urbana-Champaign.
- *
- * $Id: rdfstore_ap_sha1.c,v 1.1 2003/05/05 17:57:39 areggiori Exp $
+/* Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
+
 
 /*
  *

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_bits.c
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_bits.c?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_bits.c (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_bits.c Fri Apr 13 10:19:54 2007
@@ -1,70 +1,19 @@
-/*
-##############################################################################
-# 	Copyright (c) 2000-2006 All rights reserved
-# 	Alberto Reggiori <ar...@webweaving.org>
-#	Dirk-Willem van Gulik <di...@webweaving.org>
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer. 
-#
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in
-#    the documentation and/or other materials provided with the
-#    distribution.
-#
-# 3. The end-user documentation included with the redistribution,
-#    if any, must include the following acknowledgment:
-#       "This product includes software developed by 
-#        Alberto Reggiori <ar...@webweaving.org> and
-#        Dirk-Willem van Gulik <di...@webweaving.org>."
-#    Alternately, this acknowledgment may appear in the software itself,
-#    if and wherever such third-party acknowledgments normally appear.
-#
-# 4. All advertising materials mentioning features or use of this software
-#    must display the following acknowledgement:
-#    This product includes software developed by the University of
-#    California, Berkeley and its contributors. 
-#
-# 5. Neither the name of the University nor the names of its contributors
-#    may be used to endorse or promote products derived from this software
-#    without specific prior written permission.
-#
-# 6. Products derived from this software may not be called "RDFStore"
-#    nor may "RDFStore" appear in their names without prior written
-#    permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
-# ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
-# FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
-# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
-# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
-# OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# ====================================================================
-#
-# This software consists of work developed by Alberto Reggiori and 
-# Dirk-Willem van Gulik. The RDF specific part is based based on public 
-# domain software written at the Stanford University Database Group by 
-# Sergey Melnik. For more information on the RDF API Draft work, 
-# please see <http://www-db.stanford.edu/~melnik/rdf/api.html>
-# The DBMS TCP/IP server part is based on software originally written
-# by Dirk-Willem van Gulik for Web Weaving Internet Engineering m/v Enschede,
-# The Netherlands.
-#
-##############################################################################
+/* Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 
- $Id: rdfstore_bits.c,v 1.16 2006/06/19 10:10:21 areggiori Exp $
-*/
 
 #include <sys/types.h>
 #include <sys/time.h>

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_compress.c
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_compress.c?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_compress.c (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_compress.c Fri Apr 13 10:19:54 2007
@@ -1,18 +1,19 @@
-/*
-  *
-  *     Copyright (c) 2000-2006 Alberto Reggiori <ar...@webweaving.org>
-  *                        Dirk-Willem van Gulik <di...@webweaving.org>
-  *
-  * NOTICE
-  *
-  * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
-  * file you should have received together with this source code. If you did not get a
-  * a copy of such a license agreement you can pick up one at:
-  *
-  *     http://rdfstore.sourceforge.net/LICENSE
-  *
-  * $Id: rdfstore_compress.c,v 1.12 2006/06/19 10:10:21 areggiori Exp $
-  */
+/* Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 
 #include <sys/types.h>
 #include <stdio.h>

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_digest.c
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_digest.c?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_digest.c (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_digest.c Fri Apr 13 10:19:54 2007
@@ -1,68 +1,19 @@
-/*
- * 	Copyright (c) 2000-2006 All rights reserved
- * 	Alberto Reggiori <ar...@webweaving.org>
- *	Dirk-Willem van Gulik <di...@webweaving.org>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in
- *    the documentation and/or other materials provided with the
- *    distribution.
- *
- * 3. The end-user documentation included with the redistribution,
- *    if any, must include the following acknowledgment:
- *       "This product includes software developed by
- *        Alberto Reggiori <ar...@webweaving.org> and
- *        Dirk-Willem van Gulik <di...@webweaving.org>."
- *    Alternately, this acknowledgment may appear in the software itself,
- *    if and wherever such third-party acknowledgments normally appear.
- *
- * 4. All advertising materials mentioning features or use of this software
- *    must display the following acknowledgement:
- *    This product includes software developed by the University of
- *    California, Berkeley and its contributors.
- *
- * 5. Neither the name of the University nor the names of its contributors
- *    may be used to endorse or promote products derived from this software
- *    without specific prior written permission.
- *
- * 6. Products derived from this software may not be called "RDFStore"
- *    nor may "RDFStore" appear in their names without prior written
- *    permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
- * ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
- * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
- * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
- * OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * ====================================================================
- *
- * This software consists of work developed by Alberto Reggiori and
- * Dirk-Willem van Gulik. The RDF specific part is based based on public
- * domain software written at the Stanford University Database Group by
- * Sergey Melnik. For more information on the RDF API Draft work,
- * please see <http://www-db.stanford.edu/~melnik/rdf/api.html>
- * The DBMS TCP/IP server part is based on software originally written
- * by Dirk-Willem van Gulik for Web Weaving Internet Engineering m/v Enschede,
- * The Netherlands.
- *
- * $Id: rdfstore_digest.c,v 1.12 2006/06/19 10:10:21 areggiori Exp $
- *
+/* Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
+
 
 #include <stdio.h>
 

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_flat_store.c
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_flat_store.c?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_flat_store.c (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_flat_store.c Fri Apr 13 10:19:54 2007
@@ -1,70 +1,19 @@
-/*
-##############################################################################
-# 	Copyright (c) 2000-2006 All rights reserved
-# 	Alberto Reggiori <ar...@webweaving.org>
-#	Dirk-Willem van Gulik <di...@webweaving.org>
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-#
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in
-#    the documentation and/or other materials provided with the
-#    distribution.
-#
-# 3. The end-user documentation included with the redistribution,
-#    if any, must include the following acknowledgment:
-#       "This product includes software developed by
-#        Alberto Reggiori <ar...@webweaving.org> and
-#        Dirk-Willem van Gulik <di...@webweaving.org>."
-#    Alternately, this acknowledgment may appear in the software itself,
-#    if and wherever such third-party acknowledgments normally appear.
-#
-# 4. All advertising materials mentioning features or use of this software
-#    must display the following acknowledgement:
-#    This product includes software developed by the University of
-#    California, Berkeley and its contributors.
-#
-# 5. Neither the name of the University nor the names of its contributors
-#    may be used to endorse or promote products derived from this software
-#    without specific prior written permission.
-#
-# 6. Products derived from this software may not be called "RDFStore"
-#    nor may "RDFStore" appear in their names without prior written
-#    permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
-# ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
-# FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
-# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
-# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
-# OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# ====================================================================
-#
-# This software consists of work developed by Alberto Reggiori and
-# Dirk-Willem van Gulik. The RDF specific part is based based on public
-# domain software written at the Stanford University Database Group by
-# Sergey Melnik. For more information on the RDF API Draft work,
-# please see <http://www-db.stanford.edu/~melnik/rdf/api.html>
-# The DBMS TCP/IP server part is based on software originally written
-# by Dirk-Willem van Gulik for Web Weaving Internet Engineering m/v Enschede,
-# The Netherlands.
-#
-##############################################################################
-#
-# $Id: rdfstore_flat_store.c,v 1.25 2006/06/19 10:10:21 areggiori Exp $
-*/
+/* Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 #include "dbms.h"
 #include "dbms_compat.h"
 #include "dbms_comms.h"

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_iterator.c
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_iterator.c?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_iterator.c (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_iterator.c Fri Apr 13 10:19:54 2007
@@ -1,71 +1,19 @@
-/*
-##############################################################################
-# 	Copyright (c) 2000-2006 All rights reserved
-# 	Alberto Reggiori <ar...@webweaving.org>
-#	Dirk-Willem van Gulik <di...@webweaving.org>
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer. 
-#
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in
-#    the documentation and/or other materials provided with the
-#    distribution.
-#
-# 3. The end-user documentation included with the redistribution,
-#    if any, must include the following acknowledgment:
-#       "This product includes software developed by 
-#        Alberto Reggiori <ar...@webweaving.org> and
-#        Dirk-Willem van Gulik <di...@webweaving.org>."
-#    Alternately, this acknowledgment may appear in the software itself,
-#    if and wherever such third-party acknowledgments normally appear.
-#
-# 4. All advertising materials mentioning features or use of this software
-#    must display the following acknowledgement:
-#    This product includes software developed by the University of
-#    California, Berkeley and its contributors. 
-#
-# 5. Neither the name of the University nor the names of its contributors
-#    may be used to endorse or promote products derived from this software
-#    without specific prior written permission.
-#
-# 6. Products derived from this software may not be called "RDFStore"
-#    nor may "RDFStore" appear in their names without prior written
-#    permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
-# ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
-# FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
-# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
-# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
-# OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# ====================================================================
-#
-# This software consists of work developed by Alberto Reggiori and 
-# Dirk-Willem van Gulik. The RDF specific part is based based on public 
-# domain software written at the Stanford University Database Group by 
-# Sergey Melnik. For more information on the RDF API Draft work, 
-# please see <http://www-db.stanford.edu/~melnik/rdf/api.html>
-# The DBMS TCP/IP server part is based on software originally written
-# by Dirk-Willem van Gulik for Web Weaving Internet Engineering m/v Enschede,
-# The Netherlands.
-#
-##############################################################################
-#
-# $Id: rdfstore_iterator.c,v 1.16 2006/06/19 10:10:21 areggiori Exp $
-#
-*/
+/* Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 
 #if !defined(WIN32)
 #include <sys/param.h>

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_kernel.c
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_kernel.c?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_kernel.c (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_kernel.c Fri Apr 13 10:19:54 2007
@@ -1,62 +1,19 @@
-/*
- * Copyright (c) 2000-2006 All rights reserved,
- *       Alberto Reggiori <ar...@webweaving.org>,
- *       Dirk-Willem van Gulik <di...@webweaving.org>.
- * 
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- * 
- * 1. Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * 
- * 2. Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- * 
- * 3. The end-user documentation included with the redistribution, if any, must
- * include the following acknowledgment: "This product includes software
- * developed by Alberto Reggiori <ar...@webweaving.org> and Dirk-Willem
- * van Gulik <di...@webweaving.org>." Alternately, this acknowledgment may
- * appear in the software itself, if and wherever such third-party
- * acknowledgments normally appear.
- * 
- * 4. All advertising materials mentioning features or use of this software must
- * display the following acknowledgement: This product includes software
- * developed by the University of California, Berkeley and its contributors.
- * 
- * 5. Neither the name of the University nor the names of its contributors may
- * be used to endorse or promote products derived from this software without
- * specific prior written permission.
- * 
- * 6. Products derived from this software may not be called "RDFStore" nor may
- * "RDFStore" appear in their names without prior written permission.
- * 
- * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
- * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- * 
- * ====================================================================
- * 
- * This software consists of work developed by Alberto Reggiori and Dirk-Willem
- * van Gulik. The RDF specific part is based based on public domain software
- * written at the Stanford University Database Group by Sergey Melnik. For
- * more information on the RDF API Draft work, please see
- * <http://www-db.stanford.edu/~melnik/rdf/api.html> The DBMS TCP/IP server
- * part is based on software originally written by Dirk-Willem van Gulik for
- * Web Weaving Internet Engineering m/v Enschede, The Netherlands.
- * 
- * $Id: rdfstore_kernel.c,v 1.113 2006/06/19 10:10:21 areggiori Exp $
- * 
+/* Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
+
 
 #if !defined(WIN32)
 #include <sys/param.h>

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_log.c
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_log.c?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_log.c (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_log.c Fri Apr 13 10:19:54 2007
@@ -1,71 +1,19 @@
-/*
-##############################################################################
-# 	Copyright (c) 2000-2006 All rights reserved
-# 	Alberto Reggiori <ar...@webweaving.org>
-#	Dirk-Willem van Gulik <di...@webweaving.org>
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer. 
-#
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in
-#    the documentation and/or other materials provided with the
-#    distribution.
-#
-# 3. The end-user documentation included with the redistribution,
-#    if any, must include the following acknowledgment:
-#       "This product includes software developed by 
-#        Alberto Reggiori <ar...@webweaving.org> and
-#        Dirk-Willem van Gulik <di...@webweaving.org>."
-#    Alternately, this acknowledgment may appear in the software itself,
-#    if and wherever such third-party acknowledgments normally appear.
-#
-# 4. All advertising materials mentioning features or use of this software
-#    must display the following acknowledgement:
-#    This product includes software developed by the University of
-#    California, Berkeley and its contributors. 
-#
-# 5. Neither the name of the University nor the names of its contributors
-#    may be used to endorse or promote products derived from this software
-#    without specific prior written permission.
-#
-# 6. Products derived from this software may not be called "RDFStore"
-#    nor may "RDFStore" appear in their names without prior written
-#    permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
-# ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
-# FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
-# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
-# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
-# OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# ====================================================================
-#
-# This software consists of work developed by Alberto Reggiori and 
-# Dirk-Willem van Gulik. The RDF specific part is based based on public 
-# domain software written at the Stanford University Database Group by 
-# Sergey Melnik. For more information on the RDF API Draft work, 
-# please see <http://www-db.stanford.edu/~melnik/rdf/api.html>
-# The DBMS TCP/IP server part is based on software originally written
-# by Dirk-Willem van Gulik for Web Weaving Internet Engineering m/v Enschede,
-# The Netherlands.
-#
-##############################################################################
-#
-# $Id: rdfstore_log.c,v 1.7 2006/06/19 10:10:22 areggiori Exp $
-#
-*/
+/* Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 
 #if !defined(WIN32)
 #include <sys/param.h>

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_serializer.c
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_serializer.c?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_serializer.c (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_serializer.c Fri Apr 13 10:19:54 2007
@@ -1,71 +1,19 @@
-/*
-##############################################################################
-# 	Copyright (c) 2000-2006 All rights reserved
-# 	Alberto Reggiori <ar...@webweaving.org>
-#	Dirk-Willem van Gulik <di...@webweaving.org>
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer. 
-#
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in
-#    the documentation and/or other materials provided with the
-#    distribution.
-#
-# 3. The end-user documentation included with the redistribution,
-#    if any, must include the following acknowledgment:
-#       "This product includes software developed by 
-#        Alberto Reggiori <ar...@webweaving.org> and
-#        Dirk-Willem van Gulik <di...@webweaving.org>."
-#    Alternately, this acknowledgment may appear in the software itself,
-#    if and wherever such third-party acknowledgments normally appear.
-#
-# 4. All advertising materials mentioning features or use of this software
-#    must display the following acknowledgement:
-#    This product includes software developed by the University of
-#    California, Berkeley and its contributors. 
-#
-# 5. Neither the name of the University nor the names of its contributors
-#    may be used to endorse or promote products derived from this software
-#    without specific prior written permission.
-#
-# 6. Products derived from this software may not be called "RDFStore"
-#    nor may "RDFStore" appear in their names without prior written
-#    permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
-# ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
-# FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
-# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
-# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
-# OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# ====================================================================
-#
-# This software consists of work developed by Alberto Reggiori and 
-# Dirk-Willem van Gulik. The RDF specific part is based based on public 
-# domain software written at the Stanford University Database Group by 
-# Sergey Melnik. For more information on the RDF API Draft work, 
-# please see <http://www-db.stanford.edu/~melnik/rdf/api.html>
-# The DBMS TCP/IP server part is based on software originally written
-# by Dirk-Willem van Gulik for Web Weaving Internet Engineering m/v Enschede,
-# The Netherlands.
-#
-##############################################################################
-#
-# $Id: rdfstore_serializer.c,v 1.9 2006/06/19 10:10:22 areggiori Exp $
-#
-*/
+/* Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 
 #if !defined(WIN32)
 #include <sys/param.h>

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_utf8.c
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_utf8.c?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_utf8.c (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_utf8.c Fri Apr 13 10:19:54 2007
@@ -1,71 +1,19 @@
-/*
-##############################################################################
-# 	Copyright (c) 2000-2006 All rights reserved
-# 	Alberto Reggiori <ar...@webweaving.org>
-#	Dirk-Willem van Gulik <di...@webweaving.org>
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer. 
-#
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in
-#    the documentation and/or other materials provided with the
-#    distribution.
-#
-# 3. The end-user documentation included with the redistribution,
-#    if any, must include the following acknowledgment:
-#       "This product includes software developed by 
-#        Alberto Reggiori <ar...@webweaving.org> and
-#        Dirk-Willem van Gulik <di...@webweaving.org>."
-#    Alternately, this acknowledgment may appear in the software itself,
-#    if and wherever such third-party acknowledgments normally appear.
-#
-# 4. All advertising materials mentioning features or use of this software
-#    must display the following acknowledgement:
-#    This product includes software developed by the University of
-#    California, Berkeley and its contributors. 
-#
-# 5. Neither the name of the University nor the names of its contributors
-#    may be used to endorse or promote products derived from this software
-#    without specific prior written permission.
-#
-# 6. Products derived from this software may not be called "RDFStore"
-#    nor may "RDFStore" appear in their names without prior written
-#    permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
-# ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
-# FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
-# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
-# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
-# OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# ====================================================================
-#
-# This software consists of work developed by Alberto Reggiori and 
-# Dirk-Willem van Gulik. The RDF specific part is based based on public 
-# domain software written at the Stanford University Database Group by 
-# Sergey Melnik. For more information on the RDF API Draft work, 
-# please see <http://www-db.stanford.edu/~melnik/rdf/api.html>
-# The DBMS TCP/IP server part is based on software originally written
-# by Dirk-Willem van Gulik for Web Weaving Internet Engineering m/v Enschede,
-# The Netherlands.
-#
-##############################################################################
-#
-# $Id: rdfstore_utf8.c,v 1.7 2006/06/19 10:10:22 areggiori Exp $
-#
-*/
+/* Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 
 #if !defined(WIN32)
 #include <sys/param.h>

Modified: incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_xsd.c
URL: http://svn.apache.org/viewvc/incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_xsd.c?view=diff&rev=528559&r1=528558&r2=528559
==============================================================================
--- incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_xsd.c (original)
+++ incubator/triplesoup/donations/TRIPLES-3-RDFStore/rdfstore_xsd.c Fri Apr 13 10:19:54 2007
@@ -1,60 +1,19 @@
-/*
- * Copyright (c) 2000-2006 All rights reserved,
- *       Alberto Reggiori <ar...@webweaving.org>,
- *       Dirk-Willem van Gulik <di...@webweaving.org>.
- * 
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- * 
- * 1. Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * 
- * 2. Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- * 
- * 3. The end-user documentation included with the redistribution, if any, must
- * include the following acknowledgment: "This product includes software
- * developed by Alberto Reggiori <ar...@webweaving.org> and Dirk-Willem
- * van Gulik <di...@webweaving.org>." Alternately, this acknowledgment may
- * appear in the software itself, if and wherever such third-party
- * acknowledgments normally appear.
- * 
- * 4. All advertising materials mentioning features or use of this software must
- * display the following acknowledgement: This product includes software
- * developed by the University of California, Berkeley and its contributors.
- * 
- * 5. Neither the name of the University nor the names of its contributors may
- * be used to endorse or promote products derived from this software without
- * specific prior written permission.
- * 
- * 6. Products derived from this software may not be called "RDFStore" nor may
- * "RDFStore" appear in their names without prior written permission.
- * 
- * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
- * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- * 
- * ====================================================================
- * 
- * This software consists of work developed by Alberto Reggiori and Dirk-Willem
- * van Gulik. The RDF specific part is based based on public domain software
- * written at the Stanford University Database Group by Sergey Melnik. For
- * more information on the RDF API Draft work, please see
- * <http://www-db.stanford.edu/~melnik/rdf/api.html> The DBMS TCP/IP server
- * part is based on software originally written by Dirk-Willem van Gulik for
- * Web Weaving Internet Engineering m/v Enschede, The Netherlands.
- * 
+/* Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
+
 
 #if !defined(WIN32)
 #include <sys/param.h>