summaryrefslogtreecommitdiffstats
path: root/pki/linux/tps-ui/shared/docroot/tps/admin/console/config/certchainpanel.vm
diff options
context:
space:
mode:
Diffstat (limited to 'pki/linux/tps-ui/shared/docroot/tps/admin/console/config/certchainpanel.vm')
-rw-r--r--pki/linux/tps-ui/shared/docroot/tps/admin/console/config/certchainpanel.vm49
1 files changed, 49 insertions, 0 deletions
diff --git a/pki/linux/tps-ui/shared/docroot/tps/admin/console/config/certchainpanel.vm b/pki/linux/tps-ui/shared/docroot/tps/admin/console/config/certchainpanel.vm
new file mode 100644
index 000000000..382fd87a1
--- /dev/null
+++ b/pki/linux/tps-ui/shared/docroot/tps/admin/console/config/certchainpanel.vm
@@ -0,0 +1,49 @@
+<!-- --- BEGIN COPYRIGHT BLOCK ---
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA
+
+ Copyright (C) 2007 Red Hat, Inc.
+ All rights reserved.
+ --- END COPYRIGHT BLOCK --- -->
+<SCRIPT type="text/JavaScript">
+function myOnLoad() {
+}
+
+function performPanel() {
+ with (document.forms[0]) {
+ submit();
+ }
+}
+</SCRIPT>
+<b>Pretty Print of Certificates on this subsystem.
+<p>
+#foreach ($item in $ppcerts)
+<H2>$item.getDN()</H2>
+<table width=100%>
+<tr bgcolor="#cccccc">
+ <td width=20%><b>Certificate: $item.getNickname()</b></td>
+</tr>
+
+<tr>
+ <td><textarea rows=24 cols=80 wrap="virtual" name=$item.getCertTag()>$item.getCertpp()</textarea></td>
+</tr>
+</table>
+#end
+
+ <br/>
+
+ <div align="right">
+ <hr />
+ &nbsp;
+ </div>