Helpviewer/SslCertificatesDialog.py

changeset 2355
cb5489f9b734
parent 2354
c63de4af553d
--- a/Helpviewer/SslCertificatesDialog.py	Wed Jan 16 19:43:50 2013 +0100
+++ b/Helpviewer/SslCertificatesDialog.py	Wed Jan 16 19:56:34 2013 +0100
@@ -69,20 +69,20 @@
         """
         # step 1: extract the info to be shown
         if qVersion() >= "5.0.0":
-            organisation = Utilities.html_encode(Utilities.decodeString(
-                ", ".join(cert.subjectInfo(QSslCertificate.Organization))))
-            commonName = Utilities.html_encode(Utilities.decodeString(
-                ", ".join(cert.subjectInfo(QSslCertificate.CommonName))))
+            organisation = Utilities.decodeString(
+                ", ".join(cert.subjectInfo(QSslCertificate.Organization)))
+            commonName = Utilities.decodeString(
+                ", ".join(cert.subjectInfo(QSslCertificate.CommonName)))
         else:
-            organisation = Utilities.html_encode(Utilities.decodeString(
-                cert.subjectInfo(QSslCertificate.Organization)))
-            commonName = Utilities.html_encode(Utilities.decodeString(
-                cert.subjectInfo(QSslCertificate.CommonName)))
+            organisation = Utilities.decodeString(
+                cert.subjectInfo(QSslCertificate.Organization))
+            commonName = Utilities.decodeString(
+                cert.subjectInfo(QSslCertificate.CommonName))
         if organisation is None or organisation == "":
             organisation = self.trUtf8("(Unknown)")
         if commonName is None or commonName == "":
             commonName = self.trUtf8("(Unknown common name)")
-        expiryDate = Utilities.html_encode(cert.expiryDate().toString("yyyy-MM-dd"))
+        expiryDate = cert.expiryDate().toString("yyyy-MM-dd")
         
         # step 2: create the entry
         items = self.serversCertificatesTree.findItems(organisation,
@@ -261,20 +261,20 @@
         """
         # step 1: extract the info to be shown
         if qVersion() >= "5.0.0":
-            organisation = Utilities.html_encode(Utilities.decodeString(
-                ", ".join(cert.subjectInfo(QSslCertificate.Organization))))
-            commonName = Utilities.html_encode(Utilities.decodeString(
-                ", ".join(cert.subjectInfo(QSslCertificate.CommonName))))
+            organisation = Utilities.decodeString(
+                ", ".join(cert.subjectInfo(QSslCertificate.Organization)))
+            commonName = Utilities.decodeString(
+                ", ".join(cert.subjectInfo(QSslCertificate.CommonName)))
         else:
-            organisation = Utilities.html_encode(Utilities.decodeString(
-                cert.subjectInfo(QSslCertificate.Organization)))
-            commonName = Utilities.html_encode(Utilities.decodeString(
-                cert.subjectInfo(QSslCertificate.CommonName)))
+            organisation = Utilities.decodeString(
+                cert.subjectInfo(QSslCertificate.Organization))
+            commonName = Utilities.decodeString(
+                cert.subjectInfo(QSslCertificate.CommonName))
         if organisation is None or organisation == "":
             organisation = self.trUtf8("(Unknown)")
         if commonName is None or commonName == "":
             commonName = self.trUtf8("(Unknown common name)")
-        expiryDate = Utilities.html_encode(cert.expiryDate().toString("yyyy-MM-dd"))
+        expiryDate = cert.expiryDate().toString("yyyy-MM-dd")
         
         # step 2: create the entry
         items = self.caCertificatesTree.findItems(organisation,

eric ide

mercurial