Add setting for default charset
This commit is contained in:
parent
14c33d6ec8
commit
c4d2463372
@ -5,6 +5,8 @@ home = https://example.com
|
||||
useragent = BirdyNet/$VER ($OS)
|
||||
# Which protocol to use when none is given in the address bar
|
||||
defaultProtocol = https
|
||||
# Which charset to use when none is given in the header. https://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.7.1 defines that iso-8859-1 should be used. You may also use utf-8 though, if it's better for the pages you visit.
|
||||
defaultCharset = iso-8859-1
|
||||
|
||||
[accessibility]
|
||||
# Which background color (CSS color) should be chosen for websites? "default" for system's default. "white" is recommended for compatibility.
|
||||
|
@ -188,14 +188,14 @@ class browserWindow(QMainWindow):
|
||||
|
||||
htm = response["body"]
|
||||
contentType, contentTypeArguments = getContentType(response["headers"],"text")
|
||||
if not "charset" in contentTypeArguments: contentTypeArguments["charset"] = "utf-8"
|
||||
if not "charset" in contentTypeArguments: contentTypeArguments["charset"] = config["default"]["defaultCharset"]
|
||||
print("content-type: " +contentType+ "\n" +prettyJson(contentTypeArguments))
|
||||
|
||||
try:
|
||||
htm = htm.decode(contentTypeArguments["charset"],errors="ignore")
|
||||
except Exception as e:
|
||||
print("decoding html as '" +contentTypeArguments["charset"]+ "' failed, trying utf-8...")
|
||||
htm = htm.decode("utf-8",errors="ignore")
|
||||
print("decoding html as '" +contentTypeArguments["charset"]+ "' failed, trying " +config["default"]["defaultCharset"]+ "...")
|
||||
htm = htm.decode(config["default"]["defaultCharset"],errors="ignore")
|
||||
|
||||
self.cDoc.cRenderHtml(htm,contentType)
|
||||
end = time.time()
|
||||
|
Loading…
Reference in New Issue
Block a user