summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/inc
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2008-01-15 13:20:26 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2008-01-15 13:20:26 +0000
commit26c499e254ae492e15c7cb315d89438be1afb1bd (patch)
tree9419b2b44ef917366415ebf81170e20af9c308c1 /ucb/source/ucp/inc
parentc56725b89ddacc3e823fb1273583fe6d67f5525c (diff)
INTEGRATION: CWS tkr08 (1.4.30); FILE MERGED
2007/12/12 09:01:41 tkr 1.4.30.2: #i81690# correcting comments 2007/12/11 08:49:57 tkr 1.4.30.1: #i81690# fix wrong url encoding
Diffstat (limited to 'ucb/source/ucp/inc')
-rw-r--r--ucb/source/ucp/inc/urihelper.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/ucb/source/ucp/inc/urihelper.hxx b/ucb/source/ucp/inc/urihelper.hxx
index 093edf8e6726..b913b3ffe523 100644
--- a/ucb/source/ucp/inc/urihelper.hxx
+++ b/ucb/source/ucp/inc/urihelper.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: urihelper.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: obo $ $Date: 2007-07-18 07:48:38 $
+ * last change: $Author: ihi $ $Date: 2008-01-15 14:20:26 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -87,14 +87,14 @@ namespace ucb_impl { namespace urihelper {
aFragment =
rtl::Uri::encode( aFragment,
rtl_UriCharClassUric,
- rtl_UriEncodeCheckEscapes,
+ rtl_UriEncodeKeepEscapes, /* #i81690# */
RTL_TEXTENCODING_UTF8 );
if ( aParams.getLength() > 1 )
aParams =
rtl::Uri::encode( aParams,
rtl_UriCharClassUric,
- rtl_UriEncodeCheckEscapes,
+ rtl_UriEncodeKeepEscapes, /* #i81690# */
RTL_TEXTENCODING_UTF8 );
rtl::OUStringBuffer aResult;
@@ -104,7 +104,7 @@ namespace ucb_impl { namespace urihelper {
aResult.append(
rtl::Uri::encode( aURI.getToken( 0, '/', nIndex ),
rtl_UriCharClassPchar,
- rtl_UriEncodeCheckEscapes,
+ rtl_UriEncodeKeepEscapes, /* #i81690# */
RTL_TEXTENCODING_UTF8 ) );
if ( nIndex >= 0 )
aResult.append( sal_Unicode( '/' ) );