/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * 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/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 . */ #include #include "DAVProperties.hxx" #include using namespace http_dav_ucp; const OUString DAVProperties::CREATIONDATE = OUString( "DAV:creationdate" ); const OUString DAVProperties::DISPLAYNAME = OUString( "DAV:displayname" ); const OUString DAVProperties::GETCONTENTLANGUAGE = OUString( "DAV:getcontentlanguage" ); const OUString DAVProperties::GETCONTENTLENGTH = OUString( "DAV:getcontentlength" ); const OUString DAVProperties::GETCONTENTTYPE = OUString( "DAV:getcontenttype" ); const OUString DAVProperties::GETETAG = OUString( "DAV:getetag" ); const OUString DAVProperties::GETLASTMODIFIED = OUString( "DAV:getlastmodified" ); const OUString DAVProperties::LOCKDISCOVERY = OUString( "DAV:lockdiscovery" ); const OUString DAVProperties::RESOURCETYPE = OUString( "DAV:resourcetype" ); const OUString DAVProperties::SUPPORTEDLOCK = OUString( "DAV:supportedlock" ); const OUString DAVProperties::EXECUTABLE = OUString( "http://apache.org/dav/props/executable" ); // static void DAVProperties::createSerfPropName( const OUString & rFullName, SerfPropName & rName ) { if ( rFullName.startsWith( "DAV:" ) ) { rName.nspace = "DAV:"; rName.name = strdup( OUStringToOString( rFullName.copy( RTL_CONSTASCII_LENGTH( "DAV:" ) ), RTL_TEXTENCODING_UTF8 ).getStr() ); } else if ( rFullName.startsWith( "http://apache.org/dav/props/" ) ) { rName.nspace = "http://apache.org/dav/props/"; rName.name = strdup( OUStringToOString( rFullName.copy( RTL_CONSTASCII_LENGTH( "http://apache.org/dav/props/" ) ), RTL_TEXTENCODING_UTF8 ).getStr() ); } else if ( rFullName.startsWith( "http://ucb.openoffice.org/dav/props/" ) ) { rName.nspace = "http://ucb.openoffice.org/dav/props/"; rName.name = strdup( OUStringToOString( rFullName.copy( RTL_CONSTASCII_LENGTH( "http://ucb.openoffice.org/dav/props/" ) ), RTL_TEXTENCODING_UTF8 ).getStr() ); } else if ( rFullName.startsWith( " sal_Int32 nStart = RTL_CONSTASCII_LENGTH( "" ) ) return false; OUString sNamesp = rFullName.copy( nStart, nEnd - nStart ); if ( !( nLen = sNamesp.getLength() ) ) return false; OUStringBuffer aBuff( sNamesp ); if ( sNamesp[nLen - 1] != '/' ) aBuff.append( '/' ); aBuff.append( sPropName ); rParsedName = aBuff.makeStringAndClear(); return rParsedName.getLength(); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */