From 9015d0d86d23a83e578ded1bd95485d467515208 Mon Sep 17 00:00:00 2001 From: "Christopher Lott (cl778h)" Date: Thu, 17 Aug 2017 14:52:44 -0400 Subject: Publish seed code for the OOM Dashboard First open-source release of the ONAP Operations Manager Dashboard web application. Issue: CCSDK-61 Change-Id: I902f789692d76ee583aa967682e39f03b6578fe9 Signed-off-by: Christopher Lott (cl778h) --- ecd-app-overlay/src/main/webapp/manifest.jsp | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 ecd-app-overlay/src/main/webapp/manifest.jsp (limited to 'ecd-app-overlay/src/main/webapp/manifest.jsp') diff --git a/ecd-app-overlay/src/main/webapp/manifest.jsp b/ecd-app-overlay/src/main/webapp/manifest.jsp new file mode 100644 index 0000000..417825f --- /dev/null +++ b/ecd-app-overlay/src/main/webapp/manifest.jsp @@ -0,0 +1,28 @@ +<%@ 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(); +%> + + + + +Manifest + + +

+Contents of file <%= path %>: +

+
+<%= manifest %>
+
+ + -- cgit