You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2013/08/07 12:30:26 UTC

svn commit: r1511238 [1/2] - in /myfaces/site/publish/tobago: apidocs-1.0.10/ apidocs-1.0.11/ apidocs-1.0.12/ apidocs-1.0.13/ apidocs-1.0.14/ apidocs-1.0.15/ apidocs-1.0.16/ apidocs-1.0.17/ apidocs-1.0.18/ apidocs-1.0.19/ apidocs-1.0.20/ apidocs-1.0.21...

Author: lofwyr
Date: Wed Aug  7 10:30:25 2013
New Revision: 1511238

URL: http://svn.apache.org/r1511238
Log:
Patched JavaDoc, because of javadoc vulnerability CVE-2013-1571

Modified:
    myfaces/site/publish/tobago/apidocs-1.0.10/index.html
    myfaces/site/publish/tobago/apidocs-1.0.11/index.html
    myfaces/site/publish/tobago/apidocs-1.0.12/index.html
    myfaces/site/publish/tobago/apidocs-1.0.13/index.html
    myfaces/site/publish/tobago/apidocs-1.0.14/index.html
    myfaces/site/publish/tobago/apidocs-1.0.15/index.html
    myfaces/site/publish/tobago/apidocs-1.0.16/index.html
    myfaces/site/publish/tobago/apidocs-1.0.17/index.html
    myfaces/site/publish/tobago/apidocs-1.0.18/index.html
    myfaces/site/publish/tobago/apidocs-1.0.19/index.html
    myfaces/site/publish/tobago/apidocs-1.0.20/index.html
    myfaces/site/publish/tobago/apidocs-1.0.21/index.html
    myfaces/site/publish/tobago/apidocs-1.0.22/index.html
    myfaces/site/publish/tobago/apidocs-1.0.23/index.html
    myfaces/site/publish/tobago/apidocs-1.0.24/index.html
    myfaces/site/publish/tobago/apidocs-1.0.25/index.html
    myfaces/site/publish/tobago/apidocs-1.0.26/index.html
    myfaces/site/publish/tobago/apidocs-1.0.27/index.html
    myfaces/site/publish/tobago/apidocs-1.0.28/index.html
    myfaces/site/publish/tobago/apidocs-1.0.29/index.html
    myfaces/site/publish/tobago/apidocs-1.0.30/index.html
    myfaces/site/publish/tobago/apidocs-1.0.31/index.html
    myfaces/site/publish/tobago/apidocs-1.0.32/index.html
    myfaces/site/publish/tobago/apidocs-1.0.33/index.html
    myfaces/site/publish/tobago/apidocs-1.0.34/index.html
    myfaces/site/publish/tobago/apidocs-1.0.35/index.html
    myfaces/site/publish/tobago/apidocs-1.0.36/index.html
    myfaces/site/publish/tobago/apidocs-1.0.37/index.html
    myfaces/site/publish/tobago/apidocs-1.0.38/index.html
    myfaces/site/publish/tobago/apidocs-1.0.39/index.html
    myfaces/site/publish/tobago/apidocs-1.0.40/index.html
    myfaces/site/publish/tobago/apidocs-1.0.7/index.html
    myfaces/site/publish/tobago/apidocs-1.0.8/index.html
    myfaces/site/publish/tobago/apidocs-1.0.9/index.html
    myfaces/site/publish/tobago/apidocs-1.5.9/index.html
    myfaces/site/publish/tobago/tobago-contrib/tobago-facelets/apidocs/index.html
    myfaces/site/publish/tobago/tobago-example/tobago-example-addressbook/apidocs/index.html
    myfaces/site/publish/tobago/tobago-example/tobago-example-demo/apidocs/index.html
    myfaces/site/publish/tobago/tobago-example/tobago-example-facelets/apidocs/index.html
    myfaces/site/publish/tobago/tobago-example/tobago-example-foreach/apidocs/index.html
    myfaces/site/publish/tobago/tobago-example/tobago-example-nonfacesrequest/apidocs/index.html
    myfaces/site/publish/tobago/tobago-example/tobago-example-test/apidocs/index.html
    myfaces/site/publish/tobago/tobago-sandbox/apidocs/index.html
    myfaces/site/publish/tobago/tobago-tool/apidocs/index.html
    myfaces/site/publish/tobago/tobago-tool/maven-apt-plugin/apidocs/index.html
    myfaces/site/publish/tobago/tobago-tool/maven-theme-plugin/apidocs/index.html

Modified: myfaces/site/publish/tobago/apidocs-1.0.10/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.10/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.10/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.10/index.html Wed Aug  7 10:30:25 2013
@@ -11,6 +11,42 @@ Tobago Core 1.0.10 API
     targetPage = "" + window.location.search;
     if (targetPage != "" && targetPage != "undefined")
        targetPage = targetPage.substring(1);
+    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: myfaces/site/publish/tobago/apidocs-1.0.11/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.11/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.11/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.11/index.html Wed Aug  7 10:30:25 2013
@@ -11,6 +11,42 @@ Tobago Core 1.0.11 API
     targetPage = "" + window.location.search;
     if (targetPage != "" && targetPage != "undefined")
        targetPage = targetPage.substring(1);
+    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: myfaces/site/publish/tobago/apidocs-1.0.12/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.12/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.12/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.12/index.html Wed Aug  7 10:30:25 2013
@@ -11,6 +11,42 @@ Tobago Core 1.0.12 API
     targetPage = "" + window.location.search;
     if (targetPage != "" && targetPage != "undefined")
        targetPage = targetPage.substring(1);
+    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: myfaces/site/publish/tobago/apidocs-1.0.13/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.13/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.13/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.13/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.13 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: myfaces/site/publish/tobago/apidocs-1.0.14/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.14/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.14/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.14/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.14 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: myfaces/site/publish/tobago/apidocs-1.0.15/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.15/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.15/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.15/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.15 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: myfaces/site/publish/tobago/apidocs-1.0.16/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.16/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.16/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.16/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.16 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: myfaces/site/publish/tobago/apidocs-1.0.17/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.17/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.17/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.17/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.17 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: myfaces/site/publish/tobago/apidocs-1.0.18/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.18/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.18/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.18/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.18 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: myfaces/site/publish/tobago/apidocs-1.0.19/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.19/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.19/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.19/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.19 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: myfaces/site/publish/tobago/apidocs-1.0.20/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.20/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.20/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.20/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.20 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: myfaces/site/publish/tobago/apidocs-1.0.21/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.21/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.21/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.21/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.21 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: myfaces/site/publish/tobago/apidocs-1.0.22/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.22/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.22/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.22/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.22 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: myfaces/site/publish/tobago/apidocs-1.0.23/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.23/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.23/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.23/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.23 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: myfaces/site/publish/tobago/apidocs-1.0.24/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.24/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.24/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.24/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.24 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: myfaces/site/publish/tobago/apidocs-1.0.25/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.25/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.25/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.25/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.25 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: myfaces/site/publish/tobago/apidocs-1.0.26/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.26/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.26/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.26/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.26 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: myfaces/site/publish/tobago/apidocs-1.0.27/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.27/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.27/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.27/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.27 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: myfaces/site/publish/tobago/apidocs-1.0.28/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.28/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.28/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.28/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.28 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: myfaces/site/publish/tobago/apidocs-1.0.29/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.29/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.29/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.29/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.29 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: myfaces/site/publish/tobago/apidocs-1.0.30/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.30/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.30/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.30/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.30 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: myfaces/site/publish/tobago/apidocs-1.0.31/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.31/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.31/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.31/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.31 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: myfaces/site/publish/tobago/apidocs-1.0.32/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.32/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.32/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.32/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.32 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: myfaces/site/publish/tobago/apidocs-1.0.33/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.33/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.33/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.33/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.33 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: myfaces/site/publish/tobago/apidocs-1.0.34/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.34/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.34/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.34/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.34 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: myfaces/site/publish/tobago/apidocs-1.0.35/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.35/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.35/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.35/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.35 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: myfaces/site/publish/tobago/apidocs-1.0.36/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.36/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.36/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.36/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.36 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: myfaces/site/publish/tobago/apidocs-1.0.37/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.37/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.37/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.37/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.37 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: myfaces/site/publish/tobago/apidocs-1.0.38/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.38/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.38/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.38/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.38 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: myfaces/site/publish/tobago/apidocs-1.0.39/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.39/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.39/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.39/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.39 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: myfaces/site/publish/tobago/apidocs-1.0.40/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.40/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.40/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.40/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.0.40 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: myfaces/site/publish/tobago/apidocs-1.0.7/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.7/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.7/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.7/index.html Wed Aug  7 10:30:25 2013
@@ -11,6 +11,42 @@ Tobago Core 1.0.7 API
     targetPage = "" + window.location.search;
     if (targetPage != "" && targetPage != "undefined")
        targetPage = targetPage.substring(1);
+    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: myfaces/site/publish/tobago/apidocs-1.0.8/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.8/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.8/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.8/index.html Wed Aug  7 10:30:25 2013
@@ -11,6 +11,42 @@ Tobago Core 1.0.8 API
     targetPage = "" + window.location.search;
     if (targetPage != "" && targetPage != "undefined")
        targetPage = targetPage.substring(1);
+    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: myfaces/site/publish/tobago/apidocs-1.0.9/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.0.9/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.0.9/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.0.9/index.html Wed Aug  7 10:30:25 2013
@@ -11,6 +11,42 @@ Tobago Core 1.0.9 API
     targetPage = "" + window.location.search;
     if (targetPage != "" && targetPage != "undefined")
        targetPage = targetPage.substring(1);
+    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: myfaces/site/publish/tobago/apidocs-1.5.9/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/apidocs-1.5.9/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/apidocs-1.5.9/index.html (original)
+++ myfaces/site/publish/tobago/apidocs-1.5.9/index.html Wed Aug  7 10:30:25 2013
@@ -13,6 +13,42 @@ Tobago Core 1.5.9 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: myfaces/site/publish/tobago/tobago-contrib/tobago-facelets/apidocs/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-contrib/tobago-facelets/apidocs/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-contrib/tobago-facelets/apidocs/index.html (original)
+++ myfaces/site/publish/tobago/tobago-contrib/tobago-facelets/apidocs/index.html Wed Aug  7 10:30:25 2013
@@ -11,6 +11,42 @@ Tobago Facelets 1.0.8-SNAPSHOT API
     targetPage = "" + window.location.search;
     if (targetPage != "" && targetPage != "undefined")
        targetPage = targetPage.substring(1);
+    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: myfaces/site/publish/tobago/tobago-example/tobago-example-addressbook/apidocs/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-addressbook/apidocs/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-addressbook/apidocs/index.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-addressbook/apidocs/index.html Wed Aug  7 10:30:25 2013
@@ -11,6 +11,42 @@ Tobago Example Addressbook 1.0.8-SNAPSHO
     targetPage = "" + window.location.search;
     if (targetPage != "" && targetPage != "undefined")
        targetPage = targetPage.substring(1);
+    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: myfaces/site/publish/tobago/tobago-example/tobago-example-demo/apidocs/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-demo/apidocs/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-demo/apidocs/index.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-demo/apidocs/index.html Wed Aug  7 10:30:25 2013
@@ -11,6 +11,42 @@ Tobago Example Demo 1.0.8-SNAPSHOT API
     targetPage = "" + window.location.search;
     if (targetPage != "" && targetPage != "undefined")
        targetPage = targetPage.substring(1);
+    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: myfaces/site/publish/tobago/tobago-example/tobago-example-facelets/apidocs/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-facelets/apidocs/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-facelets/apidocs/index.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-facelets/apidocs/index.html Wed Aug  7 10:30:25 2013
@@ -11,6 +11,42 @@ Tobago Example Facelets 1.0.8-SNAPSHOT A
     targetPage = "" + window.location.search;
     if (targetPage != "" && targetPage != "undefined")
        targetPage = targetPage.substring(1);
+    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: myfaces/site/publish/tobago/tobago-example/tobago-example-foreach/apidocs/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-foreach/apidocs/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-foreach/apidocs/index.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-foreach/apidocs/index.html Wed Aug  7 10:30:25 2013
@@ -11,6 +11,42 @@ Tobago Example Foreach 1.0.8-SNAPSHOT AP
     targetPage = "" + window.location.search;
     if (targetPage != "" && targetPage != "undefined")
        targetPage = targetPage.substring(1);
+    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: myfaces/site/publish/tobago/tobago-example/tobago-example-nonfacesrequest/apidocs/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-nonfacesrequest/apidocs/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-nonfacesrequest/apidocs/index.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-nonfacesrequest/apidocs/index.html Wed Aug  7 10:30:25 2013
@@ -11,6 +11,42 @@ Tobago Example Non-Faces-Request 1.0.8-S
     targetPage = "" + window.location.search;
     if (targetPage != "" && targetPage != "undefined")
        targetPage = targetPage.substring(1);
+    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: myfaces/site/publish/tobago/tobago-example/tobago-example-test/apidocs/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-example/tobago-example-test/apidocs/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-example/tobago-example-test/apidocs/index.html (original)
+++ myfaces/site/publish/tobago/tobago-example/tobago-example-test/apidocs/index.html Wed Aug  7 10:30:25 2013
@@ -11,6 +11,42 @@ Tobago Example Test 1.0.8-SNAPSHOT API
     targetPage = "" + window.location.search;
     if (targetPage != "" && targetPage != "undefined")
        targetPage = targetPage.substring(1);
+    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: myfaces/site/publish/tobago/tobago-sandbox/apidocs/index.html
URL: http://svn.apache.org/viewvc/myfaces/site/publish/tobago/tobago-sandbox/apidocs/index.html?rev=1511238&r1=1511237&r2=1511238&view=diff
==============================================================================
--- myfaces/site/publish/tobago/tobago-sandbox/apidocs/index.html (original)
+++ myfaces/site/publish/tobago/tobago-sandbox/apidocs/index.html Wed Aug  7 10:30:25 2013
@@ -11,6 +11,42 @@ Tobago Sandbox 1.0.9-SNAPSHOT API
     targetPage = "" + window.location.search;
     if (targetPage != "" && targetPage != "undefined")
        targetPage = targetPage.substring(1);
+    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;