aboutsummaryrefslogtreecommitdiffstats
path: root/vid/src/main/webapp/manifest.jsp
diff options
context:
space:
mode:
authorjimmydot <jf2512@att.com>2017-05-07 14:58:24 -0400
committerjimmydot <jf2512@att.com>2017-05-07 14:58:24 -0400
commit3982f4f67314ec37fd9b22ae54049958af777c1b (patch)
tree72111b7c13ee7529cce1ea4c8d83c89fdd164450 /vid/src/main/webapp/manifest.jsp
parent00e0d25933699f9e39c3f0b86c983165a1e3e330 (diff)
[VID-6] Initial rebase push
Change-Id: I9077be9663754d9b22f77c6a7b3109b361b39346 Signed-off-by: jimmydot <jf2512@att.com>
Diffstat (limited to 'vid/src/main/webapp/manifest.jsp')
-rw-r--r--vid/src/main/webapp/manifest.jsp28
1 files changed, 0 insertions, 28 deletions
diff --git a/vid/src/main/webapp/manifest.jsp b/vid/src/main/webapp/manifest.jsp
deleted file mode 100644
index 417825fa2..000000000
--- a/vid/src/main/webapp/manifest.jsp
+++ /dev/null
@@ -1,28 +0,0 @@
-<%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
-<%
- // Read contents of maven-generated manifest file.
- final String path = "/META-INF/MANIFEST.MF";
- java.io.InputStream input = getServletContext().getResourceAsStream(path);
- java.io.InputStreamReader reader = new java.io.InputStreamReader(input, "UTF-8");
- char [] buf = new char[1024];
- int length = reader.read(buf, 0, buf.length);
- final String manifest = new String(buf, 0, length);
- reader.close();
- input.close();
-%>
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Manifest</title>
-</head>
-<body>
-<h2>
-Contents of file <%= path %>:
-</h2>
-<pre>
-<%= manifest %>
-</pre>
-</body>
-</html>