summaryrefslogtreecommitdiffstats
path: root/dogtag/ra-ui/shared/docroot/ra/admin/console/config/wizard.vm
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2012-11-21 13:28:22 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2012-11-22 02:43:58 -0500
commit35f3501366829e4e5a02e67422c00c44aa178a2f (patch)
tree7be89b332bcba9be3ea152f23f2a56f25e28c39e /dogtag/ra-ui/shared/docroot/ra/admin/console/config/wizard.vm
parentcd3335aef8bdc9bb472658189d91fa265f2fda82 (diff)
downloadpki-35f3501366829e4e5a02e67422c00c44aa178a2f.tar.gz
pki-35f3501366829e4e5a02e67422c00c44aa178a2f.tar.xz
pki-35f3501366829e4e5a02e67422c00c44aa178a2f.zip
Reorganized RA templates.
The templates and JS scripts in RA them package have been moved into the RA core package. Ticket #407
Diffstat (limited to 'dogtag/ra-ui/shared/docroot/ra/admin/console/config/wizard.vm')
-rw-r--r--dogtag/ra-ui/shared/docroot/ra/admin/console/config/wizard.vm144
1 files changed, 0 insertions, 144 deletions
diff --git a/dogtag/ra-ui/shared/docroot/ra/admin/console/config/wizard.vm b/dogtag/ra-ui/shared/docroot/ra/admin/console/config/wizard.vm
deleted file mode 100644
index 4c7472817..000000000
--- a/dogtag/ra-ui/shared/docroot/ra/admin/console/config/wizard.vm
+++ /dev/null
@@ -1,144 +0,0 @@
-<!-- --- BEGIN COPYRIGHT BLOCK ---
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; version 2 of the License.
-
- This program 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 General Public License for more details.
-
- You should have received a copy of the GNU General Public License along
- with this program; 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 --- -->
-
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-
-<html>
- <head>
-
- <title>Dogtag Certificate System</title>
-
- <link rel="shortcut icon" href="/pki/images/favicon.ico" />
- <link rel="stylesheet" href="/pki/css/pki-base.css" type="text/css" />
-
- <META http-equiv=Content-Type content="text/html; charset=UTF-8">
-
- </head>
-
-<SCRIPT LANGUAGE="JavaScript">
-function process(fop) {
- with (document.forms[0]) {
- op.value = fop;
- if (fop == 'next') {
- document.getElementById('progress').style.visibility = "visible";
- performPanel();
- } else if (fop == 'apply') {
- document.getElementById('progress').style.visibility = "visible";
- performPanel();
- } else {
- document.getElementById('progress').style.visibility = "visible";
- submit();
- }
- }
-}
-
-</SCRIPT>
-
- <body><div id="wrap">
-
-#include ( "ra/admin/console/config/header.vm" )
-
-<div id="mainNavOuter">
-<div id="mainNav">
-
-<div id="mainNavInner">
-
-
-<ul>
-<li id="mainFirst-active"><a href="wizard" class="mainFirstLink">$name</a></li>
-</ul>
-
-</div><!-- end mainNavInner -->
-</div><!-- end mainNav -->
-</div><!-- end mainNavOuter -->
-
-
-<div id="bar">
-
-<div id="systembar">
-<div id="systembarinner">
-
-<div>
-</div>
-
-
-</div>
-</div>
-
-</div>
-<!-- close bar -->
-
- <div id="content">
- <table width="100%" cellspacing="0">
- <tr>
- <td class="sidebar">
-
-<div id="sidenav">
-<ul>
-#foreach ($pn in $panels)
-#if (!$pn.isSubPanel())
- <li><center><font color=black size="2">$pn.getName()</font></center></li>
-#end
-#end
-</ul>
-</div>
-
- </td>
- <td class="page-content" width="100%">
- <h1><img src="/pki/images/icon-software.gif" />
- $title </h1>
-
-<form name=f method=post action="wizard">
-<input type=hidden name=p value="$p">
-
-#parse ( $panel )
-
-<input type=hidden name="op" value=''>
-
-</form>
-
-<table width=100% border=0 cellspacing=0 cellpadding=0>
-<tr bgcolor="#eeeeee">
-<td><img id=progress style="visibility: hidden;" src="/pki/images/bigrotation2.gif" /></td>
-<td align=right>
-
-#if ($showApplyButton == "true")
-<input type=button onclick="process('apply')" name=back value="Apply">
-#end
-
-#if ($lastpanel)
-&nbsp;
-#else
-<input type=button onclick="process('next')" name=back value="Next>">
-#end
-
-</td>
-</tr>
-</table>
-
- </td>
- </tr>
- </table>
-
-#include ( "ra/admin/console/config/footer.vm" )
-
- </div> <!-- close content -->
- </div> <!-- close wrap -->
-
- </body>
-</html>