You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ar...@apache.org on 2013/03/24 14:21:21 UTC

svn commit: r1460355 - /openoffice/trunk/main/ucb/source/ucp/webdav/

Author: arielch
Date: Sun Mar 24 13:21:20 2013
New Revision: 1460355

URL: http://svn.apache.org/r1460355
Log:
Header clean-up

Modified:
    openoffice/trunk/main/ucb/source/ucp/webdav/AprEnv.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/DAVRequestEnvironment.hxx
    openoffice/trunk/main/ucb/source/ucp/webdav/DAVResource.hxx
    openoffice/trunk/main/ucb/source/ucp/webdav/DAVResourceAccess.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfCallbacks.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfCopyReqProcImpl.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfCopyReqProcImpl.hxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfDeleteReqProcImpl.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfDeleteReqProcImpl.hxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfGetReqProcImpl.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfGetReqProcImpl.hxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfHeadReqProcImpl.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfHeadReqProcImpl.hxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfLockStore.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfLockStore.hxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfMkColReqProcImpl.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfMkColReqProcImpl.hxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfMoveReqProcImpl.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfMoveReqProcImpl.hxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfPostReqProcImpl.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfPostReqProcImpl.hxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.hxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfPropPatchReqProcImpl.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfPropPatchReqProcImpl.hxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfPutReqProcImpl.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfPutReqProcImpl.hxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessor.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessor.hxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessorImpl.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessorImpl.hxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessorImplFac.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessorImplFac.hxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfSession.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfSession.hxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfUri.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/SerfUri.hxx
    openoffice/trunk/main/ucb/source/ucp/webdav/UCBDeadPropertyValue.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/webdavcontent.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/webdavprovider.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/webdavresponseparser.cxx
    openoffice/trunk/main/ucb/source/ucp/webdav/webdavresponseparser.hxx

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/AprEnv.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/AprEnv.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/AprEnv.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/AprEnv.cxx Sun Mar 24 13:21:20 2013
@@ -22,7 +22,7 @@
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_ucb.hxx"
 
-#include <AprEnv.hxx>
+#include "AprEnv.hxx"
 
 namespace apr_environment
 {

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/DAVRequestEnvironment.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/DAVRequestEnvironment.hxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/DAVRequestEnvironment.hxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/DAVRequestEnvironment.hxx Sun Mar 24 13:21:20 2013
@@ -25,7 +25,7 @@
 
 #include <vector>
 #include <rtl/ref.hxx>
-#include <DAVAuthListener.hxx>
+#include "DAVAuthListener.hxx"
 
 namespace http_dav_ucp
 {

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/DAVResource.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/DAVResource.hxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/DAVResource.hxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/DAVResource.hxx Sun Mar 24 13:21:20 2013
@@ -26,8 +26,8 @@
 
 #include <vector>
 
-#include "rtl/ustring.hxx"
-#include "com/sun/star/uno/Any.hxx"
+#include <rtl/ustring.hxx>
+#include <com/sun/star/uno/Any.hxx>
 
 namespace http_dav_ucp
 {

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/DAVResourceAccess.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/DAVResourceAccess.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/DAVResourceAccess.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/DAVResourceAccess.cxx Sun Mar 24 13:21:20 2013
@@ -24,13 +24,13 @@
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_ucb.hxx"
 
-#include "osl/diagnose.h"
+#include <osl/diagnose.h>
 
-#include "com/sun/star/task/XInteractionAbort.hpp"
-#include "com/sun/star/ucb/XWebDAVCommandEnvironment.hpp"
+#include <com/sun/star/task/XInteractionAbort.hpp>
+#include <com/sun/star/ucb/XWebDAVCommandEnvironment.hpp>
 
-#include "ucbhelper/simpleauthenticationrequest.hxx"
-#include "comphelper/seekableinput.hxx"
+#include <ucbhelper/simpleauthenticationrequest.hxx>
+#include <comphelper/seekableinput.hxx>
 
 #include "DAVAuthListenerImpl.hxx"
 #include "DAVResourceAccess.hxx"

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfCallbacks.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfCallbacks.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfCallbacks.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfCallbacks.cxx Sun Mar 24 13:21:20 2013
@@ -22,10 +22,10 @@
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_ucb.hxx"
 
-#include <SerfCallbacks.hxx>
+#include "SerfCallbacks.hxx"
 
-#include <SerfSession.hxx>
-#include <SerfRequestProcessor.hxx>
+#include "SerfSession.hxx"
+#include "SerfRequestProcessor.hxx"
 
 using namespace http_dav_ucp;
 

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfCopyReqProcImpl.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfCopyReqProcImpl.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfCopyReqProcImpl.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfCopyReqProcImpl.cxx Sun Mar 24 13:21:20 2013
@@ -22,7 +22,7 @@
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_ucb.hxx"
 
-#include <SerfCopyReqProcImpl.hxx>
+#include "SerfCopyReqProcImpl.hxx"
 
 #include <serf.h>
 

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfCopyReqProcImpl.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfCopyReqProcImpl.hxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfCopyReqProcImpl.hxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfCopyReqProcImpl.hxx Sun Mar 24 13:21:20 2013
@@ -22,7 +22,7 @@
 #ifndef INCLUDED_SERFCOPYREQPROCIMPL_HXX
 #define INCLUDED_SERFCOPYREQPROCIMPL_HXX
 
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
 
 namespace http_dav_ucp
 {

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfDeleteReqProcImpl.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfDeleteReqProcImpl.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfDeleteReqProcImpl.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfDeleteReqProcImpl.cxx Sun Mar 24 13:21:20 2013
@@ -22,7 +22,7 @@
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_ucb.hxx"
 
-#include <SerfDeleteReqProcImpl.hxx>
+#include "SerfDeleteReqProcImpl.hxx"
 
 #include <serf.h>
 

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfDeleteReqProcImpl.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfDeleteReqProcImpl.hxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfDeleteReqProcImpl.hxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfDeleteReqProcImpl.hxx Sun Mar 24 13:21:20 2013
@@ -22,7 +22,7 @@
 #ifndef INCLUDED_SERFDELETEREQPROCIMPL_HXX
 #define INCLUDED_SERFDELETEREQPROCIMPL_HXX
 
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
 
 namespace http_dav_ucp
 {

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfGetReqProcImpl.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfGetReqProcImpl.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfGetReqProcImpl.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfGetReqProcImpl.cxx Sun Mar 24 13:21:20 2013
@@ -22,7 +22,7 @@
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_ucb.hxx"
 
-#include <SerfGetReqProcImpl.hxx>
+#include "SerfGetReqProcImpl.hxx"
 
 using namespace com::sun::star;
 

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfGetReqProcImpl.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfGetReqProcImpl.hxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfGetReqProcImpl.hxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfGetReqProcImpl.hxx Sun Mar 24 13:21:20 2013
@@ -22,13 +22,13 @@
 #ifndef INCLUDED_SERFGETREQPROCIMPL_HXX
 #define INCLUDED_SERFGETREQPROCIMPL_HXX
 
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
 
 #include <vector>
 #include <rtl/ustring.hxx>
-#include <DAVResource.hxx>
+#include "DAVResource.hxx"
 
-#include <SerfInputStream.hxx>
+#include "SerfInputStream.hxx"
 #include <com/sun/star/io/XOutputStream.hpp>
 
 namespace http_dav_ucp

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfHeadReqProcImpl.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfHeadReqProcImpl.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfHeadReqProcImpl.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfHeadReqProcImpl.cxx Sun Mar 24 13:21:20 2013
@@ -22,7 +22,7 @@
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_ucb.hxx"
 
-#include <SerfHeadReqProcImpl.hxx>
+#include "SerfHeadReqProcImpl.hxx"
 
 using namespace com::sun::star;
 

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfHeadReqProcImpl.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfHeadReqProcImpl.hxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfHeadReqProcImpl.hxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfHeadReqProcImpl.hxx Sun Mar 24 13:21:20 2013
@@ -22,13 +22,13 @@
 #ifndef INCLUDED_SERFHEADREQPROCIMPL_HXX
 #define INCLUDED_SERFHEADREQPROCIMPL_HXX
 
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
 
 #include <vector>
 #include <rtl/ustring.hxx>
-#include <DAVResource.hxx>
+#include "DAVResource.hxx"
 
-#include <SerfInputStream.hxx>
+#include "SerfInputStream.hxx"
 #include <com/sun/star/io/XOutputStream.hpp>
 
 namespace http_dav_ucp

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfLockStore.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfLockStore.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfLockStore.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfLockStore.cxx Sun Mar 24 13:21:20 2013
@@ -26,9 +26,9 @@
 
 #include <ne_locks.h>
 #include <ne_uri.h>
-#include "rtl/ustring.hxx"
-#include "osl/time.h"
-#include "osl/thread.hxx"
+#include <rtl/ustring.hxx>
+#include <osl/time.h>
+#include <osl/thread.hxx>
 #include "SerfSession.hxx"
 #include "SerfLockStore.hxx"
 

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfLockStore.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfLockStore.hxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfLockStore.hxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfLockStore.hxx Sun Mar 24 13:21:20 2013
@@ -24,8 +24,8 @@
 #define INCLUDED_SERFLOCKSTORE_HXX
 
 #include <map>
-#include "osl/mutex.hxx"
-#include "rtl/ref.hxx"
+#include <osl/mutex.hxx>
+#include <rtl/ref.hxx>
 #include "SerfTypes.hxx"
 
 namespace http_dav_ucp

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfMkColReqProcImpl.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfMkColReqProcImpl.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfMkColReqProcImpl.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfMkColReqProcImpl.cxx Sun Mar 24 13:21:20 2013
@@ -22,7 +22,7 @@
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_ucb.hxx"
 
-#include <SerfMkColReqProcImpl.hxx>
+#include "SerfMkColReqProcImpl.hxx"
 
 #include <serf.h>
 

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfMkColReqProcImpl.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfMkColReqProcImpl.hxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfMkColReqProcImpl.hxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfMkColReqProcImpl.hxx Sun Mar 24 13:21:20 2013
@@ -22,7 +22,7 @@
 #ifndef INCLUDED_SERFMKCOLREQPROCIMPL_HXX
 #define INCLUDED_SERFMKCOLREQPROCIMPL_HXX
 
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
 
 namespace http_dav_ucp
 {

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfMoveReqProcImpl.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfMoveReqProcImpl.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfMoveReqProcImpl.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfMoveReqProcImpl.cxx Sun Mar 24 13:21:20 2013
@@ -22,7 +22,7 @@
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_ucb.hxx"
 
-#include <SerfMoveReqProcImpl.hxx>
+#include "SerfMoveReqProcImpl.hxx"
 
 #include <serf.h>
 

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfMoveReqProcImpl.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfMoveReqProcImpl.hxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfMoveReqProcImpl.hxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfMoveReqProcImpl.hxx Sun Mar 24 13:21:20 2013
@@ -22,7 +22,7 @@
 #ifndef INCLUDED_SERFMOVEREQPROCIMPL_HXX
 #define INCLUDED_SERFMOVEREQPROCIMPL_HXX
 
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
 
 namespace http_dav_ucp
 {

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfPostReqProcImpl.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfPostReqProcImpl.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfPostReqProcImpl.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfPostReqProcImpl.cxx Sun Mar 24 13:21:20 2013
@@ -22,7 +22,7 @@
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_ucb.hxx"
 
-#include <SerfPostReqProcImpl.hxx>
+#include "SerfPostReqProcImpl.hxx"
 
 #include <serf.h>
 

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfPostReqProcImpl.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfPostReqProcImpl.hxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfPostReqProcImpl.hxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfPostReqProcImpl.hxx Sun Mar 24 13:21:20 2013
@@ -22,9 +22,9 @@
 #ifndef INCLUDED_SERFPOSTREQPROCIMPL_HXX
 #define INCLUDED_SERFPOSTREQPROCIMPL_HXX
 
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
 
-#include <SerfInputStream.hxx>
+#include "SerfInputStream.hxx"
 #include <com/sun/star/io/XOutputStream.hpp>
 
 namespace http_dav_ucp

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.cxx Sun Mar 24 13:21:20 2013
@@ -22,11 +22,11 @@
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_ucb.hxx"
 
-#include <SerfPropFindReqProcImpl.hxx>
-#include <SerfTypes.hxx>
-#include <DAVProperties.hxx>
+#include "SerfPropFindReqProcImpl.hxx"
+#include "SerfTypes.hxx"
+#include "DAVProperties.hxx"
 
-#include <webdavresponseparser.hxx>
+#include "webdavresponseparser.hxx"
 #include <comphelper/seqstream.hxx>
 
 using namespace com::sun::star;

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.hxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.hxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.hxx Sun Mar 24 13:21:20 2013
@@ -22,14 +22,14 @@
 #ifndef INCLUDED_SERFPROPFINDREQPROCIMPL_HXX
 #define INCLUDED_SERFPROPFINDREQPROCIMPL_HXX
 
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
 
 #include <vector>
 #include <rtl/ustring.hxx>
 #include "DAVTypes.hxx"
 #include "DAVResource.hxx"
 
-#include <SerfInputStream.hxx>
+#include "SerfInputStream.hxx"
 
 namespace http_dav_ucp
 {

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfPropPatchReqProcImpl.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfPropPatchReqProcImpl.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfPropPatchReqProcImpl.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfPropPatchReqProcImpl.cxx Sun Mar 24 13:21:20 2013
@@ -23,11 +23,11 @@
 #include "precompiled_ucb.hxx"
 
 #include <rtl/ustring.hxx>
-#include <DAVProperties.hxx>
-#include <UCBDeadPropertyValue.hxx>
+#include "DAVProperties.hxx"
+#include "UCBDeadPropertyValue.hxx"
 
-#include <SerfPropPatchReqProcImpl.hxx>
-#include <SerfTypes.hxx>
+#include "SerfPropPatchReqProcImpl.hxx"
+#include "SerfTypes.hxx"
 
 namespace http_dav_ucp
 {

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfPropPatchReqProcImpl.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfPropPatchReqProcImpl.hxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfPropPatchReqProcImpl.hxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfPropPatchReqProcImpl.hxx Sun Mar 24 13:21:20 2013
@@ -22,10 +22,10 @@
 #ifndef INCLUDED_SERFPROPPATCHREQPROCIMPL_HXX
 #define INCLUDED_SERFPROPPATCHREQPROCIMPL_HXX
 
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
 
 #include <vector>
-#include <DAVTypes.hxx>
+#include "DAVTypes.hxx"
 
 namespace http_dav_ucp
 {

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfPutReqProcImpl.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfPutReqProcImpl.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfPutReqProcImpl.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfPutReqProcImpl.cxx Sun Mar 24 13:21:20 2013
@@ -24,7 +24,7 @@
 
 #include <rtl/ustring.hxx>
 
-#include <SerfPutReqProcImpl.hxx>
+#include "SerfPutReqProcImpl.hxx"
 
 #include <serf.h>
 

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfPutReqProcImpl.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfPutReqProcImpl.hxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfPutReqProcImpl.hxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfPutReqProcImpl.hxx Sun Mar 24 13:21:20 2013
@@ -22,7 +22,7 @@
 #ifndef INCLUDED_SERFPUTREQPROCIMPL_HXX
 #define INCLUDED_SERFPUTREQPROCIMPL_HXX
 
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
 
 namespace http_dav_ucp
 {

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessor.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessor.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessor.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessor.cxx Sun Mar 24 13:21:20 2013
@@ -22,11 +22,11 @@
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_ucb.hxx"
 
-#include <SerfRequestProcessor.hxx>
-#include <SerfRequestProcessorImpl.hxx>
-#include <SerfRequestProcessorImplFac.hxx>
-#include <SerfCallbacks.hxx>
-#include <SerfSession.hxx>
+#include "SerfRequestProcessor.hxx"
+#include "SerfRequestProcessorImpl.hxx"
+#include "SerfRequestProcessorImplFac.hxx"
+#include "SerfCallbacks.hxx"
+#include "SerfSession.hxx"
 
 #include <apr_strings.h>
 

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessor.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessor.hxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessor.hxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessor.hxx Sun Mar 24 13:21:20 2013
@@ -28,11 +28,11 @@
 
 #include <serf.h>
 
-#include <DAVTypes.hxx>
-#include <DAVResource.hxx>
-#include <DAVException.hxx>
+#include "DAVTypes.hxx"
+#include "DAVResource.hxx"
+#include "DAVException.hxx"
 
-#include <SerfInputStream.hxx>
+#include "SerfInputStream.hxx"
 #include <com/sun/star/io/XOutputStream.hpp>
 
 namespace http_dav_ucp

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessorImpl.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessorImpl.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessorImpl.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessorImpl.cxx Sun Mar 24 13:21:20 2013
@@ -19,7 +19,7 @@
  * 
  *************************************************************/
 
-#include <SerfRequestProcessorImpl.hxx>
+#include "SerfRequestProcessorImpl.hxx"
 
 namespace
 {

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessorImpl.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessorImpl.hxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessorImpl.hxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessorImpl.hxx Sun Mar 24 13:21:20 2013
@@ -25,7 +25,7 @@
 #include <serf.h>
 
 #include <sal/types.h>
-#include <DAVRequestEnvironment.hxx>
+#include "DAVRequestEnvironment.hxx"
 
 namespace http_dav_ucp
 {

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessorImplFac.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessorImplFac.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessorImplFac.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessorImplFac.cxx Sun Mar 24 13:21:20 2013
@@ -22,17 +22,17 @@
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_ucb.hxx"
 
-#include <SerfRequestProcessorImplFac.hxx>
-#include <SerfPropFindReqProcImpl.hxx>
-#include <SerfPropPatchReqProcImpl.hxx>
-#include <SerfGetReqProcImpl.hxx>
-#include <SerfHeadReqProcImpl.hxx>
-#include <SerfPutReqProcImpl.hxx>
-#include <SerfPostReqProcImpl.hxx>
-#include <SerfDeleteReqProcImpl.hxx>
-#include <SerfMkColReqProcImpl.hxx>
-#include <SerfCopyReqProcImpl.hxx>
-#include <SerfMoveReqProcImpl.hxx>
+#include "SerfRequestProcessorImplFac.hxx"
+#include "SerfPropFindReqProcImpl.hxx"
+#include "SerfPropPatchReqProcImpl.hxx"
+#include "SerfGetReqProcImpl.hxx"
+#include "SerfHeadReqProcImpl.hxx"
+#include "SerfPutReqProcImpl.hxx"
+#include "SerfPostReqProcImpl.hxx"
+#include "SerfDeleteReqProcImpl.hxx"
+#include "SerfMkColReqProcImpl.hxx"
+#include "SerfCopyReqProcImpl.hxx"
+#include "SerfMoveReqProcImpl.hxx"
 
 namespace http_dav_ucp
 {

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessorImplFac.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessorImplFac.hxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessorImplFac.hxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfRequestProcessorImplFac.hxx Sun Mar 24 13:21:20 2013
@@ -27,8 +27,8 @@
 #include "DAVTypes.hxx"
 #include "DAVResource.hxx"
 
-#include <SerfRequestProcessorImpl.hxx>
-#include <SerfInputStream.hxx>
+#include "SerfRequestProcessorImpl.hxx"
+#include "SerfInputStream.hxx"
 #include <com/sun/star/io/XOutputStream.hpp>
 
 namespace http_dav_ucp

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfSession.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfSession.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfSession.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfSession.cxx Sun Mar 24 13:21:20 2013
@@ -29,17 +29,17 @@
 #include "comphelper/sequence.hxx"
 #include "ucbhelper/simplecertificatevalidationrequest.hxx"
 
-#include <AprEnv.hxx>
+#include "AprEnv.hxx"
 #include <apr_strings.h>
 
 #include "DAVAuthListener.hxx"
-#include <SerfTypes.hxx>
-#include <SerfSession.hxx>
-#include <SerfUri.hxx>
-#include <SerfRequestProcessor.hxx>
-#include <SerfCallbacks.hxx>
-#include <SerfInputStream.hxx>
-#include <UCBDeadPropertyValue.hxx>
+#include "SerfTypes.hxx"
+#include "SerfSession.hxx"
+#include "SerfUri.hxx"
+#include "SerfRequestProcessor.hxx"
+#include "SerfCallbacks.hxx"
+#include "SerfInputStream.hxx"
+#include "UCBDeadPropertyValue.hxx"
 
 #include <com/sun/star/xml/crypto/XSecurityEnvironment.hpp>
 #include <com/sun/star/security/XCertificate.hpp>

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfSession.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfSession.hxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfSession.hxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfSession.hxx Sun Mar 24 13:21:20 2013
@@ -27,10 +27,10 @@
 #include <vector>
 #include <boost/shared_ptr.hpp>
 #include <osl/mutex.hxx>
-#include <DAVSession.hxx>
-#include <SerfTypes.hxx>
+#include "DAVSession.hxx"
+#include "SerfTypes.hxx"
 //#include "SerfLockStore.hxx"
-#include <SerfUri.hxx>
+#include "SerfUri.hxx"
 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
 
 namespace ucbhelper { class ProxyDecider; }

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfUri.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfUri.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfUri.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfUri.cxx Sun Mar 24 13:21:20 2013
@@ -28,7 +28,7 @@
 #include <rtl/ustrbuf.hxx>
 #include "SerfUri.hxx"
 #include "DAVException.hxx"
-#include <AprEnv.hxx>
+#include "AprEnv.hxx"
 
 #include "../inc/urihelper.hxx"
 

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/SerfUri.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/SerfUri.hxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/SerfUri.hxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/SerfUri.hxx Sun Mar 24 13:21:20 2013
@@ -25,7 +25,7 @@
 
 #include <apr_uri.h>
 #include <rtl/ustring.hxx>
-#include <DAVException.hxx>
+#include "DAVException.hxx"
 
 namespace http_dav_ucp
 {

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/UCBDeadPropertyValue.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/UCBDeadPropertyValue.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/UCBDeadPropertyValue.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/UCBDeadPropertyValue.cxx Sun Mar 24 13:21:20 2013
@@ -31,7 +31,7 @@
 #include "UCBDeadPropertyValue.hxx"
 
 using namespace http_dav_ucp;
-using namespace com::sun::star;
+using namespace ::com::sun::star;
 
 //////////////////////////////////////////////////////////////////////////
 

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/webdavcontent.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/webdavcontent.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/webdavcontent.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/webdavcontent.cxx Sun Mar 24 13:21:20 2013
@@ -31,7 +31,7 @@
  *************************************************************************/
 
 #include <osl/diagnose.h>
-#include "osl/doublecheckedlocking.h"
+#include <osl/doublecheckedlocking.h>
 #include <rtl/uri.hxx>
 #include <rtl/ustrbuf.hxx>
 #include <ucbhelper/contentidentifier.hxx>
@@ -53,9 +53,9 @@
 #include <com/sun/star/ucb/InsertCommandArgument.hpp>
 #include <com/sun/star/ucb/InteractiveBadTransferURLException.hpp>
 #include <com/sun/star/ucb/InteractiveAugmentedIOException.hpp>
-#include "com/sun/star/ucb/InteractiveLockingLockedException.hpp"
-#include "com/sun/star/ucb/InteractiveLockingLockExpiredException.hpp"
-#include "com/sun/star/ucb/InteractiveLockingNotLockedException.hpp"
+#include <com/sun/star/ucb/InteractiveLockingLockedException.hpp>
+#include <com/sun/star/ucb/InteractiveLockingLockExpiredException.hpp>
+#include <com/sun/star/ucb/InteractiveLockingNotLockedException.hpp>
 #include <com/sun/star/ucb/InteractiveNetworkConnectException.hpp>
 #include <com/sun/star/ucb/InteractiveNetworkGeneralException.hpp>
 #include <com/sun/star/ucb/InteractiveNetworkReadException.hpp>

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/webdavprovider.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/webdavprovider.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/webdavprovider.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/webdavprovider.cxx Sun Mar 24 13:21:20 2013
@@ -33,7 +33,7 @@
 #include "webdavprovider.hxx"
 #include "webdavcontent.hxx"
 
-#include "osl/mutex.hxx"
+#include <osl/mutex.hxx>
 
 using namespace com::sun::star;
 using namespace http_dav_ucp;

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/webdavresponseparser.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/webdavresponseparser.cxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/webdavresponseparser.cxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/webdavresponseparser.cxx Sun Mar 24 13:21:20 2013
@@ -22,7 +22,7 @@
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_ucb.hxx"
 
-#include <webdavresponseparser.hxx>
+#include "webdavresponseparser.hxx"
 #include <com/sun/star/xml/sax/XDocumentHandler.hpp>
 #include <cppuhelper/implbase2.hxx>
 #include <com/sun/star/xml/sax/XParser.hpp>

Modified: openoffice/trunk/main/ucb/source/ucp/webdav/webdavresponseparser.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/ucb/source/ucp/webdav/webdavresponseparser.hxx?rev=1460355&r1=1460354&r2=1460355&view=diff
==============================================================================
--- openoffice/trunk/main/ucb/source/ucp/webdav/webdavresponseparser.hxx (original)
+++ openoffice/trunk/main/ucb/source/ucp/webdav/webdavresponseparser.hxx Sun Mar 24 13:21:20 2013
@@ -24,7 +24,7 @@
 
 #include <com/sun/star/uno/Reference.hxx>
 #include <com/sun/star/io/XInputStream.hpp>
-#include <DAVResource.hxx>
+#include "DAVResource.hxx"
 #include <vector>
 
 //////////////////////////////////////////////////////////////////////////////