You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sqoop.apache.org by bu...@apache.org on 2013/06/30 00:39:21 UTC

svn commit: r867833 - in /websites/staging/sqoop/trunk/content: ./ docs/1.4.0-incubating/api/index.html docs/1.4.1-incubating/api/index.html docs/1.4.2/api/index.html docs/1.4.3/api/index.html

Author: buildbot
Date: Sat Jun 29 22:39:21 2013
New Revision: 867833

Log:
Staging update by buildbot for sqoop

Modified:
    websites/staging/sqoop/trunk/content/   (props changed)
    websites/staging/sqoop/trunk/content/docs/1.4.0-incubating/api/index.html
    websites/staging/sqoop/trunk/content/docs/1.4.1-incubating/api/index.html
    websites/staging/sqoop/trunk/content/docs/1.4.2/api/index.html
    websites/staging/sqoop/trunk/content/docs/1.4.3/api/index.html

Propchange: websites/staging/sqoop/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sat Jun 29 22:39:21 2013
@@ -1 +1 @@
-1495879
+1498035

Modified: websites/staging/sqoop/trunk/content/docs/1.4.0-incubating/api/index.html
==============================================================================
--- websites/staging/sqoop/trunk/content/docs/1.4.0-incubating/api/index.html (original)
+++ websites/staging/sqoop/trunk/content/docs/1.4.0-incubating/api/index.html Sat Jun 29 22:39:21 2013
@@ -12,6 +12,42 @@ Sqoop 1.4.0-incubating 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: websites/staging/sqoop/trunk/content/docs/1.4.1-incubating/api/index.html
==============================================================================
--- websites/staging/sqoop/trunk/content/docs/1.4.1-incubating/api/index.html (original)
+++ websites/staging/sqoop/trunk/content/docs/1.4.1-incubating/api/index.html Sat Jun 29 22:39:21 2013
@@ -12,6 +12,42 @@ Sqoop 1.4.1-incubating 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: websites/staging/sqoop/trunk/content/docs/1.4.2/api/index.html
==============================================================================
--- websites/staging/sqoop/trunk/content/docs/1.4.2/api/index.html (original)
+++ websites/staging/sqoop/trunk/content/docs/1.4.2/api/index.html Sat Jun 29 22:39:21 2013
@@ -12,6 +12,42 @@ Sqoop 1.4.2 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: websites/staging/sqoop/trunk/content/docs/1.4.3/api/index.html
==============================================================================
--- websites/staging/sqoop/trunk/content/docs/1.4.3/api/index.html (original)
+++ websites/staging/sqoop/trunk/content/docs/1.4.3/api/index.html Sat Jun 29 22:39:21 2013
@@ -12,6 +12,42 @@ Sqoop 1.4.3 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;