Repository: struts Updated Branches: refs/heads/develop 583234b8c -> cefdd16e3
Uses html instead of jsp index file as access to jsp is blocked Project: http://git-wip-us.apache.org/repos/asf/struts/repo Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/cefdd16e Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/cefdd16e Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/cefdd16e Branch: refs/heads/develop Commit: cefdd16e391a84ea0553a4a6b30f12d3a8cf7700 Parents: 583234b Author: Lukasz Lenart <lukaszlen...@apache.org> Authored: Mon Aug 25 08:56:05 2014 +0200 Committer: Lukasz Lenart <lukaszlen...@apache.org> Committed: Mon Aug 25 08:56:05 2014 +0200 ---------------------------------------------------------------------- apps/showcase/src/main/webapp/index.html | 10 ++++++++++ apps/showcase/src/main/webapp/index.jsp | 1 - 2 files changed, 10 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/struts/blob/cefdd16e/apps/showcase/src/main/webapp/index.html ---------------------------------------------------------------------- diff --git a/apps/showcase/src/main/webapp/index.html b/apps/showcase/src/main/webapp/index.html new file mode 100644 index 0000000..402dd76 --- /dev/null +++ b/apps/showcase/src/main/webapp/index.html @@ -0,0 +1,10 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> +<html> +<head> + <META HTTP-EQUIV="Refresh" CONTENT="0;URL=index.action"> +</head> + +<body> +<p>Loading ...</p> +</body> +</html> http://git-wip-us.apache.org/repos/asf/struts/blob/cefdd16e/apps/showcase/src/main/webapp/index.jsp ---------------------------------------------------------------------- diff --git a/apps/showcase/src/main/webapp/index.jsp b/apps/showcase/src/main/webapp/index.jsp deleted file mode 100644 index 391e002..0000000 --- a/apps/showcase/src/main/webapp/index.jsp +++ /dev/null @@ -1 +0,0 @@ -<% response.sendRedirect("showcase.action"); %>