2001-09-26 00:40:45 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-09-21 00:17:37 +00:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
|
|
|
|
|
|
|
%{C++
|
|
|
|
// {8B042E22-6F87-11d3-B3C8-00805F8A6670}
|
1999-09-21 05:13:53 +00:00
|
|
|
#define NS_TEXTTOSUBURI_CID { 0x8b042e22, 0x6f87, 0x11d3, { 0xb3, 0xc8, 0x0, 0x80, 0x5f, 0x8a, 0x66, 0x70 } }
|
2000-09-13 23:57:52 +00:00
|
|
|
#define NS_ITEXTTOSUBURI_CONTRACTID "@mozilla.org/intl/texttosuburi;1"
|
1999-09-21 00:17:37 +00:00
|
|
|
%}
|
|
|
|
|
|
|
|
[scriptable, uuid(8B042E24-6F87-11d3-B3C8-00805F8A6670)]
|
|
|
|
interface nsITextToSubURI : nsISupports
|
|
|
|
{
|
|
|
|
string ConvertAndEscape(in string charset, in wstring text);
|
2000-02-03 23:18:07 +00:00
|
|
|
wstring UnEscapeAndConvert(in string charset, in string text);
|
2002-08-12 19:23:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Unescapes the given URI fragment (for UI purpose only)
|
2005-02-22 18:25:12 +00:00
|
|
|
* Note:
|
|
|
|
* <ul>
|
|
|
|
* <li> escaping back the result (unescaped string) is not guaranteed to
|
|
|
|
* give the original escaped string
|
|
|
|
* <li> In case of a conversion error, the URI fragment (escaped) is
|
|
|
|
* assumed to be in UTF-8 and converted to AString (UTF-16)
|
2014-12-01 15:55:15 +00:00
|
|
|
* <li> In case of successful conversion any resulting character listed
|
|
|
|
* in network.IDN.blacklist_chars (except space) is escaped
|
2005-02-22 18:25:12 +00:00
|
|
|
* <li> Always succeeeds (callers don't need to do error checking)
|
|
|
|
* </ul>
|
2002-08-12 19:23:22 +00:00
|
|
|
*
|
|
|
|
* @param aCharset the charset to convert from
|
|
|
|
* @param aURIFragment the URI (or URI fragment) to unescape
|
|
|
|
* @return Unescaped aURIFragment converted to unicode
|
|
|
|
*/
|
|
|
|
AString unEscapeURIForUI(in ACString aCharset, in AUTF8String aURIFragment);
|
2002-09-08 15:08:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Unescapes only non ASCII characters in the given URI fragment
|
2011-11-06 15:14:27 +00:00
|
|
|
* note: this method assumes the URI as UTF-8 and fallbacks to the given
|
|
|
|
* charset if the charset is an ASCII superset
|
2002-09-08 15:08:21 +00:00
|
|
|
*
|
|
|
|
* @param aCharset the charset to convert from
|
|
|
|
* @param aURIFragment the URI (or URI fragment) to unescape
|
|
|
|
* @return Unescaped aURIFragment converted to unicode
|
|
|
|
* @throws NS_ERROR_UCONV_NOCONV when there is no decoder for aCharset
|
2005-06-03 10:26:28 +00:00
|
|
|
* or error code of nsIUnicodeDecoder in case of conversion failure
|
2002-09-08 15:08:21 +00:00
|
|
|
*/
|
|
|
|
AString unEscapeNonAsciiURI(in ACString aCharset, in AUTF8String aURIFragment);
|
1999-09-21 00:17:37 +00:00
|
|
|
};
|