Author: vgritsenko
Date: Sat Feb 24 19:30:52 2007
New Revision: 511428
URL: http://svn.apache.org/viewvc?view=rev&rev=511428
Log:
update license headers
Modified:
xml/xindice/trunk/java/examples/addressbook/README
xml/xindice/trunk/java/examples/addressbook/config/web.xml
xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/Action.java
xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/AddContact.java
xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/DBConnection.java
xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/DeleteContact.java
xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/EditContact.java
xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/Group.java
xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/ListContacts.java
xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/Person.java
xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/SearchContacts.java
xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/Task.java
xml/xindice/trunk/java/examples/addressbook/src/jsp/addContact.jsp
xml/xindice/trunk/java/examples/addressbook/src/jsp/editContactForm.jsp
xml/xindice/trunk/java/examples/addressbook/src/jsp/error.jsp
xml/xindice/trunk/java/examples/addressbook/src/jsp/footer.jsp
xml/xindice/trunk/java/examples/addressbook/src/jsp/header.jsp
xml/xindice/trunk/java/examples/addressbook/src/jsp/index.jsp
xml/xindice/trunk/java/examples/addressbook/src/jsp/listContacts.jsp
xml/xindice/trunk/java/examples/addressbook/src/jsp/searchContacts.jsp
xml/xindice/trunk/java/examples/addressbook/src/jsp/showAllContactInfo.jsp
xml/xindice/trunk/java/examples/addressbook/src/jsp/showContact.jsp
xml/xindice/trunk/java/examples/addressbook/src/jsp/showXML.jsp
xml/xindice/trunk/java/examples/addressbook/src/jsp/showXMLInfo.jsp
xml/xindice/trunk/java/examples/build.xml
xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/AbstractExample.java
xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/AddDocument.java
xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/CreateCollection.java
xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/DeleteDocument.java
xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/Example1.java
xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/ListCollections.java
xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/RetrieveDocument.java
xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/XUpdate.java
xml/xindice/trunk/java/examples/guide/xml/address1.xml
xml/xindice/trunk/java/examples/guide/xml/address2.xml
Modified: xml/xindice/trunk/java/examples/addressbook/README
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/README?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/README (original)
+++ xml/xindice/trunk/java/examples/addressbook/README Sat Feb 24 19:30:52 2007
@@ -1,4 +1,4 @@
-CVS $Id$
+$Id$
--- Xindice address book example ---
Modified: xml/xindice/trunk/java/examples/addressbook/config/web.xml
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/config/web.xml?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/config/web.xml (original)
+++ xml/xindice/trunk/java/examples/addressbook/config/web.xml Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
- - Copyright 1999-2004 The Apache Software Foundation.
- -
- - Licensed 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
+ - 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
-
@@ -15,7 +16,7 @@
- See the License for the specific language governing permissions and
- limitations under the License.
-
- - CVS $Id$
+ - $Id$
-->
<!DOCTYPE web-app
Modified: xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/Action.java
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/Action.java?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/Action.java (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/Action.java Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
package addressbook;
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -15,7 +16,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
import java.util.Hashtable;
Modified: xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/AddContact.java
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/AddContact.java?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/AddContact.java (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/AddContact.java Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
package addressbook;
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -15,7 +16,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
import java.io.IOException;
Modified: xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/DBConnection.java
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/DBConnection.java?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/DBConnection.java (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/DBConnection.java Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
package addressbook;
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -15,7 +16,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
import java.net.URLEncoder;
Modified: xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/DeleteContact.java
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/DeleteContact.java?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/DeleteContact.java (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/DeleteContact.java Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
package addressbook;
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -15,7 +16,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
import java.io.IOException;
Modified: xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/EditContact.java
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/EditContact.java?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/EditContact.java (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/EditContact.java Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
package addressbook;
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -15,7 +16,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
import java.io.IOException;
Modified: xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/Group.java
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/Group.java?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/Group.java (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/Group.java Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
package addressbook;
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -15,7 +16,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
import java.util.Vector;
Modified: xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/ListContacts.java
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/ListContacts.java?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/ListContacts.java (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/ListContacts.java Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
package addressbook;
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -15,7 +16,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
import java.io.IOException;
Modified: xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/Person.java
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/Person.java?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/Person.java (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/Person.java Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
package addressbook;
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -15,7 +16,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
// Class to hold individual contact data
Modified: xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/SearchContacts.java
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/SearchContacts.java?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/SearchContacts.java (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/SearchContacts.java Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
package addressbook;
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -15,7 +16,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
import java.io.IOException;
Modified: xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/Task.java
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/Task.java?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/Task.java (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/java/addressbook/Task.java Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
package addressbook;
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -15,7 +16,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
import java.beans.Beans;
Modified: xml/xindice/trunk/java/examples/addressbook/src/jsp/addContact.jsp
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/jsp/addContact.jsp?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/jsp/addContact.jsp (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/jsp/addContact.jsp Sat Feb 24 19:30:52 2007
@@ -1,10 +1,11 @@
<%
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -14,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
%>
Modified: xml/xindice/trunk/java/examples/addressbook/src/jsp/editContactForm.jsp
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/jsp/editContactForm.jsp?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/jsp/editContactForm.jsp (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/jsp/editContactForm.jsp Sat Feb 24 19:30:52 2007
@@ -1,10 +1,11 @@
<%
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -14,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
%>
Modified: xml/xindice/trunk/java/examples/addressbook/src/jsp/error.jsp
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/jsp/error.jsp?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/jsp/error.jsp (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/jsp/error.jsp Sat Feb 24 19:30:52 2007
@@ -1,10 +1,11 @@
<%
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -14,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
%>
Modified: xml/xindice/trunk/java/examples/addressbook/src/jsp/footer.jsp
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/jsp/footer.jsp?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/jsp/footer.jsp (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/jsp/footer.jsp Sat Feb 24 19:30:52 2007
@@ -1,10 +1,11 @@
<%
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -14,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
%>
Modified: xml/xindice/trunk/java/examples/addressbook/src/jsp/header.jsp
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/jsp/header.jsp?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/jsp/header.jsp (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/jsp/header.jsp Sat Feb 24 19:30:52 2007
@@ -1,10 +1,11 @@
<%
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -14,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
%>
Modified: xml/xindice/trunk/java/examples/addressbook/src/jsp/index.jsp
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/jsp/index.jsp?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/jsp/index.jsp (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/jsp/index.jsp Sat Feb 24 19:30:52 2007
@@ -1,10 +1,11 @@
<%
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -14,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
%>
Modified: xml/xindice/trunk/java/examples/addressbook/src/jsp/listContacts.jsp
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/jsp/listContacts.jsp?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/jsp/listContacts.jsp (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/jsp/listContacts.jsp Sat Feb 24 19:30:52 2007
@@ -1,10 +1,11 @@
<%
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -14,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
%>
Modified: xml/xindice/trunk/java/examples/addressbook/src/jsp/searchContacts.jsp
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/jsp/searchContacts.jsp?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/jsp/searchContacts.jsp (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/jsp/searchContacts.jsp Sat Feb 24 19:30:52 2007
@@ -1,10 +1,11 @@
<%
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -14,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
%>
Modified: xml/xindice/trunk/java/examples/addressbook/src/jsp/showAllContactInfo.jsp
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/jsp/showAllContactInfo.jsp?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/jsp/showAllContactInfo.jsp (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/jsp/showAllContactInfo.jsp Sat Feb 24 19:30:52 2007
@@ -1,10 +1,11 @@
<%
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -14,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
%>
Modified: xml/xindice/trunk/java/examples/addressbook/src/jsp/showContact.jsp
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/jsp/showContact.jsp?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/jsp/showContact.jsp (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/jsp/showContact.jsp Sat Feb 24 19:30:52 2007
@@ -1,10 +1,11 @@
<%
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -14,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
%>
Modified: xml/xindice/trunk/java/examples/addressbook/src/jsp/showXML.jsp
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/jsp/showXML.jsp?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/jsp/showXML.jsp (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/jsp/showXML.jsp Sat Feb 24 19:30:52 2007
@@ -1,10 +1,11 @@
<%
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -14,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
%>
Modified: xml/xindice/trunk/java/examples/addressbook/src/jsp/showXMLInfo.jsp
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/addressbook/src/jsp/showXMLInfo.jsp?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/addressbook/src/jsp/showXMLInfo.jsp (original)
+++ xml/xindice/trunk/java/examples/addressbook/src/jsp/showXMLInfo.jsp Sat Feb 24 19:30:52 2007
@@ -1,10 +1,11 @@
<%
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -14,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
%>
Modified: xml/xindice/trunk/java/examples/build.xml
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/build.xml?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/build.xml (original)
+++ xml/xindice/trunk/java/examples/build.xml Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
<?xml version="1.0"?>
<!--
- - Copyright 1999-2004 The Apache Software Foundation.
- -
- - Licensed 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
+ - 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
-
@@ -15,7 +16,7 @@
- See the License for the specific language governing permissions and
- limitations under the License.
-
- - CVS $Id$
+ - $Id$
-->
<!--
Modified: xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/AbstractExample.java
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/AbstractExample.java?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/AbstractExample.java (original)
+++ xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/AbstractExample.java Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
package org.apache.xindice.examples;
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -15,7 +16,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
import org.apache.xindice.util.XindiceException;
Modified: xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/AddDocument.java
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/AddDocument.java?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/AddDocument.java (original)
+++ xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/AddDocument.java Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
package org.apache.xindice.examples;
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -15,7 +16,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
import java.io.File;
Modified: xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/CreateCollection.java
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/CreateCollection.java?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/CreateCollection.java (original)
+++ xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/CreateCollection.java Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
package org.apache.xindice.examples;
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -15,7 +16,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
import org.apache.xindice.client.xmldb.services.CollectionManager;
Modified: xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/DeleteDocument.java
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/DeleteDocument.java?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/DeleteDocument.java (original)
+++ xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/DeleteDocument.java Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
package org.apache.xindice.examples;
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -15,7 +16,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
import org.xmldb.api.base.Collection;
Modified: xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/Example1.java
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/Example1.java?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/Example1.java (original)
+++ xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/Example1.java Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
package org.apache.xindice.examples;
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -15,7 +16,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
import org.xmldb.api.base.Collection;
Modified: xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/ListCollections.java
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/ListCollections.java?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/ListCollections.java (original)
+++ xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/ListCollections.java Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
package org.apache.xindice.examples;
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -15,7 +16,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
import org.xmldb.api.base.Collection;
Modified: xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/RetrieveDocument.java
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/RetrieveDocument.java?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/RetrieveDocument.java (original)
+++ xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/RetrieveDocument.java Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
package org.apache.xindice.examples;
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -15,7 +16,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
import org.xmldb.api.base.Collection;
Modified: xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/XUpdate.java
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/XUpdate.java?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/XUpdate.java (original)
+++ xml/xindice/trunk/java/examples/guide/src/org/apache/xindice/examples/XUpdate.java Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
package org.apache.xindice.examples;
/*
- * Copyright 1999-2004 The Apache Software Foundation.
- *
- * Licensed 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
+ * 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
*
@@ -15,7 +16,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
- * CVS $Id$
+ * $Id$
*/
import org.xmldb.api.base.Collection;
Modified: xml/xindice/trunk/java/examples/guide/xml/address1.xml
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/guide/xml/address1.xml?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/guide/xml/address1.xml (original)
+++ xml/xindice/trunk/java/examples/guide/xml/address1.xml Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
<?xml version="1.0"?>
<!--
- - Copyright 1999-2004 The Apache Software Foundation.
- -
- - Licensed 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
+ - 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
-
@@ -15,7 +16,7 @@
- See the License for the specific language governing permissions and
- limitations under the License.
-
- - CVS $Id$
+ - $Id$
-->
<person>
Modified: xml/xindice/trunk/java/examples/guide/xml/address2.xml
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/examples/guide/xml/address2.xml?view=diff&rev=511428&r1=511427&r2=511428
==============================================================================
--- xml/xindice/trunk/java/examples/guide/xml/address2.xml (original)
+++ xml/xindice/trunk/java/examples/guide/xml/address2.xml Sat Feb 24 19:30:52 2007
@@ -1,11 +1,12 @@
<?xml version="1.0"?>
<!--
- - Copyright 1999-2004 The Apache Software Foundation.
- -
- - Licensed 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
+ - 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
-
@@ -15,7 +16,7 @@
- See the License for the specific language governing permissions and
- limitations under the License.
-
- - CVS $Id$
+ - $Id$
-->
<person>
lmpx.com only provides a reader for public news (NNTP) servers. It is not
affiliated with the servers or forums shown here and is not responsible for
the content of articles, which is written by their respective authors.