summaryrefslogtreecommitdiffstats
path: root/base/tps/forms/esc/cgi-bin/home/index.cgi
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2012-11-21 14:30:45 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2012-11-27 17:08:40 -0500
commit37070d5ad487bc6ff7e9ddaf6ac403c1a7f85121 (patch)
treec46789191bb53c247621c559d971efa280a7d49a /base/tps/forms/esc/cgi-bin/home/index.cgi
parentff39b488db3fa2a57af8438f7b0e66f83e1230a0 (diff)
downloadpki-37070d5ad487bc6ff7e9ddaf6ac403c1a7f85121.tar.gz
pki-37070d5ad487bc6ff7e9ddaf6ac403c1a7f85121.tar.xz
pki-37070d5ad487bc6ff7e9ddaf6ac403c1a7f85121.zip
Reorganized TPS templates and scripts.
The templates, JS, and CGI scripts for TPS have been moved into the TPS core package. Removed unused cfg.pl. Ticket #407
Diffstat (limited to 'base/tps/forms/esc/cgi-bin/home/index.cgi')
-rwxr-xr-xbase/tps/forms/esc/cgi-bin/home/index.cgi51
1 files changed, 0 insertions, 51 deletions
diff --git a/base/tps/forms/esc/cgi-bin/home/index.cgi b/base/tps/forms/esc/cgi-bin/home/index.cgi
deleted file mode 100755
index 1e54a8354..000000000
--- a/base/tps/forms/esc/cgi-bin/home/index.cgi
+++ /dev/null
@@ -1,51 +0,0 @@
-#!/usr/bin/perl
-#
-# --- 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;
-# version 2.1 of the License.
-#
-# 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 ---
-#
-#
-#
-#
-print "Content-type: text/xml\n\n";
-print "<\?xml version=\"1.0\" encoding=\"UTF-8\"\?>";
-print "<ServiceInfo>";
-print "<IssuerName>";
-print "Fedora Project"; # Vendor
-print "</IssuerName>\n";
-print "<Services>";
-print "<Operation>";
-print "http://[SERVER_NAME]:[PORT]/nk_service";
-print "</Operation>";
-print "<UI>";
-print "http://[SERVER_NAME]:[PORT]/cgi-bin/home/enroll.cgi";
-print "</UI>";
-print "<EnrolledTokenBrowserURL>";
-print "http://www.fedora.redhat.com"; # Company URL
-print "</EnrolledTokenBrowserURL>";
-print "<EnrolledTokenURL>";
-print "</EnrolledTokenURL>";
-print "<TokenType>";
-print "userKey";
-print "</TokenType>";
-#print "<CAChainUI>";
-#print "http://[SERVER_NAME]:[PORT]/cgi-bin/home/cachain.cgi";
-#print "</CAChainUI>";
-print "</Services>";
-print "</ServiceInfo>";