summaryrefslogtreecommitdiff
path: root/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-03-28 08:30:00 +0400
committerAndrew Dolgov <[email protected]>2011-03-28 08:30:15 +0400
commit3d72afa19a7e8e7f7691086dedba7c5f9631f42f (patch)
tree397f1e5936935122f0f023819fef26fbf1613cb4 /prefs.js
parentf98252f27cb979f5285b65908b1b24a913b1af81 (diff)
use SSL serial to bind certificate to user; implement autologin using SSL certificate; set a separate session cookie for SSL connections (refs #324)
Diffstat (limited to 'prefs.js')
-rw-r--r--prefs.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/prefs.js b/prefs.js
index 02d65bc41..ae2c9f785 100644
--- a/prefs.js
+++ b/prefs.js
@@ -1693,3 +1693,11 @@ function customizeCSS() {
exception_error("customizeCSS", e);
}
}
+
+function insertSSLserial(value) {
+ try {
+ dijit.byId("SSL_CERT_SERIAL").attr('value', value);
+ } catch (e) {
+ exception_error("insertSSLcerial", e);
+ }
+}