You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ol...@apache.org on 2013/06/20 13:49:33 UTC

svn commit: r1494942 - in /continuum/site-publish/ref: 1.3.8/apidocs/ 1.3.8/continuum-buildagent/apidocs/ 1.3.8/continuum-data-management/continuum-legacy/apidocs/ 1.3.8/continuum-data-management/data-management-cli/apidocs/ 1.3.8/continuum-data-manage...

Author: olamy
Date: Thu Jun 20 11:49:33 2013
New Revision: 1494942

URL: http://svn.apache.org/r1494942
Log:
fix javadoc

Modified:
    continuum/site-publish/ref/1.3.8/apidocs/index.html
    continuum/site-publish/ref/1.3.8/continuum-buildagent/apidocs/index.html
    continuum/site-publish/ref/1.3.8/continuum-data-management/continuum-legacy/apidocs/index.html
    continuum/site-publish/ref/1.3.8/continuum-data-management/data-management-cli/apidocs/index.html
    continuum/site-publish/ref/1.3.8/continuum-data-management/data-management-redback-jdo/apidocs/index.html
    continuum/site-publish/ref/1.3.8/continuum-distributed/continuum-distributed-master/continuum-distributed-master-client/apidocs/index.html
    continuum/site-publish/ref/1.3.8/continuum-distributed/continuum-distributed-slave/continuum-distributed-slave-server/apidocs/index.html
    continuum/site-publish/ref/1.3.8/testapidocs/index.html
    continuum/site-publish/ref/latest/apidocs/index.html

Modified: continuum/site-publish/ref/1.3.8/apidocs/index.html
URL: http://svn.apache.org/viewvc/continuum/site-publish/ref/1.3.8/apidocs/index.html?rev=1494942&r1=1494941&r2=1494942&view=diff
==============================================================================
--- continuum/site-publish/ref/1.3.8/apidocs/index.html (original)
+++ continuum/site-publish/ref/1.3.8/apidocs/index.html Thu Jun 20 11:49:33 2013
@@ -13,6 +13,42 @@ Continuum :: Project 1.3.8 API
         targetPage = targetPage.substring(1);
     if (targetPage.indexOf(":") != -1)
         targetPage = "undefined";
+    if (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: continuum/site-publish/ref/1.3.8/continuum-buildagent/apidocs/index.html
URL: http://svn.apache.org/viewvc/continuum/site-publish/ref/1.3.8/continuum-buildagent/apidocs/index.html?rev=1494942&r1=1494941&r2=1494942&view=diff
==============================================================================
--- continuum/site-publish/ref/1.3.8/continuum-buildagent/apidocs/index.html (original)
+++ continuum/site-publish/ref/1.3.8/continuum-buildagent/apidocs/index.html Thu Jun 20 11:49:33 2013
@@ -13,6 +13,42 @@ Continuum :: Distributed Build :: Build 
         targetPage = targetPage.substring(1);
     if (targetPage.indexOf(":") != -1)
         targetPage = "undefined";
+    if (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: continuum/site-publish/ref/1.3.8/continuum-data-management/continuum-legacy/apidocs/index.html
URL: http://svn.apache.org/viewvc/continuum/site-publish/ref/1.3.8/continuum-data-management/continuum-legacy/apidocs/index.html?rev=1494942&r1=1494941&r2=1494942&view=diff
==============================================================================
--- continuum/site-publish/ref/1.3.8/continuum-data-management/continuum-legacy/apidocs/index.html (original)
+++ continuum/site-publish/ref/1.3.8/continuum-data-management/continuum-legacy/apidocs/index.html Thu Jun 20 11:49:33 2013
@@ -13,6 +13,42 @@ Continuum :: Legacy Model 1.3.8 API
         targetPage = targetPage.substring(1);
     if (targetPage.indexOf(":") != -1)
         targetPage = "undefined";
+    if (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: continuum/site-publish/ref/1.3.8/continuum-data-management/data-management-cli/apidocs/index.html
URL: http://svn.apache.org/viewvc/continuum/site-publish/ref/1.3.8/continuum-data-management/data-management-cli/apidocs/index.html?rev=1494942&r1=1494941&r2=1494942&view=diff
==============================================================================
--- continuum/site-publish/ref/1.3.8/continuum-data-management/data-management-cli/apidocs/index.html (original)
+++ continuum/site-publish/ref/1.3.8/continuum-data-management/data-management-cli/apidocs/index.html Thu Jun 20 11:49:33 2013
@@ -13,6 +13,42 @@ Continuum :: Data Management :: CLI 1.3.
         targetPage = targetPage.substring(1);
     if (targetPage.indexOf(":") != -1)
         targetPage = "undefined";
+    if (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: continuum/site-publish/ref/1.3.8/continuum-data-management/data-management-redback-jdo/apidocs/index.html
URL: http://svn.apache.org/viewvc/continuum/site-publish/ref/1.3.8/continuum-data-management/data-management-redback-jdo/apidocs/index.html?rev=1494942&r1=1494941&r2=1494942&view=diff
==============================================================================
--- continuum/site-publish/ref/1.3.8/continuum-data-management/data-management-redback-jdo/apidocs/index.html (original)
+++ continuum/site-publish/ref/1.3.8/continuum-data-management/data-management-redback-jdo/apidocs/index.html Thu Jun 20 11:49:33 2013
@@ -13,6 +13,42 @@ Continuum :: Data Management :: Redback 
         targetPage = targetPage.substring(1);
     if (targetPage.indexOf(":") != -1)
         targetPage = "undefined";
+    if (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: continuum/site-publish/ref/1.3.8/continuum-distributed/continuum-distributed-master/continuum-distributed-master-client/apidocs/index.html
URL: http://svn.apache.org/viewvc/continuum/site-publish/ref/1.3.8/continuum-distributed/continuum-distributed-master/continuum-distributed-master-client/apidocs/index.html?rev=1494942&r1=1494941&r2=1494942&view=diff
==============================================================================
--- continuum/site-publish/ref/1.3.8/continuum-distributed/continuum-distributed-master/continuum-distributed-master-client/apidocs/index.html (original)
+++ continuum/site-publish/ref/1.3.8/continuum-distributed/continuum-distributed-master/continuum-distributed-master-client/apidocs/index.html Thu Jun 20 11:49:33 2013
@@ -13,6 +13,42 @@ Continuum :: Distributed Build :: Transp
         targetPage = targetPage.substring(1);
     if (targetPage.indexOf(":") != -1)
         targetPage = "undefined";
+    if (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: continuum/site-publish/ref/1.3.8/continuum-distributed/continuum-distributed-slave/continuum-distributed-slave-server/apidocs/index.html
URL: http://svn.apache.org/viewvc/continuum/site-publish/ref/1.3.8/continuum-distributed/continuum-distributed-slave/continuum-distributed-slave-server/apidocs/index.html?rev=1494942&r1=1494941&r2=1494942&view=diff
==============================================================================
--- continuum/site-publish/ref/1.3.8/continuum-distributed/continuum-distributed-slave/continuum-distributed-slave-server/apidocs/index.html (original)
+++ continuum/site-publish/ref/1.3.8/continuum-distributed/continuum-distributed-slave/continuum-distributed-slave-server/apidocs/index.html Thu Jun 20 11:49:33 2013
@@ -13,6 +13,42 @@ Continuum :: Distributed Build :: Transp
         targetPage = targetPage.substring(1);
     if (targetPage.indexOf(":") != -1)
         targetPage = "undefined";
+    if (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: continuum/site-publish/ref/1.3.8/testapidocs/index.html
URL: http://svn.apache.org/viewvc/continuum/site-publish/ref/1.3.8/testapidocs/index.html?rev=1494942&r1=1494941&r2=1494942&view=diff
==============================================================================
--- continuum/site-publish/ref/1.3.8/testapidocs/index.html (original)
+++ continuum/site-publish/ref/1.3.8/testapidocs/index.html Thu Jun 20 11:49:33 2013
@@ -13,6 +13,42 @@ Continuum :: Project 1.3.8 Test API
         targetPage = targetPage.substring(1);
     if (targetPage.indexOf(":") != -1)
         targetPage = "undefined";
+    if (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: continuum/site-publish/ref/latest/apidocs/index.html
URL: http://svn.apache.org/viewvc/continuum/site-publish/ref/latest/apidocs/index.html?rev=1494942&r1=1494941&r2=1494942&view=diff
==============================================================================
--- continuum/site-publish/ref/latest/apidocs/index.html (original)
+++ continuum/site-publish/ref/latest/apidocs/index.html Thu Jun 20 11:49:33 2013
@@ -12,6 +12,42 @@ Continuum :: Project 1.4.2-SNAPSHOT API
         targetPage = targetPage.substring(1);
     if (targetPage.indexOf(":") != -1)
         targetPage = "undefined";
+    if (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;
@@ -36,4 +72,4 @@ This document is designed to be viewed u
 Link to<A HREF="overview-summary.html">Non-frame version.</A>
 </NOFRAMES>
 </FRAMESET>
-</HTML>
\ No newline at end of file
+</HTML>