You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@portals.apache.org by at...@apache.org on 2013/06/25 20:16:22 UTC

svn commit: r1496568 - in /portals/site-live: jetspeed-2.1.3/multiproject/ant-tasks/apidocs/ jetspeed-2.1.3/multiproject/demo/apidocs/ jetspeed-2.1.3/multiproject/j2-admin/apidocs/ jetspeed-2.1.3/multiproject/jetspeed-api/apidocs/ jetspeed-2.1.3/multip...

Author: ate
Date: Tue Jun 25 18:16:21 2013
New Revision: 1496568

URL: http://svn.apache.org/r1496568
Log:
PORTALS-24: Oracle Javadoc HTML frame injection vulnerability

Modified:
    portals/site-live/jetspeed-2.1.3/multiproject/ant-tasks/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/demo/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/j2-admin/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-api/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-capability/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-cm/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-commons/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-components/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-deploy-tools/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-file-cache/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-header-resource/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-id-generator/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-layout-portlets/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-locator/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-page-manager/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-portal-site/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-portal/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-portlet-factory/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-prefs/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-profiler/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-rdbms/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-registry/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-rewriter/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-search/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-security-schema/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-security/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-serializer/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-sso/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-statistics/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-web-content/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-webapp-logging/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/jetspeed2-taglib-treecontrol/apidocs/index.html
    portals/site-live/jetspeed-2.1.3/multiproject/portals-gems/apidocs/index.html
    portals/site-live/jetspeed-2/apidocs/index.html
    portals/site-live/pluto/portlet-2.0-apidocs/index.html

Modified: portals/site-live/jetspeed-2.1.3/multiproject/ant-tasks/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/ant-tasks/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/ant-tasks/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/ant-tasks/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Ant Tasks 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/demo/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/demo/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/demo/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/demo/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Demo Portlet Application 2.1.
         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: portals/site-live/jetspeed-2.1.3/multiproject/j2-admin/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/j2-admin/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/j2-admin/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/j2-admin/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Administration 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-api/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-api/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-api/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-api/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Core API 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-capability/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-capability/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-capability/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-capability/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Capability Components 2.1.3 A
         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: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-cm/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-cm/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-cm/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-cm/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Component Manager 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-commons/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-commons/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-commons/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-commons/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Portal Commons 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-components/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-components/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-components/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-components/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Components 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-deploy-tools/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-deploy-tools/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-deploy-tools/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-deploy-tools/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Deploy Tools 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-file-cache/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-file-cache/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-file-cache/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-file-cache/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 File Cache 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-header-resource/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-header-resource/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-header-resource/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-header-resource/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Header Resource Management 2.
         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: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-id-generator/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-id-generator/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-id-generator/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-id-generator/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 ID Generator 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-layout-portlets/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-layout-portlets/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-layout-portlets/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-layout-portlets/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Layout Portlets 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-locator/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-locator/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-locator/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-locator/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Template Locator 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-page-manager/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-page-manager/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-page-manager/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-page-manager/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Page Manager 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-portal-site/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-portal-site/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-portal-site/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-portal-site/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Portal Site 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-portal/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-portal/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-portal/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-portal/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Portal Components 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-portlet-factory/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-portlet-factory/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-portlet-factory/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-portlet-factory/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Portlet Factory 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-prefs/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-prefs/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-prefs/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-prefs/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Preferences SPI Components 2.
         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: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-profiler/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-profiler/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-profiler/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-profiler/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Profiler 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-rdbms/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-rdbms/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-rdbms/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-rdbms/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 RDBMS Components 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-registry/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-registry/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-registry/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-registry/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Registry Components 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-rewriter/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-rewriter/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-rewriter/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-rewriter/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Rewriter Component 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-search/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-search/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-search/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-search/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Search Component 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-security-schema/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-security-schema/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-security-schema/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-security-schema/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Security LDAP Schema Componen
         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: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-security/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-security/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-security/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-security/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Security Components 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-serializer/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-serializer/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-serializer/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-serializer/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Serializer 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-sso/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-sso/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-sso/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-sso/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Single Sign On Components 2.1
         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: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-statistics/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-statistics/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-statistics/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-statistics/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Portal Statistics Components 
         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: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-web-content/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-web-content/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-web-content/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-web-content/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Web Content 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-webapp-logging/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-webapp-logging/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-webapp-logging/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed-webapp-logging/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 WebApp Logging 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/jetspeed2-taglib-treecontrol/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/jetspeed2-taglib-treecontrol/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/jetspeed2-taglib-treecontrol/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/jetspeed2-taglib-treecontrol/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed 2 TreeControl TagLib 2.1.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;

Modified: portals/site-live/jetspeed-2.1.3/multiproject/portals-gems/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2.1.3/multiproject/portals-gems/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2.1.3/multiproject/portals-gems/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2.1.3/multiproject/portals-gems/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Apache Portals Gems 2.1.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;

Modified: portals/site-live/jetspeed-2/apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/jetspeed-2/apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/jetspeed-2/apidocs/index.html (original)
+++ portals/site-live/jetspeed-2/apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -13,6 +13,42 @@ Jetspeed-2 Core API 2.2.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: portals/site-live/pluto/portlet-2.0-apidocs/index.html
URL: http://svn.apache.org/viewvc/portals/site-live/pluto/portlet-2.0-apidocs/index.html?rev=1496568&r1=1496567&r2=1496568&view=diff
==============================================================================
--- portals/site-live/pluto/portlet-2.0-apidocs/index.html (original)
+++ portals/site-live/pluto/portlet-2.0-apidocs/index.html Tue Jun 25 18:16:21 2013
@@ -10,6 +10,42 @@ Generated Documentation (Untitled)
     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;