Return-Path: X-Original-To: apmail-continuum-commits-archive@www.apache.org Delivered-To: apmail-continuum-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 13F3810FAD for ; Thu, 20 Jun 2013 11:50:04 +0000 (UTC) Received: (qmail 74933 invoked by uid 500); 20 Jun 2013 11:50:03 -0000 Delivered-To: apmail-continuum-commits-archive@continuum.apache.org Received: (qmail 74874 invoked by uid 500); 20 Jun 2013 11:50:00 -0000 Mailing-List: contact commits-help@continuum.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@continuum.apache.org Delivered-To: mailing list commits@continuum.apache.org Received: (qmail 74859 invoked by uid 99); 20 Jun 2013 11:49:59 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Jun 2013 11:49:59 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Jun 2013 11:49:55 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 4A45A23888E3; Thu, 20 Jun 2013 11:49:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: 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... Date: Thu, 20 Jun 2013 11:49:33 -0000 To: commits@continuum.apache.org From: olamy@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130620114934.4A45A23888E3@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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 toNon-frame version. - \ No newline at end of file +