From 210aa9e694b96b2458f767c15cab99a280e58d65 Mon Sep 17 00:00:00 2001 From: awnuk Date: Fri, 19 Feb 2010 01:44:01 +0000 Subject: Fixed bugzilla bug #549879. git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@992 c9f7a03b-bd48-0410-a16d-cbbf54688b0b --- .../ca-ui/shared/webapps/ca/agent/ca/toUpdateCRL.template | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pki/dogtag/ca-ui/shared/webapps/ca/agent/ca/toUpdateCRL.template b/pki/dogtag/ca-ui/shared/webapps/ca/agent/ca/toUpdateCRL.template index e134c3918..2304d0dc6 100644 --- a/pki/dogtag/ca-ui/shared/webapps/ca/agent/ca/toUpdateCRL.template +++ b/pki/dogtag/ca-ui/shared/webapps/ca/agent/ca/toUpdateCRL.template @@ -169,6 +169,7 @@ var crlNumber; var deltaNumber; var crlSize; var deltaSize; +var crlTesting; var recentChanges; if (result.header.crlIssuingPoints != null && @@ -213,6 +214,13 @@ if (result.header.deltaSizes != null && deltaSize = null; } +if (result.header.crlTesting != null && + result.header.crlTesting.length > 0) { + crlTesting = result.header.crlTesting.split('+'); +} else { + crlTesting = null; +} + if (result.header.recentChanges != null && result.header.recentChanges.length > 0) { recentChanges = result.header.recentChanges.split('+'); @@ -331,6 +339,11 @@ if (issuingPoint != null && issuingPoint.length > 0) { } document.writeln(''); document.writeln(''); + if (crlTesting[i] == '1') { + document.writeln(''); + } else { + document.writeln(''); + } document.writeln(''); if (crlNumber[i] == '0' && crlSize[i] == '-1') { document.writeln('CRL is not built'); -- cgit