webdavcontentcaps.cxx (2f86921c) | webdavcontentcaps.cxx (59ddfc10) |
---|---|
1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance --- 27 unchanged lines hidden (view full) --- 36#include <com/sun/star/ucb/CommandInfo.hpp> 37#include <com/sun/star/ucb/ContentInfo.hpp> 38#include <com/sun/star/ucb/OpenCommandArgument2.hpp> 39#include <com/sun/star/ucb/InsertCommandArgument.hpp> 40#include <com/sun/star/ucb/PostCommandArgument2.hpp> 41#include <com/sun/star/ucb/TransferInfo.hpp> 42#include <com/sun/star/uno/Sequence.hxx> 43#include <com/sun/star/util/DateTime.hpp> | 1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance --- 27 unchanged lines hidden (view full) --- 36#include <com/sun/star/ucb/CommandInfo.hpp> 37#include <com/sun/star/ucb/ContentInfo.hpp> 38#include <com/sun/star/ucb/OpenCommandArgument2.hpp> 39#include <com/sun/star/ucb/InsertCommandArgument.hpp> 40#include <com/sun/star/ucb/PostCommandArgument2.hpp> 41#include <com/sun/star/ucb/TransferInfo.hpp> 42#include <com/sun/star/uno/Sequence.hxx> 43#include <com/sun/star/util/DateTime.hpp> |
44#include <com/sun/star/ucb/Link.hpp> | |
45#include <com/sun/star/ucb/Lock.hpp> 46#include <com/sun/star/ucb/LockEntry.hpp> 47#include "webdavcontent.hxx" 48#include "webdavprovider.hxx" 49#include "DAVSession.hxx" 50#include "ContentProperties.hxx" 51 52using namespace com::sun::star; | 44#include <com/sun/star/ucb/Lock.hpp> 45#include <com/sun/star/ucb/LockEntry.hpp> 46#include "webdavcontent.hxx" 47#include "webdavprovider.hxx" 48#include "DAVSession.hxx" 49#include "ContentProperties.hxx" 50 51using namespace com::sun::star; |
53using namespace webdav_ucp; | 52using namespace http_dav_ucp; |
54 55//========================================================================= 56// 57// ContentProvider implementation. 58// 59//========================================================================= 60 61bool ContentProvider::getProperty( --- 169 unchanged lines hidden (view full) --- 231 DAVProperties::RESOURCETYPE, 232 -1, 233 getCppuType( static_cast< const rtl::OUString * >( 0 ) ), 234 beans::PropertyAttribute::BOUND 235 | beans::PropertyAttribute::READONLY ) ); 236 237 m_pProps->insert( 238 beans::Property( | 53 54//========================================================================= 55// 56// ContentProvider implementation. 57// 58//========================================================================= 59 60bool ContentProvider::getProperty( --- 169 unchanged lines hidden (view full) --- 230 DAVProperties::RESOURCETYPE, 231 -1, 232 getCppuType( static_cast< const rtl::OUString * >( 0 ) ), 233 beans::PropertyAttribute::BOUND 234 | beans::PropertyAttribute::READONLY ) ); 235 236 m_pProps->insert( 237 beans::Property( |
239 DAVProperties::SOURCE, 240 -1, 241 getCppuType( static_cast< 242 const uno::Sequence< ucb::Link > * >( 0 ) ), 243 beans::PropertyAttribute::BOUND ) ); 244 245 m_pProps->insert( 246 beans::Property( | |
247 DAVProperties::SUPPORTEDLOCK, 248 -1, 249 getCppuType( static_cast< 250 const uno::Sequence< 251 ucb::LockEntry > * >( 0 ) ), 252 beans::PropertyAttribute::BOUND 253 | beans::PropertyAttribute::READONLY ) ); 254 --- 414 unchanged lines hidden --- | 238 DAVProperties::SUPPORTEDLOCK, 239 -1, 240 getCppuType( static_cast< 241 const uno::Sequence< 242 ucb::LockEntry > * >( 0 ) ), 243 beans::PropertyAttribute::BOUND 244 | beans::PropertyAttribute::READONLY ) ); 245 --- 414 unchanged lines hidden --- |