You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vxquery.apache.org by ti...@apache.org on 2010/09/12 01:37:22 UTC

svn commit: r996222 - in /incubator/vxquery/trunk/vxquery/src: main/java/org/apache/vxquery/compiler/tools/ main/java/org/apache/vxquery/datamodel/ main/java/org/apache/vxquery/util/ site/ site/apt/

Author: tillw
Date: Sat Sep 11 23:37:22 2010
New Revision: 996222

URL: http://svn.apache.org/viewvc?rev=996222&view=rev
Log:
added license headers

Modified:
    incubator/vxquery/trunk/vxquery/src/main/java/org/apache/vxquery/compiler/tools/FreeVariableMaintainer.java
    incubator/vxquery/trunk/vxquery/src/main/java/org/apache/vxquery/datamodel/NodeEqComparator.java
    incubator/vxquery/trunk/vxquery/src/main/java/org/apache/vxquery/util/Debug.java
    incubator/vxquery/trunk/vxquery/src/site/apt/index.apt
    incubator/vxquery/trunk/vxquery/src/site/site.xml

Modified: incubator/vxquery/trunk/vxquery/src/main/java/org/apache/vxquery/compiler/tools/FreeVariableMaintainer.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/trunk/vxquery/src/main/java/org/apache/vxquery/compiler/tools/FreeVariableMaintainer.java?rev=996222&r1=996221&r2=996222&view=diff
==============================================================================
--- incubator/vxquery/trunk/vxquery/src/main/java/org/apache/vxquery/compiler/tools/FreeVariableMaintainer.java (original)
+++ incubator/vxquery/trunk/vxquery/src/main/java/org/apache/vxquery/compiler/tools/FreeVariableMaintainer.java Sat Sep 11 23:37:22 2010
@@ -1,3 +1,19 @@
+/*
+* 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 org.apache.vxquery.compiler.tools;
 
 import java.util.Set;
@@ -60,4 +76,4 @@ public class FreeVariableMaintainer {
                 break;
         }
     }
-}
\ No newline at end of file
+}

Modified: incubator/vxquery/trunk/vxquery/src/main/java/org/apache/vxquery/datamodel/NodeEqComparator.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/trunk/vxquery/src/main/java/org/apache/vxquery/datamodel/NodeEqComparator.java?rev=996222&r1=996221&r2=996222&view=diff
==============================================================================
--- incubator/vxquery/trunk/vxquery/src/main/java/org/apache/vxquery/datamodel/NodeEqComparator.java (original)
+++ incubator/vxquery/trunk/vxquery/src/main/java/org/apache/vxquery/datamodel/NodeEqComparator.java Sat Sep 11 23:37:22 2010
@@ -1,3 +1,19 @@
+/*
+* 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 org.apache.vxquery.datamodel;
 
 import org.apache.vxquery.collations.CodepointCollation;
@@ -30,7 +46,7 @@ public final class NodeEqComparator {
     }
 
     public boolean compareDocument(XDMNode n1, XDMNode n2) {
-        throw new UnsupportedOperationException(); // TODO
+        throw new UnsupportedOperationException(); // TODO implement compareDocument
     }
 
     public boolean compareElement(XDMNode n1, XDMNode n2, RuntimeControlBlock rcb) throws SystemException {
@@ -163,7 +179,7 @@ public final class NodeEqComparator {
     }
 
     public boolean compareNamespace(XDMNode n1, XDMNode n2) {
-        throw new UnsupportedOperationException(); // TODO
+        throw new UnsupportedOperationException(); // TODO implement compareNamespace
     }
 
     public boolean compareProcessingInstruction(XDMNode n1, XDMNode n2) {
@@ -206,4 +222,4 @@ public final class NodeEqComparator {
             return result;
         }
     }
-}
\ No newline at end of file
+}

Modified: incubator/vxquery/trunk/vxquery/src/main/java/org/apache/vxquery/util/Debug.java
URL: http://svn.apache.org/viewvc/incubator/vxquery/trunk/vxquery/src/main/java/org/apache/vxquery/util/Debug.java?rev=996222&r1=996221&r2=996222&view=diff
==============================================================================
--- incubator/vxquery/trunk/vxquery/src/main/java/org/apache/vxquery/util/Debug.java (original)
+++ incubator/vxquery/trunk/vxquery/src/main/java/org/apache/vxquery/util/Debug.java Sat Sep 11 23:37:22 2010
@@ -1,3 +1,19 @@
+/*
+* 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 org.apache.vxquery.util;
 
 import com.thoughtworks.xstream.XStream;
@@ -6,6 +22,6 @@ import com.thoughtworks.xstream.io.json.
 public class Debug {
     public static String toString(Object o) {
         XStream xstream = new XStream(new JsonHierarchicalStreamDriver());
-        return xstream.toXML(o);        
+        return xstream.toXML(o);
     }
 }

Modified: incubator/vxquery/trunk/vxquery/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/incubator/vxquery/trunk/vxquery/src/site/apt/index.apt?rev=996222&r1=996221&r2=996222&view=diff
==============================================================================
--- incubator/vxquery/trunk/vxquery/src/site/apt/index.apt (original)
+++ incubator/vxquery/trunk/vxquery/src/site/apt/index.apt Sat Sep 11 23:37:22 2010
@@ -1,3 +1,18 @@
+~~ 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.
+
 Apache VXQuery
 
   Apache VXQuery (Versatile XQuery) will be a standards compliant XML Query processor implemented in Java. 

Modified: incubator/vxquery/trunk/vxquery/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/vxquery/trunk/vxquery/src/site/site.xml?rev=996222&r1=996221&r2=996222&view=diff
==============================================================================
--- incubator/vxquery/trunk/vxquery/src/site/site.xml (original)
+++ incubator/vxquery/trunk/vxquery/src/site/site.xml Sat Sep 11 23:37:22 2010
@@ -1,3 +1,19 @@
+<!--
+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.
+-->
 <project name="VXQuery">
 
     <bannerLeft>