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 2014/04/22 07:58:52 UTC

svn commit: r1589021 [4/49] - in /incubator/vxquery/site: ./ apidocs/ apidocs/org/apache/vxquery/cli/ apidocs/org/apache/vxquery/cli/class-use/ apidocs/org/apache/vxquery/collations/ apidocs/org/apache/vxquery/collations/class-use/ apidocs/org/apache/v...

Modified: incubator/vxquery/site/apidocs/index.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/index.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/index.html (original)
+++ incubator/vxquery/site/apidocs/index.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,47 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>VXQuery 0.3-incubating-SNAPSHOT API</title>
+<title>VXQuery 0.3-incubating API</title>
 <script type="text/javascript">
     targetPage = "" + window.location.search;
     if (targetPage != "" && targetPage != "undefined")
         targetPage = targetPage.substring(1);
-    if (targetPage.indexOf(":") != -1)
+    if (targetPage.indexOf(":") != -1 || (targetPage != "" && !validURL(targetPage)))
         targetPage = "undefined";
+    function validURL(url) {
+        var pos = url.indexOf(".html");
+        if (pos == -1 || pos != url.length - 5)
+            return false;
+        var allowNumber = false;
+        var allowSep = false;
+        var seenDot = false;
+        for (var i = 0; i < url.length - 5; i++) {
+            var ch = url.charAt(i);
+            if ('a' <= ch && ch <= 'z' ||
+                    'A' <= ch && ch <= 'Z' ||
+                    ch == '$' ||
+                    ch == '_') {
+                allowNumber = true;
+                allowSep = true;
+            } else if ('0' <= ch && ch <= '9'
+                    || ch == '-') {
+                if (!allowNumber)
+                     return false;
+            } else if (ch == '/' || ch == '.') {
+                if (!allowSep)
+                    return false;
+                allowNumber = false;
+                allowSep = false;
+                if (ch == '.')
+                     seenDot = true;
+                if (ch == '/' && seenDot)
+                     return false;
+            } else {
+                return false;
+            }
+        }
+        return true;
+    }
     function loadFrames() {
         if (targetPage != "" && targetPage != "undefined")
              top.classFrame.location = top.targetPage;

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/cli/VXQuery.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/cli/VXQuery.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/cli/VXQuery.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/cli/VXQuery.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>VXQuery (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>VXQuery (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="VXQuery (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="VXQuery (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -155,7 +155,7 @@ extends <a href="http://docs.oracle.com/
 <tr class="rowColor">
 <td class="colFirst"><code>void</code></td>
 <td class="colLast"><code><strong><a href="../../../../org/apache/vxquery/cli/VXQuery.html#stopLocalHyracks()">stopLocalHyracks</a></strong>()</code>
-<div class="block">Shuts down the virtual cluster, alongwith all nodes and node execution, network and queue managers.</div>
+<div class="block">Shuts down the virtual cluster, along with all nodes and node execution, network and queue managers.</div>
 </td>
 </tr>
 </table>
@@ -246,7 +246,7 @@ extends <a href="http://docs.oracle.com/
 <h4>stopLocalHyracks</h4>
 <pre>public&nbsp;void&nbsp;stopLocalHyracks()
                       throws <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></pre>
-<div class="block">Shuts down the virtual cluster, alongwith all nodes and node execution, network and queue managers.</div>
+<div class="block">Shuts down the virtual cluster, along with all nodes and node execution, network and queue managers.</div>
 <dl><dt><span class="strong">Throws:</span></dt>
 <dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a></code></dd></dl>
 </li>
@@ -318,6 +318,6 @@ extends <a href="http://docs.oracle.com/
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/cli/class-use/VXQuery.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/cli/class-use/VXQuery.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/cli/class-use/VXQuery.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/cli/class-use/VXQuery.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Class org.apache.vxquery.cli.VXQuery (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.vxquery.cli.VXQuery (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Uses of Class org.apache.vxquery.cli.VXQuery (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="Uses of Class org.apache.vxquery.cli.VXQuery (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -110,6 +110,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/cli/package-frame.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/cli/package-frame.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/cli/package-frame.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/cli/package-frame.html Tue Apr 22 05:58:26 2014
@@ -3,7 +3,7 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>org.apache.vxquery.cli (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>org.apache.vxquery.cli (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/cli/package-summary.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/cli/package-summary.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/cli/package-summary.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/cli/package-summary.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>org.apache.vxquery.cli (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>org.apache.vxquery.cli (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="org.apache.vxquery.cli (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="org.apache.vxquery.cli (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -128,6 +128,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/cli/package-tree.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/cli/package-tree.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/cli/package-tree.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/cli/package-tree.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>org.apache.vxquery.cli Class Hierarchy (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>org.apache.vxquery.cli Class Hierarchy (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="org.apache.vxquery.cli Class Hierarchy (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="org.apache.vxquery.cli Class Hierarchy (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -123,6 +123,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/cli/package-use.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/cli/package-use.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/cli/package-use.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/cli/package-use.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Package org.apache.vxquery.cli (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>Uses of Package org.apache.vxquery.cli (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Uses of Package org.apache.vxquery.cli (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="Uses of Package org.apache.vxquery.cli (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -110,6 +110,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/collations/CodepointCollation.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/collations/CodepointCollation.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/collations/CodepointCollation.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/collations/CodepointCollation.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>CodepointCollation (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>CodepointCollation (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="CodepointCollation (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="CodepointCollation (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -388,6 +388,6 @@ implements <a href="../../../../org/apac
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/collations/Collation.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/collations/Collation.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/collations/Collation.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/collations/Collation.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Collation (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>Collation (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Collation (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="Collation (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -293,6 +293,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/collations/class-use/CodepointCollation.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/collations/class-use/CodepointCollation.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/collations/class-use/CodepointCollation.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/collations/class-use/CodepointCollation.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Class org.apache.vxquery.collations.CodepointCollation (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.vxquery.collations.CodepointCollation (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Uses of Class org.apache.vxquery.collations.CodepointCollation (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="Uses of Class org.apache.vxquery.collations.CodepointCollation (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -110,6 +110,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/collations/class-use/Collation.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/collations/class-use/Collation.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/collations/class-use/Collation.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/collations/class-use/Collation.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Interface org.apache.vxquery.collations.Collation (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>Uses of Interface org.apache.vxquery.collations.Collation (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Uses of Interface org.apache.vxquery.collations.Collation (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="Uses of Interface org.apache.vxquery.collations.Collation (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -235,6 +235,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/collations/package-frame.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/collations/package-frame.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/collations/package-frame.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/collations/package-frame.html Tue Apr 22 05:58:26 2014
@@ -3,7 +3,7 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>org.apache.vxquery.collations (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>org.apache.vxquery.collations (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/collations/package-summary.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/collations/package-summary.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/collations/package-summary.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/collations/package-summary.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>org.apache.vxquery.collations (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>org.apache.vxquery.collations (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="org.apache.vxquery.collations (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="org.apache.vxquery.collations (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -143,6 +143,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/collations/package-tree.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/collations/package-tree.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/collations/package-tree.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/collations/package-tree.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>org.apache.vxquery.collations Class Hierarchy (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>org.apache.vxquery.collations Class Hierarchy (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="org.apache.vxquery.collations Class Hierarchy (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="org.apache.vxquery.collations Class Hierarchy (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -127,6 +127,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/collations/package-use.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/collations/package-use.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/collations/package-use.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/collations/package-use.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Package org.apache.vxquery.collations (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>Uses of Package org.apache.vxquery.collations (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Uses of Package org.apache.vxquery.collations (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="Uses of Package org.apache.vxquery.collations (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -162,6 +162,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/CompilerControlBlock.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/CompilerControlBlock.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/CompilerControlBlock.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/CompilerControlBlock.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>CompilerControlBlock (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>CompilerControlBlock (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="CompilerControlBlock (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="CompilerControlBlock (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -115,8 +115,9 @@ extends <a href="http://docs.oracle.com/
 <th class="colOne" scope="col">Constructor and Description</th>
 </tr>
 <tr class="altColor">
-<td class="colOne"><code><strong><a href="../../../../org/apache/vxquery/compiler/CompilerControlBlock.html#CompilerControlBlock(org.apache.vxquery.context.StaticContext, edu.uci.ics.hyracks.api.dataset.ResultSetId)">CompilerControlBlock</a></strong>(<a href="../../../../org/apache/vxquery/context/StaticContext.html" title="interface in org.apache.vxquery.context">StaticContext</a>&nbsp;ctx,
-                    edu.uci.ics.hyracks.api.dataset.ResultSetId&nbsp;resultSetId)</code>&nbsp;</td>
+<td class="colOne"><code><strong><a href="../../../../org/apache/vxquery/compiler/CompilerControlBlock.html#CompilerControlBlock(org.apache.vxquery.context.StaticContext, edu.uci.ics.hyracks.api.dataset.ResultSetId, java.util.Map)">CompilerControlBlock</a></strong>(<a href="../../../../org/apache/vxquery/context/StaticContext.html" title="interface in org.apache.vxquery.context">StaticContext</a>&nbsp;ctx,
+                    edu.uci.ics.hyracks.api.dataset.ResultSetId&nbsp;resultSetId,
+                    <a href="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</a>&gt;&nbsp;sourceFileMap)</code>&nbsp;</td>
 </tr>
 </table>
 </li>
@@ -138,6 +139,10 @@ extends <a href="http://docs.oracle.com/
 <td class="colLast"><code><strong><a href="../../../../org/apache/vxquery/compiler/CompilerControlBlock.html#getResultSetId()">getResultSetId</a></strong>()</code>&nbsp;</td>
 </tr>
 <tr class="rowColor">
+<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</a>&gt;</code></td>
+<td class="colLast"><code><strong><a href="../../../../org/apache/vxquery/compiler/CompilerControlBlock.html#getSourceFileMap()">getSourceFileMap</a></strong>()</code>&nbsp;</td>
+</tr>
+<tr class="altColor">
 <td class="colFirst"><code><a href="../../../../org/apache/vxquery/context/StaticContext.html" title="interface in org.apache.vxquery.context">StaticContext</a></code></td>
 <td class="colLast"><code><strong><a href="../../../../org/apache/vxquery/compiler/CompilerControlBlock.html#getStaticContext()">getStaticContext</a></strong>()</code>&nbsp;</td>
 </tr>
@@ -163,14 +168,15 @@ extends <a href="http://docs.oracle.com/
 <!--   -->
 </a>
 <h3>Constructor Detail</h3>
-<a name="CompilerControlBlock(org.apache.vxquery.context.StaticContext, edu.uci.ics.hyracks.api.dataset.ResultSetId)">
+<a name="CompilerControlBlock(org.apache.vxquery.context.StaticContext, edu.uci.ics.hyracks.api.dataset.ResultSetId, java.util.Map)">
 <!--   -->
 </a>
 <ul class="blockListLast">
 <li class="blockList">
 <h4>CompilerControlBlock</h4>
 <pre>public&nbsp;CompilerControlBlock(<a href="../../../../org/apache/vxquery/context/StaticContext.html" title="interface in org.apache.vxquery.context">StaticContext</a>&nbsp;ctx,
-                    edu.uci.ics.hyracks.api.dataset.ResultSetId&nbsp;resultSetId)</pre>
+                    edu.uci.ics.hyracks.api.dataset.ResultSetId&nbsp;resultSetId,
+                    <a href="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</a>&gt;&nbsp;sourceFileMap)</pre>
 </li>
 </ul>
 </li>
@@ -193,12 +199,21 @@ extends <a href="http://docs.oracle.com/
 <a name="getResultSetId()">
 <!--   -->
 </a>
-<ul class="blockListLast">
+<ul class="blockList">
 <li class="blockList">
 <h4>getResultSetId</h4>
 <pre>public&nbsp;edu.uci.ics.hyracks.api.dataset.ResultSetId&nbsp;getResultSetId()</pre>
 </li>
 </ul>
+<a name="getSourceFileMap()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>getSourceFileMap</h4>
+<pre>public&nbsp;<a href="http://docs.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/6/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</a>&gt;&nbsp;getSourceFileMap()</pre>
+</li>
+</ul>
 </li>
 </ul>
 </li>
@@ -266,6 +281,6 @@ extends <a href="http://docs.oracle.com/
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryBinaryBooleanInspectorFactory.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryBinaryBooleanInspectorFactory.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryBinaryBooleanInspectorFactory.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryBinaryBooleanInspectorFactory.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>VXQueryBinaryBooleanInspectorFactory (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>VXQueryBinaryBooleanInspectorFactory (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="VXQueryBinaryBooleanInspectorFactory (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="VXQueryBinaryBooleanInspectorFactory (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -261,6 +261,6 @@ implements edu.uci.ics.hyracks.algebrick
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryBinaryIntegerInspectorFactory.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryBinaryIntegerInspectorFactory.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryBinaryIntegerInspectorFactory.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryBinaryIntegerInspectorFactory.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>VXQueryBinaryIntegerInspectorFactory (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>VXQueryBinaryIntegerInspectorFactory (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="VXQueryBinaryIntegerInspectorFactory (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="VXQueryBinaryIntegerInspectorFactory (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -261,6 +261,6 @@ implements edu.uci.ics.hyracks.algebrick
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryComparatorFactoryProvider.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryComparatorFactoryProvider.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryComparatorFactoryProvider.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryComparatorFactoryProvider.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>VXQueryComparatorFactoryProvider (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>VXQueryComparatorFactoryProvider (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="VXQueryComparatorFactoryProvider (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="VXQueryComparatorFactoryProvider (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -264,6 +264,6 @@ implements edu.uci.ics.hyracks.algebrick
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryConstantValue.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryConstantValue.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryConstantValue.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryConstantValue.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>VXQueryConstantValue (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>VXQueryConstantValue (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="VXQueryConstantValue (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="VXQueryConstantValue (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -339,6 +339,6 @@ implements edu.uci.ics.hyracks.algebrick
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryExpressionRuntimeProvider.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryExpressionRuntimeProvider.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryExpressionRuntimeProvider.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryExpressionRuntimeProvider.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>VXQueryExpressionRuntimeProvider (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>VXQueryExpressionRuntimeProvider (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="VXQueryExpressionRuntimeProvider (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="VXQueryExpressionRuntimeProvider (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -368,6 +368,6 @@ implements edu.uci.ics.hyracks.algebrick
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryGlobalDataFactory.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryGlobalDataFactory.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryGlobalDataFactory.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryGlobalDataFactory.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>VXQueryGlobalDataFactory (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>VXQueryGlobalDataFactory (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="VXQueryGlobalDataFactory (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="VXQueryGlobalDataFactory (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -261,6 +261,6 @@ implements edu.uci.ics.hyracks.api.job.I
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryNullWriterFactory.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryNullWriterFactory.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryNullWriterFactory.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryNullWriterFactory.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>VXQueryNullWriterFactory (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>VXQueryNullWriterFactory (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="VXQueryNullWriterFactory (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="VXQueryNullWriterFactory (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -261,6 +261,6 @@ implements edu.uci.ics.hyracks.api.dataf
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryPrinterFactory.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryPrinterFactory.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryPrinterFactory.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryPrinterFactory.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>VXQueryPrinterFactory (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>VXQueryPrinterFactory (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="VXQueryPrinterFactory (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="VXQueryPrinterFactory (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -261,6 +261,6 @@ implements edu.uci.ics.hyracks.algebrick
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryPrinterFactoryProvider.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryPrinterFactoryProvider.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryPrinterFactoryProvider.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/VXQueryPrinterFactoryProvider.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>VXQueryPrinterFactoryProvider (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>VXQueryPrinterFactoryProvider (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="VXQueryPrinterFactoryProvider (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="VXQueryPrinterFactoryProvider (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -298,6 +298,6 @@ implements edu.uci.ics.hyracks.algebrick
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryBinaryBooleanInspectorFactory.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryBinaryBooleanInspectorFactory.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryBinaryBooleanInspectorFactory.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryBinaryBooleanInspectorFactory.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryBinaryBooleanInspectorFactory (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryBinaryBooleanInspectorFactory (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryBinaryBooleanInspectorFactory (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryBinaryBooleanInspectorFactory (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -110,6 +110,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryBinaryIntegerInspectorFactory.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryBinaryIntegerInspectorFactory.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryBinaryIntegerInspectorFactory.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryBinaryIntegerInspectorFactory.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryBinaryIntegerInspectorFactory (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryBinaryIntegerInspectorFactory (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryBinaryIntegerInspectorFactory (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryBinaryIntegerInspectorFactory (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -110,6 +110,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryComparatorFactoryProvider.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryComparatorFactoryProvider.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryComparatorFactoryProvider.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryComparatorFactoryProvider.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryComparatorFactoryProvider (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryComparatorFactoryProvider (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryComparatorFactoryProvider (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryComparatorFactoryProvider (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -110,6 +110,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryConstantValue.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryConstantValue.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryConstantValue.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryConstantValue.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryConstantValue (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryConstantValue (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryConstantValue (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryConstantValue (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -110,6 +110,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryExpressionRuntimeProvider.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryExpressionRuntimeProvider.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryExpressionRuntimeProvider.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryExpressionRuntimeProvider.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryExpressionRuntimeProvider (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryExpressionRuntimeProvider (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryExpressionRuntimeProvider (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryExpressionRuntimeProvider (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -110,6 +110,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryGlobalDataFactory.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryGlobalDataFactory.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryGlobalDataFactory.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryGlobalDataFactory.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryGlobalDataFactory (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryGlobalDataFactory (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryGlobalDataFactory (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryGlobalDataFactory (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -110,6 +110,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryNullWriterFactory.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryNullWriterFactory.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryNullWriterFactory.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryNullWriterFactory.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryNullWriterFactory (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryNullWriterFactory (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryNullWriterFactory (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryNullWriterFactory (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -110,6 +110,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryPrinterFactory.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryPrinterFactory.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryPrinterFactory.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryPrinterFactory.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryPrinterFactory (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryPrinterFactory (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryPrinterFactory (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryPrinterFactory (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -110,6 +110,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryPrinterFactoryProvider.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryPrinterFactoryProvider.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryPrinterFactoryProvider.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/class-use/VXQueryPrinterFactoryProvider.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryPrinterFactoryProvider (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryPrinterFactoryProvider (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryPrinterFactoryProvider (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="Uses of Class org.apache.vxquery.compiler.algebricks.VXQueryPrinterFactoryProvider (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -110,6 +110,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/package-frame.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/package-frame.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/package-frame.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/package-frame.html Tue Apr 22 05:58:26 2014
@@ -3,7 +3,7 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>org.apache.vxquery.compiler.algebricks (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>org.apache.vxquery.compiler.algebricks (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/package-summary.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/package-summary.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/package-summary.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/package-summary.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>org.apache.vxquery.compiler.algebricks (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>org.apache.vxquery.compiler.algebricks (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="org.apache.vxquery.compiler.algebricks (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="org.apache.vxquery.compiler.algebricks (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -36,7 +36,7 @@
 <div class="subNav">
 <ul class="navList">
 <li><a href="../../../../../org/apache/vxquery/compiler/package-summary.html">Prev Package</a></li>
-<li><a href="../../../../../org/apache/vxquery/compiler/rewriter/package-summary.html">Next Package</a></li>
+<li><a href="../../../../../org/apache/vxquery/compiler/algebricks/prettyprint/package-summary.html">Next Package</a></li>
 </ul>
 <ul class="navList">
 <li><a href="../../../../../index.html?org/apache/vxquery/compiler/algebricks/package-summary.html" target="_top">Frames</a></li>
@@ -135,7 +135,7 @@
 <div class="subNav">
 <ul class="navList">
 <li><a href="../../../../../org/apache/vxquery/compiler/package-summary.html">Prev Package</a></li>
-<li><a href="../../../../../org/apache/vxquery/compiler/rewriter/package-summary.html">Next Package</a></li>
+<li><a href="../../../../../org/apache/vxquery/compiler/algebricks/prettyprint/package-summary.html">Next Package</a></li>
 </ul>
 <ul class="navList">
 <li><a href="../../../../../index.html?org/apache/vxquery/compiler/algebricks/package-summary.html" target="_top">Frames</a></li>
@@ -160,6 +160,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/package-tree.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/package-tree.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/package-tree.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/package-tree.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>org.apache.vxquery.compiler.algebricks Class Hierarchy (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>org.apache.vxquery.compiler.algebricks Class Hierarchy (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="org.apache.vxquery.compiler.algebricks Class Hierarchy (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="org.apache.vxquery.compiler.algebricks Class Hierarchy (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -36,7 +36,7 @@
 <div class="subNav">
 <ul class="navList">
 <li><a href="../../../../../org/apache/vxquery/compiler/package-tree.html">Prev</a></li>
-<li><a href="../../../../../org/apache/vxquery/compiler/rewriter/package-tree.html">Next</a></li>
+<li><a href="../../../../../org/apache/vxquery/compiler/algebricks/prettyprint/package-tree.html">Next</a></li>
 </ul>
 <ul class="navList">
 <li><a href="../../../../../index.html?org/apache/vxquery/compiler/algebricks/package-tree.html" target="_top">Frames</a></li>
@@ -106,7 +106,7 @@
 <div class="subNav">
 <ul class="navList">
 <li><a href="../../../../../org/apache/vxquery/compiler/package-tree.html">Prev</a></li>
-<li><a href="../../../../../org/apache/vxquery/compiler/rewriter/package-tree.html">Next</a></li>
+<li><a href="../../../../../org/apache/vxquery/compiler/algebricks/prettyprint/package-tree.html">Next</a></li>
 </ul>
 <ul class="navList">
 <li><a href="../../../../../index.html?org/apache/vxquery/compiler/algebricks/package-tree.html" target="_top">Frames</a></li>
@@ -131,6 +131,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>

Modified: incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/package-use.html
URL: http://svn.apache.org/viewvc/incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/package-use.html?rev=1589021&r1=1589020&r2=1589021&view=diff
==============================================================================
--- incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/package-use.html (original)
+++ incubator/vxquery/site/apidocs/org/apache/vxquery/compiler/algebricks/package-use.html Tue Apr 22 05:58:26 2014
@@ -3,13 +3,13 @@
 <html lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Package org.apache.vxquery.compiler.algebricks (VXQuery 0.3-incubating-SNAPSHOT API)</title>
+<title>Uses of Package org.apache.vxquery.compiler.algebricks (VXQuery 0.3-incubating API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>
 <script type="text/javascript"><!--
     if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Uses of Package org.apache.vxquery.compiler.algebricks (VXQuery 0.3-incubating-SNAPSHOT API)";
+        parent.document.title="Uses of Package org.apache.vxquery.compiler.algebricks (VXQuery 0.3-incubating API)";
     }
 //-->
 </script>
@@ -110,6 +110,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2013 <a href="http://www.apache.org/">Apache Software Foundation</a>. All Rights Reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">Apache Software Foundation</a>. All rights reserved.</small></p>
 </body>
 </html>