summaryrefslogtreecommitdiffstats
path: root/base/server/share/webapps
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2014-04-04 11:52:37 -0400
committerEndi S. Dewata <edewata@redhat.com>2014-04-08 16:07:18 -0400
commitd79e4f9500bbdd758d2c33128a2d58a3d3602fa7 (patch)
tree6d888e0a3a36df9a9417ed9ef6fcbc3638dd16d8 /base/server/share/webapps
parentc289405e411c5731fa21e31b5121ee4c2739258c (diff)
downloadpki-d79e4f9500bbdd758d2c33128a2d58a3d3602fa7.tar.gz
pki-d79e4f9500bbdd758d2c33128a2d58a3d3602fa7.tar.xz
pki-d79e4f9500bbdd758d2c33128a2d58a3d3602fa7.zip
Added general configuration page.
A new page has been added to manage general TPS configuration properties. The properties are read-only by default. In edit mode the property name will become a link which will show a dialog to edit the property value. The config REST service has been updated to use PATCH for update operation and handle possible null collection of properties. Fixed a bug in TableItem.reset() where the code didn't clear the table cell properly. Fixed a bug in ConfigDatabase.getProperties() where the code didn't handle null property key properly. Ticket #654
Diffstat (limited to 'base/server/share/webapps')
-rw-r--r--base/server/share/webapps/pki/js/pki-ui.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/base/server/share/webapps/pki/js/pki-ui.js b/base/server/share/webapps/pki/js/pki-ui.js
index c732d61be..83ac82be6 100644
--- a/base/server/share/webapps/pki/js/pki-ui.js
+++ b/base/server/share/webapps/pki/js/pki-ui.js
@@ -341,10 +341,6 @@ var TableItem = Backbone.View.extend({
// hide checkbox by hiding the label
$("label", td).hide();
- } else if (name == "id") {
- // hide the content
- td.children().hide();
-
} else {
// empty the content
td.html("&nbsp;");