From 46fda5d944772ac62675570037785e39c517002b Mon Sep 17 00:00:00 2001 From: Endi Sukma Dewata Date: Fri, 9 Nov 2012 03:36:17 -0500 Subject: Reorganized CA, KRA, OCSP, TKS templates. All remaining theme files for Tomcat subsystems which include the templates and JS files have been moved from the theme folder at -ui/shared/webapps/ into the subsystem webapp folder at base//shared/webapps/. The deployment tools have been updated to use the new location. Ticket #407 --- base/ocsp/shared/webapps/ocsp/404.html | 146 +++++ base/ocsp/shared/webapps/ocsp/500.html | 139 +++++ .../webapps/ocsp/GenUnexpectedError.template | 68 ++ .../shared/webapps/ocsp/agent/GenError.template | 78 +++ .../shared/webapps/ocsp/agent/GenPending.template | 61 ++ .../shared/webapps/ocsp/agent/GenRejected.template | 82 +++ .../shared/webapps/ocsp/agent/GenSuccess.template | 44 ++ .../webapps/ocsp/agent/GenSvcPending.template | 61 ++ .../webapps/ocsp/agent/GenUnauthorized.template | 42 ++ .../webapps/ocsp/agent/GenUnexpectedError.template | 68 ++ base/ocsp/shared/webapps/ocsp/agent/cms-funcs.js | 539 ++++++++++++++++ base/ocsp/shared/webapps/ocsp/agent/funcs.js | 686 +++++++++++++++++++++ .../ocsp/shared/webapps/ocsp/agent/header.template | 82 +++ base/ocsp/shared/webapps/ocsp/agent/helpfun.js | 35 ++ base/ocsp/shared/webapps/ocsp/agent/index.html | 23 + base/ocsp/shared/webapps/ocsp/agent/index.template | 140 +++++ .../ocsp/shared/webapps/ocsp/agent/ocsp/AddCA.html | 69 +++ .../shared/webapps/ocsp/agent/ocsp/AddCRL.html | 82 +++ .../shared/webapps/ocsp/agent/ocsp/CheckCert.html | 69 +++ .../shared/webapps/ocsp/agent/ocsp/addCA.template | 59 ++ .../shared/webapps/ocsp/agent/ocsp/addCRL.template | 59 ++ .../webapps/ocsp/agent/ocsp/checkCert.template | 79 +++ .../shared/webapps/ocsp/agent/ocsp/frameAddCA.html | 32 + .../webapps/ocsp/agent/ocsp/frameAddCRL.html | 32 + .../webapps/ocsp/agent/ocsp/frameCheckCert.html | 32 + .../webapps/ocsp/agent/ocsp/frameListCA.html | 32 + .../shared/webapps/ocsp/agent/ocsp/frameOCSP.html | 32 + .../shared/webapps/ocsp/agent/ocsp/frameStats.html | 32 + .../webapps/ocsp/agent/ocsp/getOCSPInfo.template | 118 ++++ .../webapps/ocsp/agent/ocsp/getStats.template | 141 +++++ .../ocsp/shared/webapps/ocsp/agent/ocsp/index.html | 33 + .../webapps/ocsp/agent/ocsp/listCAs.template | 146 +++++ .../shared/webapps/ocsp/agent/ocsp/menuAddCA.html | 50 ++ .../shared/webapps/ocsp/agent/ocsp/menuAddCRL.html | 50 ++ .../webapps/ocsp/agent/ocsp/menuCheckCert.html | 50 ++ .../shared/webapps/ocsp/agent/ocsp/menuListCA.html | 50 ++ .../shared/webapps/ocsp/agent/ocsp/menuOCSP.html | 50 ++ .../shared/webapps/ocsp/agent/ocsp/menuStats.html | 54 ++ .../webapps/ocsp/agent/ocsp/removeCA.template | 65 ++ base/ocsp/shared/webapps/ocsp/agent/ports.template | 121 ++++ base/ocsp/shared/webapps/ocsp/index.html | 23 + base/ocsp/shared/webapps/ocsp/services.template | 106 ++++ 42 files changed, 3960 insertions(+) create mode 100755 base/ocsp/shared/webapps/ocsp/404.html create mode 100755 base/ocsp/shared/webapps/ocsp/500.html create mode 100644 base/ocsp/shared/webapps/ocsp/GenUnexpectedError.template create mode 100644 base/ocsp/shared/webapps/ocsp/agent/GenError.template create mode 100644 base/ocsp/shared/webapps/ocsp/agent/GenPending.template create mode 100644 base/ocsp/shared/webapps/ocsp/agent/GenRejected.template create mode 100644 base/ocsp/shared/webapps/ocsp/agent/GenSuccess.template create mode 100644 base/ocsp/shared/webapps/ocsp/agent/GenSvcPending.template create mode 100644 base/ocsp/shared/webapps/ocsp/agent/GenUnauthorized.template create mode 100644 base/ocsp/shared/webapps/ocsp/agent/GenUnexpectedError.template create mode 100644 base/ocsp/shared/webapps/ocsp/agent/cms-funcs.js create mode 100644 base/ocsp/shared/webapps/ocsp/agent/funcs.js create mode 100644 base/ocsp/shared/webapps/ocsp/agent/header.template create mode 100644 base/ocsp/shared/webapps/ocsp/agent/helpfun.js create mode 100644 base/ocsp/shared/webapps/ocsp/agent/index.html create mode 100644 base/ocsp/shared/webapps/ocsp/agent/index.template create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/AddCA.html create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/AddCRL.html create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/CheckCert.html create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/addCA.template create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/addCRL.template create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/checkCert.template create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/frameAddCA.html create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/frameAddCRL.html create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/frameCheckCert.html create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/frameListCA.html create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/frameOCSP.html create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/frameStats.html create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/getOCSPInfo.template create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/getStats.template create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/index.html create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/listCAs.template create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/menuAddCA.html create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/menuAddCRL.html create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/menuCheckCert.html create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/menuListCA.html create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/menuOCSP.html create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ocsp/menuStats.html create mode 100755 base/ocsp/shared/webapps/ocsp/agent/ocsp/removeCA.template create mode 100644 base/ocsp/shared/webapps/ocsp/agent/ports.template create mode 100644 base/ocsp/shared/webapps/ocsp/index.html create mode 100644 base/ocsp/shared/webapps/ocsp/services.template (limited to 'base/ocsp/shared') diff --git a/base/ocsp/shared/webapps/ocsp/404.html b/base/ocsp/shared/webapps/ocsp/404.html new file mode 100755 index 000000000..fd5264c43 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/404.html @@ -0,0 +1,146 @@ + + + + + + +OCSP 404 Error! + + + + + + + + + +
+ +
+
+ +
+ - +
+ + +
+
+ +
+ +Certificate System OCSP Error Page +
+

+ +

+ +

+ + + + diff --git a/base/ocsp/shared/webapps/ocsp/500.html b/base/ocsp/shared/webapps/ocsp/500.html new file mode 100755 index 000000000..2749fc752 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/500.html @@ -0,0 +1,139 @@ + + + + + + +OCSP 500 Error! + + + + + + + + + +
+ +
+
+ +
+ - +
+ + +
+
+ +
+ +Certificate System OCSP Error Page +
+

+ +

+ +

+ + + + diff --git a/base/ocsp/shared/webapps/ocsp/GenUnexpectedError.template b/base/ocsp/shared/webapps/ocsp/GenUnexpectedError.template new file mode 100644 index 000000000..824bdb9e9 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/GenUnexpectedError.template @@ -0,0 +1,68 @@ + + + + + +OCSP Processing Error! + + + + +Problem Processing Your Request + + + + + + +
 
+ + + + + + + + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/GenError.template b/base/ocsp/shared/webapps/ocsp/agent/GenError.template new file mode 100644 index 000000000..13996d5d4 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/GenError.template @@ -0,0 +1,78 @@ + + + + + +OCSP Agent Processing Error! + + + + +Problem Processing Your Request + + + + + + +
 
+ + + + + +

+Please consult your local administrator for further assistance. +The Certificate System logs may provide further information. + + + + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/GenPending.template b/base/ocsp/shared/webapps/ocsp/agent/GenPending.template new file mode 100644 index 000000000..9264d1bd0 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/GenPending.template @@ -0,0 +1,61 @@ + + + + + +OCSP Agent Request Pending + + + + + +Request Successfully Submitted + + + + + + + + + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/GenRejected.template b/base/ocsp/shared/webapps/ocsp/agent/GenRejected.template new file mode 100644 index 000000000..5e5155541 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/GenRejected.template @@ -0,0 +1,82 @@ + + + + + +OCSP Agent Request Rejected + + + + +Request Rejected + + + + + + + + + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/GenSuccess.template b/base/ocsp/shared/webapps/ocsp/agent/GenSuccess.template new file mode 100644 index 000000000..9d9022b2b --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/GenSuccess.template @@ -0,0 +1,44 @@ + + + + + + +OCSP Agent Generic Request Success + + + + +Request Successfully Submited + + + + + + + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/GenSvcPending.template b/base/ocsp/shared/webapps/ocsp/agent/GenSvcPending.template new file mode 100644 index 000000000..248f3e592 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/GenSvcPending.template @@ -0,0 +1,61 @@ + + + + + +OCSP Agent Request Svc Pending + + + + +Request Successfully Submitted + + + + + + + + + + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/GenUnauthorized.template b/base/ocsp/shared/webapps/ocsp/agent/GenUnauthorized.template new file mode 100644 index 000000000..af2aede06 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/GenUnauthorized.template @@ -0,0 +1,42 @@ + + + + + + +OCSP Agent Generic Unauthorized + + + + +Unauthorized Access + + + + + + + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/GenUnexpectedError.template b/base/ocsp/shared/webapps/ocsp/agent/GenUnexpectedError.template new file mode 100644 index 000000000..a929c760f --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/GenUnexpectedError.template @@ -0,0 +1,68 @@ + + + + + +OCSP Agent Processing Error! + + + + +Problem Processing Your Request + + + + + + +
 
+ + + + + + + + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/cms-funcs.js b/base/ocsp/shared/webapps/ocsp/agent/cms-funcs.js new file mode 100644 index 000000000..473fb1795 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/cms-funcs.js @@ -0,0 +1,539 @@ +// --- 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 --- + + +// + + + + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/funcs.js b/base/ocsp/shared/webapps/ocsp/agent/funcs.js new file mode 100644 index 000000000..daef83d17 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/funcs.js @@ -0,0 +1,686 @@ +// --- 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 --- + +// diff --git a/base/ocsp/shared/webapps/ocsp/agent/header.template b/base/ocsp/shared/webapps/ocsp/agent/header.template new file mode 100644 index 000000000..d1221b14b --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/header.template @@ -0,0 +1,82 @@ + + + + + +Header + + + + + + + + +
+ + + + + + +
     Dogtag® Agent Services
+ + + + + +
+
+ + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/helpfun.js b/base/ocsp/shared/webapps/ocsp/agent/helpfun.js new file mode 100644 index 000000000..14a80bb95 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/helpfun.js @@ -0,0 +1,35 @@ +// --- 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 --- + +function help(helptopic) { + + var HelpWin=window.open("","MyWin", "toolbar=no,directories=no,menubar=no,status=no,scrollbars=yes,resizable=yes,width=500,height=500"); + + HelpWin.location = helptopic; + HelpWin.focus(); + +} + +function helpstatus(helpline) { + + window.status = helpline; + + return true; + +} + diff --git a/base/ocsp/shared/webapps/ocsp/agent/index.html b/base/ocsp/shared/webapps/ocsp/agent/index.html new file mode 100644 index 000000000..30662d47a --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/index.html @@ -0,0 +1,23 @@ + + + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/index.template b/base/ocsp/shared/webapps/ocsp/agent/index.template new file mode 100644 index 000000000..be2c39d9e --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/index.template @@ -0,0 +1,140 @@ + + + + + +OCSP Agent + + + + + + + + + + +
+ + + + + + +
     Dogtag® Agent Services
+
  + + + + + + + +
  
+ + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/AddCA.html b/base/ocsp/shared/webapps/ocsp/agent/ocsp/AddCA.html new file mode 100644 index 000000000..43f2503a1 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/AddCA.html @@ -0,0 +1,69 @@ + + + + +Add Certificate Authority + + + + + +Add Certificate Authority
+ +Use this form to add the certificate chain of a Certificate Authority whose CRL will be accepted by this OCSP Authority. + + + + +
 
+ +
+ + + + + + + + +
+ Base 64 encoded certificate (including header and footer): +
+ +
+ +

+
+ + + + +
+ + +
+ +

+ + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/AddCRL.html b/base/ocsp/shared/webapps/ocsp/agent/ocsp/AddCRL.html new file mode 100644 index 000000000..4a6878a00 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/AddCRL.html @@ -0,0 +1,82 @@ + + + + +Add Certificate Revocation List + + + + + +Add Certificate Revocation List
+ +Use this form to add the certificate revocation list of a Certificate Authority. + + + + +
 
+ +
+ + + + + + + + + + + + + + + + +
+ Base 64 encoded Certificate revocation list (including header and footer): +
+ +
+ + +
+
+
+ +

+
+ + + + +
+ + +
+ +

+ + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/CheckCert.html b/base/ocsp/shared/webapps/ocsp/agent/ocsp/CheckCert.html new file mode 100644 index 000000000..ca15f1404 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/CheckCert.html @@ -0,0 +1,69 @@ + + + + +Check Certificate Status + + + + + +Check Certificate Status
+ +Use this form to confirm the status of a certificate. + + + + +
 
+ +
+ + + + + + + + +
+ Base 64 encoded certificate: +
+ +
+ +

+
+ + + + +
+ + +
+ +

+ + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/addCA.template b/base/ocsp/shared/webapps/ocsp/agent/ocsp/addCA.template new file mode 100644 index 000000000..3205ee0b9 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/addCA.template @@ -0,0 +1,59 @@ + + + + + Adding Certificate Authority + + + + + + + + + + +Adding Certificate Authority +
+ + + + +
 
+
+ + + + + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/addCRL.template b/base/ocsp/shared/webapps/ocsp/agent/ocsp/addCRL.template new file mode 100644 index 000000000..99f227c47 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/addCRL.template @@ -0,0 +1,59 @@ + + + + + Adding Certificate Revocation List + + + + + + + + + + +Adding Certificate Revocation List +
+ + + + +
 
+
+ + + + + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/checkCert.template b/base/ocsp/shared/webapps/ocsp/agent/ocsp/checkCert.template new file mode 100644 index 000000000..5e8b8938c --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/checkCert.template @@ -0,0 +1,79 @@ + + + + + Check Certificate Status + + + + + + + + + + +Online Certificate Status +
+ + + + +
 
+
+ + + + + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/frameAddCA.html b/base/ocsp/shared/webapps/ocsp/agent/ocsp/frameAddCA.html new file mode 100644 index 000000000..afb888caf --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/frameAddCA.html @@ -0,0 +1,32 @@ + + + + +Untitled Document + + + + + + + +<body bgcolor="#FFFFFF"> +</body> + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/frameAddCRL.html b/base/ocsp/shared/webapps/ocsp/agent/ocsp/frameAddCRL.html new file mode 100644 index 000000000..28be03545 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/frameAddCRL.html @@ -0,0 +1,32 @@ + + + + +Untitled Document + + + + + + + +<body bgcolor="#FFFFFF"> +</body> + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/frameCheckCert.html b/base/ocsp/shared/webapps/ocsp/agent/ocsp/frameCheckCert.html new file mode 100644 index 000000000..21335c8a0 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/frameCheckCert.html @@ -0,0 +1,32 @@ + + + + +Untitled Document + + + + + + + +<body bgcolor="#FFFFFF"> +</body> + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/frameListCA.html b/base/ocsp/shared/webapps/ocsp/agent/ocsp/frameListCA.html new file mode 100644 index 000000000..90530fd42 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/frameListCA.html @@ -0,0 +1,32 @@ + + + + +Untitled Document + + + + + + + +<body bgcolor="#FFFFFF"> +</body> + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/frameOCSP.html b/base/ocsp/shared/webapps/ocsp/agent/ocsp/frameOCSP.html new file mode 100644 index 000000000..00fad0f36 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/frameOCSP.html @@ -0,0 +1,32 @@ + + + + +Untitled Document + + + + + + + +<body bgcolor="#FFFFFF"> +</body> + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/frameStats.html b/base/ocsp/shared/webapps/ocsp/agent/ocsp/frameStats.html new file mode 100644 index 000000000..8efa27a78 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/frameStats.html @@ -0,0 +1,32 @@ + + + + +Untitled Document + + + + + + + +<body bgcolor="#FFFFFF"> +</body> + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/getOCSPInfo.template b/base/ocsp/shared/webapps/ocsp/agent/ocsp/getOCSPInfo.template new file mode 100644 index 000000000..9a2769777 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/getOCSPInfo.template @@ -0,0 +1,118 @@ + + + + + Display CRL + + + + + + + + + + +OCSP Service +
+ + + + +
 
+
+ + + + + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/getStats.template b/base/ocsp/shared/webapps/ocsp/agent/ocsp/getStats.template new file mode 100644 index 000000000..59ae3e6d3 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/getStats.template @@ -0,0 +1,141 @@ + + + + + Display CRL + + + + + + + + + + +Statistics +
+ + + + +
 
+
+ + + + + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/index.html b/base/ocsp/shared/webapps/ocsp/agent/ocsp/index.html new file mode 100644 index 000000000..b94135258 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/index.html @@ -0,0 +1,33 @@ + + + + +OCSP Agent + + + + + + + + +<body bgcolor="#FFFFFF"> +</body> + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/listCAs.template b/base/ocsp/shared/webapps/ocsp/agent/ocsp/listCAs.template new file mode 100644 index 000000000..93cc6cdf3 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/listCAs.template @@ -0,0 +1,146 @@ + + + + + List Certificate Authorities + + + + + + + + + + +List Certificate Authorities +
+ + + + +
 
+
+ + + + + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/menuAddCA.html b/base/ocsp/shared/webapps/ocsp/agent/ocsp/menuAddCA.html new file mode 100644 index 000000000..6b4419f78 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/menuAddCA.html @@ -0,0 +1,50 @@ + + + + +Untitled Document + + + + + + + + + + + + + + + + + + + + +
+ List Certificate Authorities
+ Add Certificate Authority
+ Add Certificate Revocation List
+ Check Certificate Status
+ OCSP Service
+ + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/menuAddCRL.html b/base/ocsp/shared/webapps/ocsp/agent/ocsp/menuAddCRL.html new file mode 100644 index 000000000..7da3025e3 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/menuAddCRL.html @@ -0,0 +1,50 @@ + + + + +Untitled Document + + + + + + + + + + + + + + + + + + + + +
+ List Certificate Authorities
+ Add Certificate Authority
+ Add Certificate Revocation List
+ Check Certificate Status
+ OCSP Service
+ + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/menuCheckCert.html b/base/ocsp/shared/webapps/ocsp/agent/ocsp/menuCheckCert.html new file mode 100644 index 000000000..2e4773a28 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/menuCheckCert.html @@ -0,0 +1,50 @@ + + + + +Untitled Document + + + + + + + + + + + + + + + + + + + + +
+ List Certificate Authorities
+ Add Certificate Authority
+ Add Certificate Revocation List
+ Check Certificate Status
+ OCSP Service
+ + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/menuListCA.html b/base/ocsp/shared/webapps/ocsp/agent/ocsp/menuListCA.html new file mode 100644 index 000000000..ac99b752a --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/menuListCA.html @@ -0,0 +1,50 @@ + + + + +Untitled Document + + + + + + + + + + + + + + + + + + + + +
+ List Certificate Authorities
+ Add Certificate Authority
+ Add Certificate Revocation List
+ Check Certificate Status
+ OCSP Service
+ + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/menuOCSP.html b/base/ocsp/shared/webapps/ocsp/agent/ocsp/menuOCSP.html new file mode 100644 index 000000000..b019fe81f --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/menuOCSP.html @@ -0,0 +1,50 @@ + + + + +Untitled Document + + + + + + + + + + + + + + + + + + + + +
+ List Certificate Authorities
+ Add Certificate Authority
+ Add Certificate Revocation List
+ Check Certificate Status
+ OCSP Service
+ + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/menuStats.html b/base/ocsp/shared/webapps/ocsp/agent/ocsp/menuStats.html new file mode 100644 index 000000000..f86dd059e --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/menuStats.html @@ -0,0 +1,54 @@ + + + + +Untitled Document + + + + + + + + + + + + + + + + + + + + + + + +
+ List Certificate Authorities
+ Add Certificate Authority
+ Add Certificate Revocation List
+ Check Certificate Status
+ OCSP Service
+ Statistics
+ + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ocsp/removeCA.template b/base/ocsp/shared/webapps/ocsp/agent/ocsp/removeCA.template new file mode 100755 index 000000000..7da892454 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ocsp/removeCA.template @@ -0,0 +1,65 @@ + + + + + Removing Certificate Authority + + + + + + + + + + +Removing Certificate Authority +
+ + + + +
 
+
+ + + + + + diff --git a/base/ocsp/shared/webapps/ocsp/agent/ports.template b/base/ocsp/shared/webapps/ocsp/agent/ports.template new file mode 100644 index 000000000..8413ada1b --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/agent/ports.template @@ -0,0 +1,121 @@ + + + + + +OCSP Agent Ports + + + + + + + + + + + + + +
+ + + + + + +
     Dogtag® Services Summary
+
  + + + + + + + + + + +
  
  
+
 
+ + diff --git a/base/ocsp/shared/webapps/ocsp/index.html b/base/ocsp/shared/webapps/ocsp/index.html new file mode 100644 index 000000000..30662d47a --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/index.html @@ -0,0 +1,23 @@ + + + + diff --git a/base/ocsp/shared/webapps/ocsp/services.template b/base/ocsp/shared/webapps/ocsp/services.template new file mode 100644 index 000000000..4b4511889 --- /dev/null +++ b/base/ocsp/shared/webapps/ocsp/services.template @@ -0,0 +1,106 @@ + + + + +OCSP Services + + + + + + + + + + + + +
+ +
+
+ +
+ - +
+ + +
+
+ +
+ + + +Certificate System OCSP Services Page +
+

+ +

+

+ + + + + + + + + + +
  
  
+
+ + + -- cgit