]> err.no Git - sope/commitdiff
changed strings file encoding from ISO-Latin-1 to UFT-8
authorznek <znek@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Thu, 6 Jan 2005 23:24:36 +0000 (23:24 +0000)
committerznek <znek@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Thu, 6 Jan 2005 23:24:36 +0000 (23:24 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@499 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-appserver/NGObjWeb/ChangeLog
sope-appserver/NGObjWeb/NGHttp/NGHttp.xcode/project.pbxproj
sope-appserver/NGObjWeb/NGObjWeb.xcode/project.pbxproj
sope-appserver/NGObjWeb/SoObjects/SoObjects.xcode/project.pbxproj
sope-appserver/NGObjWeb/Version
sope-appserver/NGObjWeb/WebDAV/WebDAV.xcode/project.pbxproj
sope-appserver/NGObjWeb/_WOStringTable.m

index 5c1e8327d93fdcf1c910b6f7645007c72a00e233..0f890f7a645b075021162064193d98661efa721e 100644 (file)
@@ -1,3 +1,10 @@
+2005-01-07  Marcus Mueller  <znek@mulle-kybernetik.com>
+
+       * _WOStringTable.m: changed strings file encoding from ISO-Latin-1
+         to UTF-8, so this is now en par with libFoundation, gnustep-base
+         and Mac OS X 10.3. Fixed a minor bug that affected gnustep-base
+         only. (v4.5.108)
+
 2005-01-06  Marcus Mueller  <znek@mulle-kybernetik.com>
 
        * SoObjects/SoProductResourceManager.m: changed resource lookup to use
index 4c5dd8fd99587008df6fb402ffe4708c354e77fb..ff7b0dc508572b9c477615bbe1b4c4349de6c788 100644 (file)
                        );
                        buildSettings = {
                                DYLIB_COMPATIBILITY_VERSION = 1;
-                               DYLIB_CURRENT_VERSION = 4.5.107;
+                               DYLIB_CURRENT_VERSION = 4.5.108;
                                FRAMEWORK_SEARCH_PATHS = "$(LOCAL_LIBRARY_DIR)/Frameworks";
                                FRAMEWORK_VERSION = A;
                                GCC_PRECOMPILE_PREFIX_HEADER = YES;
index 828ed11b7d92b0f46d4ebc7c710ae302175ba858..33cf107b82c72c06e4d398a5d380b69844bd7319 100644 (file)
                        );
                        buildSettings = {
                                DYLIB_COMPATIBILITY_VERSION = 1;
-                               DYLIB_CURRENT_VERSION = 4.5.107;
+                               DYLIB_CURRENT_VERSION = 4.5.108;
                                FRAMEWORK_SEARCH_PATHS = "$(LOCAL_LIBRARY_DIR)/Frameworks";
                                FRAMEWORK_VERSION = A;
                                GCC_PRECOMPILE_PREFIX_HEADER = YES;
index bea1eeea9be6bb9bcd96ac71c78b693b403790e1..e79119c70fece8f802faa431a19725d68c090766 100644 (file)
                        );
                        buildSettings = {
                                DYLIB_COMPATIBILITY_VERSION = 1;
-                               DYLIB_CURRENT_VERSION = 4.5.107;
+                               DYLIB_CURRENT_VERSION = 4.5.108;
                                FRAMEWORK_SEARCH_PATHS = "$(LOCAL_LIBRARY_DIR)/Frameworks";
                                FRAMEWORK_VERSION = A;
                                GCC_PRECOMPILE_PREFIX_HEADER = NO;
index 38a0037cac39b54f408f446d5b48014debe5aa08..3f3a7d2cc620ab560bb349b4ee4baad6990a96b9 100644 (file)
@@ -1,6 +1,6 @@
 # version file
 
-SUBMINOR_VERSION:=107
+SUBMINOR_VERSION:=108
 
 # v4.5.91  requires libNGExtensions v4.5.134
 # v4.5.84  requires libNGExtensions v4.5.127
index da676b046fe50d1043df9169a9e7877c99e1a798..e30c5f720f56d7afa24b14829a51af7151621b7c 100644 (file)
                        );
                        buildSettings = {
                                DYLIB_COMPATIBILITY_VERSION = 1;
-                               DYLIB_CURRENT_VERSION = 4.5.107;
+                               DYLIB_CURRENT_VERSION = 4.5.108;
                                FRAMEWORK_SEARCH_PATHS = "$(LOCAL_LIBRARY_DIR)/Frameworks";
                                FRAMEWORK_VERSION = A;
                                GCC_PRECOMPILE_PREFIX_HEADER = NO;
index 70414c357fb9195a637dc6ea299bc93cd54f1246..2602ef74b58d65792914b5959a7f4aeb38fc55dc 100644 (file)
@@ -24,7 +24,7 @@
 
 @implementation _WOStringTable
 
-static NSStringEncoding stringFilesEncoding = NSISOLatin1StringEncoding;
+static NSStringEncoding stringFilesEncoding = NSUTF8StringEncoding;
 
 - (id)initWithPath:(NSString *)_path {
   if ((self = [super init])) {
@@ -60,7 +60,8 @@ static NSStringEncoding stringFilesEncoding = NSISOLatin1StringEncoding;
   if (self->data != nil)
     return;
 
-#if !LIB_FOUNDATION_LIBRARY /* potentially effects OGo ;-) */
+#if 0
+#if Cocoa_FOUNDATION_LIBRARY /* potentially effects OGo ;-) */
   /*
     For WO4.5 compatibility, we need first to try to open .strings file as a 
     dictionary
@@ -74,7 +75,8 @@ static NSStringEncoding stringFilesEncoding = NSISOLatin1StringEncoding;
     return;
   }
 #endif
-  
+#endif
+
   /* If file was not a dictionary, then it's a standard strings file */
   
   if ((sdata = [[NSData alloc] initWithContentsOfFile:self->path]) == nil) {