Thread: Additional windows codepages

Additional windows codepages

From
"Dave Page"
Date:
The attached patch adds some missing Windows codepage numbers to the
table in chklocale.c.

Regards, Dave.
*** src/port/chklocale.c.orig    Wed Oct  3 18:16:39 2007
--- src/port/chklocale.c    Wed Oct 10 12:30:05 2007
***************
*** 72,97 ****
--- 72,103 ----

      {PG_UTF8, "UTF-8"},
      {PG_UTF8, "utf8"},
+     {PG_UTF8, "CP65001"},

      {PG_LATIN1, "ISO-8859-1"},
      {PG_LATIN1, "ISO8859-1"},
      {PG_LATIN1, "iso88591"},
+     {PG_LATIN1, "CP28591"},

      {PG_LATIN2, "ISO-8859-2"},
      {PG_LATIN2, "ISO8859-2"},
      {PG_LATIN2, "iso88592"},
+     {PG_LATIN2, "CP28592"},

      {PG_LATIN3, "ISO-8859-3"},
      {PG_LATIN3, "ISO8859-3"},
      {PG_LATIN3, "iso88593"},
+     {PG_LATIN3, "CP28593"},

      {PG_LATIN4, "ISO-8859-4"},
      {PG_LATIN4, "ISO8859-4"},
      {PG_LATIN4, "iso88594"},
+     {PG_LATIN4, "CP28594"},

      {PG_LATIN5, "ISO-8859-9"},
      {PG_LATIN5, "ISO8859-9"},
      {PG_LATIN5, "iso88599"},
+     {PG_LATIN5, "CP28599"},

      {PG_LATIN6, "ISO-8859-10"},
      {PG_LATIN6, "ISO8859-10"},
***************
*** 108,113 ****
--- 114,120 ----
      {PG_LATIN9, "ISO-8859-15"},
      {PG_LATIN9, "ISO8859-15"},
      {PG_LATIN9, "iso885915"},
+     {PG_LATIN9, "CP28605"},

      {PG_LATIN10, "ISO-8859-16"},
      {PG_LATIN10, "ISO8859-16"},
***************
*** 132,149 ****
--- 139,160 ----
      {PG_ISO_8859_5, "ISO-8859-5"},
      {PG_ISO_8859_5, "ISO8859-5"},
      {PG_ISO_8859_5, "iso88595"},
+     {PG_ISO_8859_5, "CP28595"},

      {PG_ISO_8859_6, "ISO-8859-6"},
      {PG_ISO_8859_6, "ISO8859-6"},
      {PG_ISO_8859_6, "iso88596"},
+     {PG_ISO_8859_6, "CP28596"},

      {PG_ISO_8859_7, "ISO-8859-7"},
      {PG_ISO_8859_7, "ISO8859-7"},
      {PG_ISO_8859_7, "iso88597"},
+     {PG_ISO_8859_7, "CP28597"},

      {PG_ISO_8859_8, "ISO-8859-8"},
      {PG_ISO_8859_8, "ISO8859-8"},
      {PG_ISO_8859_8, "iso88598"},
+     {PG_ISO_8859_8, "CP28598"},

      {PG_SJIS, "SJIS"},
      {PG_SJIS, "PCK"},

Re: Additional windows codepages

From
Magnus Hagander
Date:
On Wed, Oct 10, 2007 at 12:42:36PM +0100, Dave Page wrote:
> The attached patch adds some missing Windows codepage numbers to the
> table in chklocale.c.

Applied, thanks.

//Magnus