From 450e723217161f1110eccde0ccd8eef3074224a4 Mon Sep 17 00:00:00 2001 From: "timeless%mac.com" Date: Sun, 11 Aug 2002 20:44:03 +0000 Subject: [PATCH] Bug 155373 no locales in BeOS - should be set to UTF-8 code by sergei_d@fi.tartu.ee nsBeOSCharset.cpp r=timeless sr=blizzard (ports) Makefile.in r=cls --- intl/uconv/src/Makefile.in | 4 ++ intl/uconv/src/nsBeOSCharset.cpp | 105 +++++++++++++++++++++++++++++++ 2 files changed, 109 insertions(+) create mode 100644 intl/uconv/src/nsBeOSCharset.cpp diff --git a/intl/uconv/src/Makefile.in b/intl/uconv/src/Makefile.in index 5bbf49d4e7b3..65620c4b9716 100644 --- a/intl/uconv/src/Makefile.in +++ b/intl/uconv/src/Makefile.in @@ -89,6 +89,9 @@ ifneq (,$(filter cocoa mac, $(MOZ_WIDGET_TOOLKIT))) CPPSRCS += nsMacCharset.cpp EXPORT_RESOURCE += maccharset.properties else +ifeq ($(OS_ARCH),BeOS) +CPPSRCS += nsBeOSCharset.cpp +else CPPSRCS += nsUNIXCharset.cpp EXPORT_RESOURCE += unixcharset.properties # add platform charset remapping properties files here if necessary @@ -98,6 +101,7 @@ EXPORT_RESOURCE += unixcharset.properties endif endif endif +endif EXTRA_DSO_LDOPTS = $(MOZ_NECKO_UTIL_LIBS) \ $(MOZ_COMPONENT_LIBS) \ diff --git a/intl/uconv/src/nsBeOSCharset.cpp b/intl/uconv/src/nsBeOSCharset.cpp new file mode 100644 index 000000000000..b92e6d7e96ed --- /dev/null +++ b/intl/uconv/src/nsBeOSCharset.cpp @@ -0,0 +1,105 @@ +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1/GPL 2.0/LGPL 2.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * + * Original code by: + * Sergei Dolgov (sergei_d@fi.tartu.ee) + * Tartu University + * (C) 2002 + * Alternatively, the contents of this file may be used under the terms of + * either the GNU General Public License Version 2 or later (the "GPL"), or + * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), + * in which case the provisions of the GPL or the LGPL are applicable instead + * of those above. If you wish to allow use of your version of this file only + * under the terms of either the GPL or the LGPL, and not to allow others to + * use your version of this file under the terms of the MPL, indicate your + * decision by deleting the provisions above and replace them with the notice + * and other provisions required by the GPL or the LGPL. If you do not delete + * the provisions above, a recipient may use your version of this file under + * the terms of any one of the MPL, the GPL or the LGPL. + * + * ***** END LICENSE BLOCK ***** */ + +#include "nsIPlatformCharset.h" +#include "nsReadableUtils.h" +#include "nsPlatformCharset.h" + + +NS_IMPL_ISUPPORTS1(nsPlatformCharset, nsIPlatformCharset); + +nsPlatformCharset::nsPlatformCharset() +{ + mCharset.Assign(NS_LITERAL_STRING("UTF-8")); +} + +nsPlatformCharset::~nsPlatformCharset() +{ +} + +NS_IMETHODIMP +nsPlatformCharset::GetCharset(nsPlatformCharsetSel selector, nsAString& aResult) +{ + aResult = mCharset; + return NS_OK; +} + +NS_IMETHODIMP +nsPlatformCharset::GetDefaultCharsetForLocale(const PRUnichar* localeName, PRUnichar** _retValue) +{ + *_retValue = ToNewUnicode(mCharset); + return NS_OK; +} + +NS_IMETHODIMP +nsPlatformCharset::Init() +{ + return NS_OK; +} +nsresult +nsPlatformCharset::MapToCharset(short script, short region, nsAString& aCharset) +{ + return NS_OK; +} + +nsresult +nsPlatformCharset::MapToCharset(nsAString& inANSICodePage, nsAString& aCharset) +{ + return NS_OK; +} + +nsresult +nsPlatformCharset::InitGetCharset(nsAString &aString) +{ + aString.Assign(mCharset); + return NS_OK; +} + +nsresult +nsPlatformCharset::ConvertLocaleToCharsetUsingDeprecatedConfig(nsAutoString& locale, nsAString& aResult) +{ + aResult.Assign(mCharset); + return NS_OK; +} + +nsresult +nsPlatformCharset::VerifyCharset(nsString &aCharset) +{ + aCharset.Assign(mCharset); + return NS_OK; +} + +nsresult +nsPlatformCharset::InitInfo() +{ + return NS_OK; +}