mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 09:41:15 +00:00
Add a missing charset
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19920 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a49139e03c
commit
6ea8d6b00d
2 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2004-08-25 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
* Source/Additions/GSMime.m: Accept iso-10646-ucs-2
|
||||||
|
|
||||||
2004-08-25 Fred Kiefer <FredKiefer@gmx.de>
|
2004-08-25 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
* Tools/make_strings/GNUmakefile: Include config.mak to be
|
* Tools/make_strings/GNUmakefile: Include config.mak to be
|
||||||
|
@ -27,7 +31,8 @@
|
||||||
* Source/GSHTTPURLHandle.m:
|
* Source/GSHTTPURLHandle.m:
|
||||||
* Source/NSURLHandle.m: Add new property keys for setting certificate
|
* Source/NSURLHandle.m: Add new property keys for setting certificate
|
||||||
information for https. Stopgap until we can clone newer MacOS-X
|
information for https. Stopgap until we can clone newer MacOS-X
|
||||||
features.
|
features. Add support for persistent connections for better
|
||||||
|
performance when posting repeatedly to the same server.
|
||||||
|
|
||||||
2004-08-23 Richard Frith-Macdonald <rfm@gnu.org>
|
2004-08-23 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
|
|
@ -3366,6 +3366,10 @@ static NSCharacterSet *tokenSet = nil;
|
||||||
return NSWindowsCP1253StringEncoding;
|
return NSWindowsCP1253StringEncoding;
|
||||||
if ([charset isEqualToString: @"windows-1254"] == YES)
|
if ([charset isEqualToString: @"windows-1254"] == YES)
|
||||||
return NSWindowsCP1254StringEncoding;
|
return NSWindowsCP1254StringEncoding;
|
||||||
|
if ([charset isEqualToString: @"iso-10646-ucs-2"] == YES)
|
||||||
|
return NSUnicodeStringEncoding;
|
||||||
|
if ([charset isEqualToString: @"iso-10646"] == YES)
|
||||||
|
return NSUnicodeStringEncoding;
|
||||||
|
|
||||||
return NSASCIIStringEncoding; // Default character set.
|
return NSASCIIStringEncoding; // Default character set.
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue