Helpviewer/UrlBar/UrlBar.py

branch
5_3_x
changeset 2356
ece6580f36cc
parent 2302
f29e9405c851
child 2403
e3d7a861547c
child 2584
70d6fecbccf0
--- a/Helpviewer/UrlBar/UrlBar.py	Mon Jan 14 18:48:35 2013 +0100
+++ b/Helpviewer/UrlBar/UrlBar.py	Wed Jan 16 19:56:34 2013 +0100
@@ -180,19 +180,18 @@
                 sslInfo = self.__browser.page().getSslInfo()
                 if sslInfo is not None:
                     if qVersion() >= "5.0.0":
-                        org = Utilities.html_encode(Utilities.decodeString(
-                            ", ".join(sslInfo.subjectInfo(QSslCertificate.Organization))))
+                        org = Utilities.decodeString(
+                            ", ".join(sslInfo.subjectInfo(QSslCertificate.Organization)))
                     else:
-                        org = Utilities.html_encode(Utilities.decodeString(
-                            sslInfo.subjectInfo(QSslCertificate.Organization)))
+                        org = Utilities.decodeString(
+                            sslInfo.subjectInfo(QSslCertificate.Organization))
                     if org == "":
                         if qVersion() >= "5.0.0":
-                            cn = Utilities.html_encode(Utilities.decodeString(
-                                ", ".join(
-                                    sslInfo.subjectInfo(QSslCertificate.CommonName))))
+                            cn = Utilities.decodeString(", ".join(
+                                sslInfo.subjectInfo(QSslCertificate.CommonName)))
                         else:
-                            cn = Utilities.html_encode(Utilities.decodeString(
-                                sslInfo.subjectInfo(QSslCertificate.CommonName)))
+                            cn = Utilities.decodeString(
+                                sslInfo.subjectInfo(QSslCertificate.CommonName))
                         if cn != "":
                             org = cn.split(".", 1)[1]
                         if org == "":

eric ide

mercurial