From 0af022a827becb32bb6132bd505efffd350de242 Mon Sep 17 00:00:00 2001 From: Young Gyu Park Date: Tue, 27 Feb 2018 12:32:50 +0900 Subject: GCS zip log file viewer by unarchiving the file. Test: Tested with browser on GAE(go/vts-web-staging/show_gcs_log) Bug: 73900965 Change-Id: I65d2ea816a8327e333f2e818e2af19a0989e6b63 --- src/main/webapp/WEB-INF/appengine-web.xml | 1 + src/main/webapp/WEB-INF/jsp/error_msg.jsp | 38 +++++++++++++++ src/main/webapp/WEB-INF/jsp/show_gcs_log.jsp | 73 ++++++++++++++++++++++++++-- 3 files changed, 109 insertions(+), 3 deletions(-) create mode 100644 src/main/webapp/WEB-INF/jsp/error_msg.jsp (limited to 'src/main/webapp') diff --git a/src/main/webapp/WEB-INF/appengine-web.xml b/src/main/webapp/WEB-INF/appengine-web.xml index 4023fb1..fed561d 100644 --- a/src/main/webapp/WEB-INF/appengine-web.xml +++ b/src/main/webapp/WEB-INF/appengine-web.xml @@ -16,6 +16,7 @@ true true java8 + F4_1G diff --git a/src/main/webapp/WEB-INF/jsp/error_msg.jsp b/src/main/webapp/WEB-INF/jsp/error_msg.jsp new file mode 100644 index 0000000..13e6657 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/error_msg.jsp @@ -0,0 +1,38 @@ +<%-- + ~ Copyright (c) 2018 Google Inc. All Rights Reserved. + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); you + ~ may not use this file except in compliance with the License. You may + ~ obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + ~ implied. See the License for the specific language governing + ~ permissions and limitations under the License. + --%> +<%@ page contentType='text/html;charset=UTF-8' language='java' %> +<%@ taglib prefix='fn' uri='http://java.sun.com/jsp/jstl/functions' %> +<%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core'%> + + + +<%@ include file='header.jsp' %> + + +
+ +
+ +

+
+ +
+
+ +
+<%@ include file='footer.jsp' %> + + diff --git a/src/main/webapp/WEB-INF/jsp/show_gcs_log.jsp b/src/main/webapp/WEB-INF/jsp/show_gcs_log.jsp index 5c175ea..8bdf416 100644 --- a/src/main/webapp/WEB-INF/jsp/show_gcs_log.jsp +++ b/src/main/webapp/WEB-INF/jsp/show_gcs_log.jsp @@ -27,9 +27,42 @@ @@ -55,7 +88,7 @@

File List

- +

@@ -64,6 +97,40 @@
+ <%@ include file="footer.jsp" %> + + + + + + -- cgit v1.2.3