Author: nlebas
Date: Sat Jun 22 15:26:25 2013
New Revision: 1495743
URL: http://svn.apache.org/r1495743
Log:
applied Oracle-provided patch for CVE-2013-1571
Modified:
tiles/site/publish/2.0/framework/apidocs/index.html (contents, props
changed)
tiles/site/publish/2.0/framework/testapidocs/index.html (contents, props
changed)
tiles/site/publish/2.1/framework/apidocs/index.html (contents, props
changed)
tiles/site/publish/2.1/framework/testapidocs/index.html (contents, props
changed)
tiles/site/publish/2.2/framework/apidocs/index.html (contents, props
changed)
tiles/site/publish/2.2/framework/testapidocs/index.html (contents, props
changed)
tiles/site/publish/eval/apidocs/index.html (contents, props changed)
tiles/site/publish/framework/apidocs/index.html (contents, props changed)
tiles/site/publish/framework/testapidocs/index.html (contents, props
changed)
tiles/site/publish/tiles-autotag/apidocs/index.html (contents, props
changed)
tiles/site/publish/tiles-request/apidocs/index.html (contents, props
changed)
tiles/site/publish/tiles-showcase/apidocs/index.html (contents, props
changed)
Modified: tiles/site/publish/2.0/framework/apidocs/index.html
URL:
http://svn.apache.org/viewvc/tiles/site/publish/2.0/framework/apidocs/index.html?rev=1495743&r1=1495742&r2=1495743&view=diff
==============================================================================
--- tiles/site/publish/2.0/framework/apidocs/index.html (original)
+++ tiles/site/publish/2.0/framework/apidocs/index.html Sat Jun 22 15:26:25 2013
@@ -13,6 +13,42 @@ Tiles 2 2.0.7 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;
Propchange: tiles/site/publish/2.0/framework/apidocs/index.html
------------------------------------------------------------------------------
--- svn:mergeinfo (added)
+++ svn:mergeinfo Sat Jun 22 15:26:25 2013
@@ -0,0 +1 @@
+/tiles/site/staging/2.0/framework/apidocs/index.html:1427150-1495742
Modified: tiles/site/publish/2.0/framework/testapidocs/index.html
URL:
http://svn.apache.org/viewvc/tiles/site/publish/2.0/framework/testapidocs/index.html?rev=1495743&r1=1495742&r2=1495743&view=diff
==============================================================================
--- tiles/site/publish/2.0/framework/testapidocs/index.html (original)
+++ tiles/site/publish/2.0/framework/testapidocs/index.html Sat Jun 22 15:26:25
2013
@@ -13,6 +13,42 @@ Tiles 2 2.0.7 Test API
targetPage = targetPage.substring(1);
if (targetPage.indexOf(":") != -1)
targetPage = "undefined";
+ if (targetPage != "" && !validURL(targetPage))
+ targetPage = "undefined";
+ function validURL(url) {
+ var pos = url.indexOf(".html");
+ if (pos == -1 || pos != url.length - 5)
+ return false;
+ var allowNumber = false;
+ var allowSep = false;
+ var seenDot = false;
+ for (var i = 0; i < url.length - 5; i++) {
+ var ch = url.charAt(i);
+ if ('a' <= ch && ch <= 'z' ||
+ 'A' <= ch && ch <= 'Z' ||
+ ch == '$' ||
+ ch == '_') {
+ allowNumber = true;
+ allowSep = true;
+ } else if ('0' <= ch && ch <= '9'
+ || ch == '-') {
+ if (!allowNumber)
+ return false;
+ } else if (ch == '/' || ch == '.') {
+ if (!allowSep)
+ return false;
+ allowNumber = false;
+ allowSep = false;
+ if (ch == '.')
+ seenDot = true;
+ if (ch == '/' && seenDot)
+ return false;
+ } else {
+ return false;
+ }
+ }
+ return true;
+ }
function loadFrames() {
if (targetPage != "" && targetPage != "undefined")
top.classFrame.location = top.targetPage;
Propchange: tiles/site/publish/2.0/framework/testapidocs/index.html
------------------------------------------------------------------------------
--- svn:mergeinfo (added)
+++ svn:mergeinfo Sat Jun 22 15:26:25 2013
@@ -0,0 +1 @@
+/tiles/site/staging/2.0/framework/testapidocs/index.html:1427150-1495742
Modified: tiles/site/publish/2.1/framework/apidocs/index.html
URL:
http://svn.apache.org/viewvc/tiles/site/publish/2.1/framework/apidocs/index.html?rev=1495743&r1=1495742&r2=1495743&view=diff
==============================================================================
--- tiles/site/publish/2.1/framework/apidocs/index.html (original)
+++ tiles/site/publish/2.1/framework/apidocs/index.html Sat Jun 22 15:26:25 2013
@@ -13,6 +13,42 @@ Tiles 2 2.1.4 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;
Propchange: tiles/site/publish/2.1/framework/apidocs/index.html
------------------------------------------------------------------------------
--- svn:mergeinfo (added)
+++ svn:mergeinfo Sat Jun 22 15:26:25 2013
@@ -0,0 +1 @@
+/tiles/site/staging/2.1/framework/apidocs/index.html:1427150-1495742
Modified: tiles/site/publish/2.1/framework/testapidocs/index.html
URL:
http://svn.apache.org/viewvc/tiles/site/publish/2.1/framework/testapidocs/index.html?rev=1495743&r1=1495742&r2=1495743&view=diff
==============================================================================
--- tiles/site/publish/2.1/framework/testapidocs/index.html (original)
+++ tiles/site/publish/2.1/framework/testapidocs/index.html Sat Jun 22 15:26:25
2013
@@ -13,6 +13,42 @@ Tiles 2 2.1.4 Test API
targetPage = targetPage.substring(1);
if (targetPage.indexOf(":") != -1)
targetPage = "undefined";
+ if (targetPage != "" && !validURL(targetPage))
+ targetPage = "undefined";
+ function validURL(url) {
+ var pos = url.indexOf(".html");
+ if (pos == -1 || pos != url.length - 5)
+ return false;
+ var allowNumber = false;
+ var allowSep = false;
+ var seenDot = false;
+ for (var i = 0; i < url.length - 5; i++) {
+ var ch = url.charAt(i);
+ if ('a' <= ch && ch <= 'z' ||
+ 'A' <= ch && ch <= 'Z' ||
+ ch == '$' ||
+ ch == '_') {
+ allowNumber = true;
+ allowSep = true;
+ } else if ('0' <= ch && ch <= '9'
+ || ch == '-') {
+ if (!allowNumber)
+ return false;
+ } else if (ch == '/' || ch == '.') {
+ if (!allowSep)
+ return false;
+ allowNumber = false;
+ allowSep = false;
+ if (ch == '.')
+ seenDot = true;
+ if (ch == '/' && seenDot)
+ return false;
+ } else {
+ return false;
+ }
+ }
+ return true;
+ }
function loadFrames() {
if (targetPage != "" && targetPage != "undefined")
top.classFrame.location = top.targetPage;
Propchange: tiles/site/publish/2.1/framework/testapidocs/index.html
------------------------------------------------------------------------------
--- svn:mergeinfo (added)
+++ svn:mergeinfo Sat Jun 22 15:26:25 2013
@@ -0,0 +1 @@
+/tiles/site/staging/2.1/framework/testapidocs/index.html:1427150-1495742
Modified: tiles/site/publish/2.2/framework/apidocs/index.html
URL:
http://svn.apache.org/viewvc/tiles/site/publish/2.2/framework/apidocs/index.html?rev=1495743&r1=1495742&r2=1495743&view=diff
==============================================================================
--- tiles/site/publish/2.2/framework/apidocs/index.html (original)
+++ tiles/site/publish/2.2/framework/apidocs/index.html Sat Jun 22 15:26:25 2013
@@ -13,6 +13,42 @@ Tiles 2 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;
Propchange: tiles/site/publish/2.2/framework/apidocs/index.html
------------------------------------------------------------------------------
--- svn:mergeinfo (added)
+++ svn:mergeinfo Sat Jun 22 15:26:25 2013
@@ -0,0 +1 @@
+/tiles/site/staging/2.2/framework/apidocs/index.html:1427150-1495742
Modified: tiles/site/publish/2.2/framework/testapidocs/index.html
URL:
http://svn.apache.org/viewvc/tiles/site/publish/2.2/framework/testapidocs/index.html?rev=1495743&r1=1495742&r2=1495743&view=diff
==============================================================================
--- tiles/site/publish/2.2/framework/testapidocs/index.html (original)
+++ tiles/site/publish/2.2/framework/testapidocs/index.html Sat Jun 22 15:26:25
2013
@@ -13,6 +13,42 @@ Tiles 2 2.1.3 Test API
targetPage = targetPage.substring(1);
if (targetPage.indexOf(":") != -1)
targetPage = "undefined";
+ if (targetPage != "" && !validURL(targetPage))
+ targetPage = "undefined";
+ function validURL(url) {
+ var pos = url.indexOf(".html");
+ if (pos == -1 || pos != url.length - 5)
+ return false;
+ var allowNumber = false;
+ var allowSep = false;
+ var seenDot = false;
+ for (var i = 0; i < url.length - 5; i++) {
+ var ch = url.charAt(i);
+ if ('a' <= ch && ch <= 'z' ||
+ 'A' <= ch && ch <= 'Z' ||
+ ch == '$' ||
+ ch == '_') {
+ allowNumber = true;
+ allowSep = true;
+ } else if ('0' <= ch && ch <= '9'
+ || ch == '-') {
+ if (!allowNumber)
+ return false;
+ } else if (ch == '/' || ch == '.') {
+ if (!allowSep)
+ return false;
+ allowNumber = false;
+ allowSep = false;
+ if (ch == '.')
+ seenDot = true;
+ if (ch == '/' && seenDot)
+ return false;
+ } else {
+ return false;
+ }
+ }
+ return true;
+ }
function loadFrames() {
if (targetPage != "" && targetPage != "undefined")
top.classFrame.location = top.targetPage;
Propchange: tiles/site/publish/2.2/framework/testapidocs/index.html
------------------------------------------------------------------------------
--- svn:mergeinfo (added)
+++ svn:mergeinfo Sat Jun 22 15:26:25 2013
@@ -0,0 +1 @@
+/tiles/site/staging/2.2/framework/testapidocs/index.html:1427150-1495742
Modified: tiles/site/publish/eval/apidocs/index.html
URL:
http://svn.apache.org/viewvc/tiles/site/publish/eval/apidocs/index.html?rev=1495743&r1=1495742&r2=1495743&view=diff
==============================================================================
--- tiles/site/publish/eval/apidocs/index.html (original)
+++ tiles/site/publish/eval/apidocs/index.html Sat Jun 22 15:26:25 2013
@@ -11,6 +11,42 @@
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;
Propchange: tiles/site/publish/eval/apidocs/index.html
------------------------------------------------------------------------------
svn:mergeinfo = /tiles/site/staging/eval/apidocs/index.html:1427150-1495742
Modified: tiles/site/publish/framework/apidocs/index.html
URL:
http://svn.apache.org/viewvc/tiles/site/publish/framework/apidocs/index.html?rev=1495743&r1=1495742&r2=1495743&view=diff
==============================================================================
--- tiles/site/publish/framework/apidocs/index.html (original)
+++ tiles/site/publish/framework/apidocs/index.html Sat Jun 22 15:26:25 2013
@@ -13,6 +13,42 @@ Tiles 3 3.0.1 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;
Propchange: tiles/site/publish/framework/apidocs/index.html
------------------------------------------------------------------------------
--- svn:mergeinfo (added)
+++ svn:mergeinfo Sat Jun 22 15:26:25 2013
@@ -0,0 +1 @@
+/tiles/site/staging/framework/apidocs/index.html:1427150-1495742
Modified: tiles/site/publish/framework/testapidocs/index.html
URL:
http://svn.apache.org/viewvc/tiles/site/publish/framework/testapidocs/index.html?rev=1495743&r1=1495742&r2=1495743&view=diff
==============================================================================
--- tiles/site/publish/framework/testapidocs/index.html (original)
+++ tiles/site/publish/framework/testapidocs/index.html Sat Jun 22 15:26:25 2013
@@ -13,6 +13,42 @@ Tiles 2 2.1.3 Test API
targetPage = targetPage.substring(1);
if (targetPage.indexOf(":") != -1)
targetPage = "undefined";
+ if (targetPage != "" && !validURL(targetPage))
+ targetPage = "undefined";
+ function validURL(url) {
+ var pos = url.indexOf(".html");
+ if (pos == -1 || pos != url.length - 5)
+ return false;
+ var allowNumber = false;
+ var allowSep = false;
+ var seenDot = false;
+ for (var i = 0; i < url.length - 5; i++) {
+ var ch = url.charAt(i);
+ if ('a' <= ch && ch <= 'z' ||
+ 'A' <= ch && ch <= 'Z' ||
+ ch == '$' ||
+ ch == '_') {
+ allowNumber = true;
+ allowSep = true;
+ } else if ('0' <= ch && ch <= '9'
+ || ch == '-') {
+ if (!allowNumber)
+ return false;
+ } else if (ch == '/' || ch == '.') {
+ if (!allowSep)
+ return false;
+ allowNumber = false;
+ allowSep = false;
+ if (ch == '.')
+ seenDot = true;
+ if (ch == '/' && seenDot)
+ return false;
+ } else {
+ return false;
+ }
+ }
+ return true;
+ }
function loadFrames() {
if (targetPage != "" && targetPage != "undefined")
top.classFrame.location = top.targetPage;
Propchange: tiles/site/publish/framework/testapidocs/index.html
------------------------------------------------------------------------------
--- svn:mergeinfo (added)
+++ svn:mergeinfo Sat Jun 22 15:26:25 2013
@@ -0,0 +1 @@
+/tiles/site/staging/framework/testapidocs/index.html:1427150-1495742
Modified: tiles/site/publish/tiles-autotag/apidocs/index.html
URL:
http://svn.apache.org/viewvc/tiles/site/publish/tiles-autotag/apidocs/index.html?rev=1495743&r1=1495742&r2=1495743&view=diff
==============================================================================
--- tiles/site/publish/tiles-autotag/apidocs/index.html (original)
+++ tiles/site/publish/tiles-autotag/apidocs/index.html Sat Jun 22 15:26:25 2013
@@ -13,6 +13,42 @@ Autotags 1.1.0 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;
Propchange: tiles/site/publish/tiles-autotag/apidocs/index.html
------------------------------------------------------------------------------
--- svn:mergeinfo (added)
+++ svn:mergeinfo Sat Jun 22 15:26:25 2013
@@ -0,0 +1 @@
+/tiles/site/staging/tiles-autotag/apidocs/index.html:1427150-1495742
Modified: tiles/site/publish/tiles-request/apidocs/index.html
URL:
http://svn.apache.org/viewvc/tiles/site/publish/tiles-request/apidocs/index.html?rev=1495743&r1=1495742&r2=1495743&view=diff
==============================================================================
--- tiles/site/publish/tiles-request/apidocs/index.html (original)
+++ tiles/site/publish/tiles-request/apidocs/index.html Sat Jun 22 15:26:25 2013
@@ -1,40 +1,70 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
-<!--NewPage-->
-<HTML>
-<HEAD>
-<!-- Generated by javadoc on Tue May 28 08:38:36 CEST 2013-->
-<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<TITLE>
-Tiles Request Framework 1.0.4-SNAPSHOT API
-</TITLE>
-<SCRIPT type="text/javascript">
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc on Tue Jun 04 10:41:47 CEST 2013 -->
+<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
+<title>Tiles Request Framework 1.0.4-SNAPSHOT API</title>
+<script type="text/javascript">
targetPage = "" + window.location.search;
if (targetPage != "" && targetPage != "undefined")
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;
}
-</SCRIPT>
-<NOSCRIPT>
-</NOSCRIPT>
-</HEAD>
-<FRAMESET cols="20%,80%" title="" onLoad="top.loadFrames()">
-<FRAMESET rows="30%,70%" title="" onLoad="top.loadFrames()">
-<FRAME src="overview-frame.html" name="packageListFrame" title="All Packages">
-<FRAME src="allclasses-frame.html" name="packageFrame" title="All classes and
interfaces (except non-static nested types)">
-</FRAMESET>
-<FRAME src="overview-summary.html" name="classFrame" title="Package, class and
interface descriptions" scrolling="yes">
-<NOFRAMES>
-<H2>
-Frame Alert</H2>
-
-<P>
-This document is designed to be viewed using the frames feature. If you see
this message, you are using a non-frame-capable web client.
-<BR>
-Link to<A HREF="overview-summary.html">Non-frame version.</A>
-</NOFRAMES>
-</FRAMESET>
-</HTML>
\ No newline at end of file
+</script>
+</head>
+<frameset cols="20%,80%" title="Documentation frame" onload="top.loadFrames()">
+<frameset rows="30%,70%" title="Left frames" onload="top.loadFrames()">
+<frame src="overview-frame.html" name="packageListFrame" title="All Packages">
+<frame src="allclasses-frame.html" name="packageFrame" title="All classes and
interfaces (except non-static nested types)">
+</frameset>
+<frame src="overview-summary.html" name="classFrame" title="Package, class and
interface descriptions" scrolling="yes">
+<noframes>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<h2>Frame Alert</h2>
+<p>This document is designed to be viewed using the frames feature. If you see
this message, you are using a non-frame-capable web client. Link to <a
href="overview-summary.html">Non-frame version</a>.</p>
+</noframes>
+</frameset>
+</html>
Propchange: tiles/site/publish/tiles-request/apidocs/index.html
------------------------------------------------------------------------------
--- svn:mergeinfo (added)
+++ svn:mergeinfo Sat Jun 22 15:26:25 2013
@@ -0,0 +1 @@
+/tiles/site/staging/tiles-request/apidocs/index.html:1427150-1495742
Modified: tiles/site/publish/tiles-showcase/apidocs/index.html
URL:
http://svn.apache.org/viewvc/tiles/site/publish/tiles-showcase/apidocs/index.html?rev=1495743&r1=1495742&r2=1495743&view=diff
==============================================================================
--- tiles/site/publish/tiles-showcase/apidocs/index.html (original)
+++ tiles/site/publish/tiles-showcase/apidocs/index.html Sat Jun 22 15:26:25
2013
@@ -1,37 +1,73 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
-<!--NewPage-->
-<HTML>
-<HEAD>
-<!-- Generated by javadoc on Mon Jan 15 21:12:14 MST 2007-->
-<TITLE>
-Generated Documentation (Untitled)
-</TITLE>
-<SCRIPT type="text/javascript">
- targetPage = "" + window.location.search;
- if (targetPage != "" && targetPage != "undefined")
- targetPage = targetPage.substring(1);
- function loadFrames() {
- if (targetPage != "" && targetPage != "undefined")
- top.classFrame.location = top.targetPage;
- }
-</SCRIPT>
-<NOSCRIPT>
-</NOSCRIPT>
-</HEAD>
-<FRAMESET cols="20%,80%" title="" onLoad="top.loadFrames()">
-<FRAMESET rows="30%,70%" title="" onLoad="top.loadFrames()">
-<FRAME src="overview-frame.html" name="packageListFrame" title="All Packages">
-<FRAME src="allclasses-frame.html" name="packageFrame" title="All classes and
interfaces (except non-static nested types)">
-</FRAMESET>
-<FRAME src="overview-summary.html" name="classFrame" title="Package, class and
interface descriptions" scrolling="yes">
-<NOFRAMES>
-<H2>
-Frame Alert</H2>
-
-<P>
-This document is designed to be viewed using the frames feature. If you see
this message, you are using a non-frame-capable web client.
-<BR>
-Link to<A HREF="overview-summary.html">Non-frame version.</A>
-</NOFRAMES>
-</FRAMESET>
-</HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
+<!--NewPage-->
+<HTML>
+<HEAD>
+<!-- Generated by javadoc on Mon Jan 15 21:12:14 MST 2007-->
+<TITLE>
+Generated Documentation (Untitled)
+</TITLE>
+<SCRIPT type="text/javascript">
+ 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;
+ }
+</SCRIPT>
+<NOSCRIPT>
+</NOSCRIPT>
+</HEAD>
+<FRAMESET cols="20%,80%" title="" onLoad="top.loadFrames()">
+<FRAMESET rows="30%,70%" title="" onLoad="top.loadFrames()">
+<FRAME src="overview-frame.html" name="packageListFrame" title="All Packages">
+<FRAME src="allclasses-frame.html" name="packageFrame" title="All classes and
interfaces (except non-static nested types)">
+</FRAMESET>
+<FRAME src="overview-summary.html" name="classFrame" title="Package, class and
interface descriptions" scrolling="yes">
+<NOFRAMES>
+<H2>
+Frame Alert</H2>
+
+<P>
+This document is designed to be viewed using the frames feature. If you see
this message, you are using a non-frame-capable web client.
+<BR>
+Link to<A HREF="overview-summary.html">Non-frame version.</A>
+</NOFRAMES>
+</FRAMESET>
+</HTML>
Propchange: tiles/site/publish/tiles-showcase/apidocs/index.html
------------------------------------------------------------------------------
--- svn:mergeinfo (added)
+++ svn:mergeinfo Sat Jun 22 15:26:25 2013
@@ -0,0 +1 @@
+/tiles/site/staging/tiles-showcase/apidocs/index.html:1427150-1495742