[hackers] [surf] Add config option for setting default charset. || Quentin Rameau

From: <git_AT_suckless.org>
Date: Thu, 11 May 2017 16:33:12 +0200 (CEST)

commit 298e688933395af61f56cb2a8710e7bac8e5453d
Author: Quentin Rameau <quinq_AT_fifth.space>
AuthorDate: Thu May 11 15:23:22 2017 +0200
Commit: Quentin Rameau <quinq_AT_fifth.space>
CommitDate: Thu May 11 15:23:22 2017 +0200

    Add config option for setting default charset.
    
    This will be used for pages with no specified charset.

diff --git a/config.def.h b/config.def.h
index 46f7040..c55b690 100644
--- a/config.def.h
+++ b/config.def.h
_AT_@ -13,6 +13,7 @@ static Parameter defconfig[ParameterLast] = {
         SETB(Certificate, 0),
         SETB(CaretBrowsing, 0),
         SETV(CookiePolicies, "_AT_Aa"),
+ SETV(DefaultCharset, "UTF-8"),
         SETB(DiskCache, 1),
         SETB(DNSPrefetch, 0),
         SETI(FontSize, 12),
diff --git a/surf.c b/surf.c
index 57c4c22..a482f23 100644
--- a/surf.c
+++ b/surf.c
_AT_@ -65,6 +65,7 @@ typedef enum {
         Certificate,
         CookiePolicies,
         DiskCache,
+ DefaultCharset,
         DNSPrefetch,
         FontSize,
         FrameFlattening,
_AT_@ -695,6 +696,9 @@ setparameter(Client *c, int refresh, ParamName p, const Arg *a)
                     WEBKIT_CACHE_MODEL_WEB_BROWSER :
                     WEBKIT_CACHE_MODEL_DOCUMENT_VIEWER);
                 return; /* do not update */
+ case DefaultCharset:
+ webkit_settings_set_default_charset(s, a->v);
+ return; /* do not update */
         case DNSPrefetch:
                 webkit_settings_set_enable_dns_prefetching(s, a->b);
                 return; /* do not update */
_AT_@ -1008,6 +1012,7 @@ newview(Client *c, WebKitWebView *rv)
         } else {
                 settings = webkit_settings_new_with_settings(
                    "auto-load-images", curconfig[LoadImages].val.b,
+ "default-charset", curconfig[DefaultCharset].val.v,
                    "default-font-size", curconfig[FontSize].val.i,
                    "enable-caret-browsing", curconfig[CaretBrowsing].val.b,
                    "enable-developer-extras", curconfig[Inspector].val.b,
Received on Thu May 11 2017 - 16:33:12 CEST

This archive was generated by hypermail 2.3.0 : Thu May 11 2017 - 16:36:27 CEST