ooo-build r15117 - in branches/ooo-build-3-0-1: . patches/dev300



Author: pmladek
Date: Wed Jan 21 18:34:57 2009
New Revision: 15117
URL: http://svn.gnome.org/viewvc/ooo-build?rev=15117&view=rev

Log:
2008-01-21  Petr Mladek  <pmladek suse cz>

	* patches/dev300/ucb-neon-different-name.diff, patches/dev300/apply:
          some versions of neon report DAV:Collection instead of Collection;
          thanks Caolan for the fix (i#98288)



Added:
   branches/ooo-build-3-0-1/patches/dev300/ucb-neon-different-name.diff
Modified:
   branches/ooo-build-3-0-1/ChangeLog
   branches/ooo-build-3-0-1/patches/dev300/apply

Modified: branches/ooo-build-3-0-1/patches/dev300/apply
==============================================================================
--- branches/ooo-build-3-0-1/patches/dev300/apply	(original)
+++ branches/ooo-build-3-0-1/patches/dev300/apply	Wed Jan 21 18:34:57 2009
@@ -387,6 +387,10 @@
 # printf argumetns cleanup
 buildfix-fmtargs.diff, cabral
 
+# some versions of neon report DAV:Collection instead of Collection
+# thanks Caolan for the fix
+ucb-neon-different-name.diff, i#98288, pmladek
+
 # sd printing fixes
 printing-bugfix-254573.diff, n#254573, rodo
 

Added: branches/ooo-build-3-0-1/patches/dev300/ucb-neon-different-name.diff
==============================================================================
--- (empty file)
+++ branches/ooo-build-3-0-1/patches/dev300/ucb-neon-different-name.diff	Wed Jan 21 18:34:57 2009
@@ -0,0 +1,22 @@
+Index: source/ucp/webdav/NeonPropFindRequest.cxx
+===================================================================
+RCS file: /cvs/ucb/ucb/source/ucp/webdav/NeonPropFindRequest.cxx,v
+retrieving revision 1.24
+diff -u -r1.24 NeonPropFindRequest.cxx
+--- ucb/source/ucp/webdav/NeonPropFindRequest.cxx	10 Apr 2008 15:40:55 -0000	1.24
++++ ucb/source/ucp/webdav/NeonPropFindRequest.cxx	20 Jan 2009 16:21:07 -0000
+@@ -103,8 +104,12 @@
+ 			if ( aValue.getLength() )
+ 			{
+                 aValue = aValue.toAsciiLowerCase();
+-				if ( aValue.compareTo(
+-						RTL_CONSTASCII_STRINGPARAM( "<collection" ) ) == 0 )
++				if (
++				    ( aValue.compareTo(
++						RTL_CONSTASCII_STRINGPARAM( "<collection" ) ) == 0 ) ||
++				    ( aValue.compareTo(
++						RTL_CONSTASCII_STRINGPARAM( "<dav:collection" ) ) == 0 )
++				   )
+ 				{
+ 					thePropertyValue.Value
+ 						<<= OUString::createFromAscii( "collection" );



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]