diff options
author | Endi Sukma Dewata <edewata@redhat.com> | 2010-10-15 20:51:52 -0400 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2010-10-18 14:22:07 -0400 |
commit | 267e803cdfdb410cd00ba1e8435379b7112c057f (patch) | |
tree | 4d6c860b584bec5635d6f44e0295e4d4aa789e5d /install/static/certificate.js | |
parent | c2a2ffbe69c395724506f4dec7c1cdca94d8d735 (diff) | |
download | freeipa-267e803cdfdb410cd00ba1e8435379b7112c057f.tar.gz freeipa-267e803cdfdb410cd00ba1e8435379b7112c057f.tar.xz freeipa-267e803cdfdb410cd00ba1e8435379b7112c057f.zip |
Service certificate status.
The service details page has been modified to show certificate
status using bullets. It will also show the revocation reason,
and display the restore button only if the certificate is on
hold. The buttons action handlers have been moved into
service_usercertificate_load() so they can update the bullets.
A test data file for cert-show operation has been added. Other
test data files containing certificate info has been updated for
consistency.
The certificate_confirmation_dialog() has been removed because
it's no longer used.
Diffstat (limited to 'install/static/certificate.js')
-rwxr-xr-x | install/static/certificate.js | 78 |
1 files changed, 35 insertions, 43 deletions
diff --git a/install/static/certificate.js b/install/static/certificate.js index 4302e2f81..a688fe811 100755 --- a/install/static/certificate.js +++ b/install/static/certificate.js @@ -53,38 +53,15 @@ function certificate_parse_dn(dn) { return result; } -function certificate_confirmation_dialog(spec) { - var that = {}; - spec = spec || {}; - - var dialog = $('<div/>', { - 'title': spec.title - }); - - dialog.append(spec.message); - - that.open = function() { - dialog.dialog({ - modal: true, - width: 300, - height: 150, - buttons: { - 'Close': function() { - dialog.dialog('destroy'); - } - } - }); - }; - - return that; -} - function certificate_get_dialog(spec) { var that = {}; spec = spec || {}; + that.title = spec.title || ''; + that.usercertificate = spec.usercertificate || ''; + var dialog = $('<div/>', { - 'title': spec.title + 'title': that.title }); var textarea = $('<textarea/>', { @@ -94,7 +71,7 @@ function certificate_get_dialog(spec) { textarea.val( BEGIN_CERTIFICATE_REQUEST+'\n'+ - spec.usercertificate+'\n'+ + that.usercertificate+'\n'+ END_CERTIFICATE_REQUEST ); @@ -118,8 +95,11 @@ function certificate_revoke_dialog(spec) { var that = {}; spec = spec || {}; + that.title = spec.title || ''; + that.revoke = spec.revoke; + var dialog = $('<div/>', { - 'title': spec.title + 'title': that.title }); var table = $('<table/>').appendTo(dialog); @@ -160,8 +140,8 @@ function certificate_revoke_dialog(spec) { 'Revoke': function() { var values = {}; values['reason'] = select.val(); - if (spec.revoke) { - spec.revoke(values); + if (that.revoke) { + that.revoke(values); } dialog.dialog('destroy'); }, @@ -179,8 +159,11 @@ function certificate_restore_dialog(spec) { var that = {}; spec = spec || {}; + that.title = spec.title || ''; + that.restore = spec.restore; + var dialog = $('<div/>', { - 'title': spec.title + 'title': that.title }); dialog.append( @@ -195,8 +178,8 @@ function certificate_restore_dialog(spec) { buttons: { 'Restore': function() { var values = {}; - if (spec.restore) { - spec.restore(values); + if (that.restore) { + that.restore(values); } dialog.dialog('destroy'); }, @@ -214,11 +197,17 @@ function certificate_view_dialog(spec) { var that = {}; spec = spec || {}; + that.title = spec.title || ''; that.subject = certificate_parse_dn(spec.subject); + that.serial_number = spec.serial_number || ''; that.issuer = certificate_parse_dn(spec.issuer); + that.issued_on = spec.issued_on || ''; + that.expires_on = spec.expires_on || ''; + that.md5_fingerprint = spec.md5_fingerprint || ''; + that.sha1_fingerprint = spec.sha1_fingerprint || ''; var dialog = $('<div/>', { - 'title': spec.title + 'title': that.title }); var table = $('<table/>').appendTo(dialog); @@ -250,7 +239,7 @@ function certificate_view_dialog(spec) { tr = $('<tr/>').appendTo(table); $('<td>Serial Number:</td>').appendTo(tr); $('<td/>', { - 'html': spec.serial_number + 'html': that.serial_number }).appendTo(tr); tr = $('<tr/>').appendTo(table); @@ -286,13 +275,13 @@ function certificate_view_dialog(spec) { tr = $('<tr/>').appendTo(table); $('<td>Issued On:</td>').appendTo(tr); $('<td/>', { - 'html': spec.issued_on + 'html': that.issued_on }).appendTo(tr); tr = $('<tr/>').appendTo(table); $('<td>Expires On:</td>').appendTo(tr); $('<td/>', { - 'html': spec.expires_on + 'html': that.expires_on }).appendTo(tr); tr = $('<tr/>').appendTo(table); @@ -304,13 +293,13 @@ function certificate_view_dialog(spec) { tr = $('<tr/>').appendTo(table); $('<td>SHA1 Fingerprint:</td>').appendTo(tr); $('<td/>', { - 'html': spec.sha1_fingerprint + 'html': that.sha1_fingerprint }).appendTo(tr); tr = $('<tr/>').appendTo(table); $('<td>MD5 Fingerprint:</td>').appendTo(tr); $('<td/>', { - 'html': spec.md5_fingerprint + 'html': that.md5_fingerprint }).appendTo(tr); that.open = function() { @@ -333,8 +322,11 @@ function certificate_request_dialog(spec) { var that = {}; spec = spec || {}; + that.title = spec.title || ''; + that.request = spec.request; + var dialog = $('<div/>', { - 'title': spec.title + 'title': that.title }); dialog.append('Copy and paste the Base64-encoded CSR below:'); @@ -365,8 +357,8 @@ function certificate_request_dialog(spec) { $.trim(request)+'\n'+ END_CERTIFICATE_REQUEST+'\n'; values['request'] = request; - if (spec.request) { - spec.request(values); + if (that.request) { + that.request(values); } dialog.dialog('destroy'); }, |