summaryrefslogtreecommitdiffstats
path: root/kresources/lib/webdavhandler.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:17:50 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:17:50 -0600
commitb363d2579af0a11b77e698aed2e1021c2233b644 (patch)
treef4a47b87354b7a6a3b266c8121bd8ddaeb7accaa /kresources/lib/webdavhandler.cpp
parent61bddfe3a7226b18c68a76124b727c736f431688 (diff)
downloadtdepim-b363d2579af0a11b77e698aed2e1021c2233b644.tar.gz
tdepim-b363d2579af0a11b77e698aed2e1021c2233b644.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kresources/lib/webdavhandler.cpp')
-rw-r--r--kresources/lib/webdavhandler.cpp194
1 files changed, 0 insertions, 194 deletions
diff --git a/kresources/lib/webdavhandler.cpp b/kresources/lib/webdavhandler.cpp
deleted file mode 100644
index fea7a0b1..00000000
--- a/kresources/lib/webdavhandler.cpp
+++ /dev/null
@@ -1,194 +0,0 @@
-/*
- This file is part of tdepim.
-
- Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
- Copyright (c) 2004 Till Adam <adam@kde.org>
- Copyright (c) 2005 Reinhold Kainhofer <reinhold@kainhofer.com>
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-*/
-
-
-#include <kdebug.h>
-
-#include <tqdatetime.h>
-
-extern "C" {
- #include <libical/ical.h>
-}
-
-
-#include "webdavhandler.h"
-
-WebdavHandler::WebdavHandler()
-{
-}
-
-
-KURL WebdavHandler::toDAV( const KURL& url )
-{
- KURL result( url );
-
- if ( result.protocol() == "http" ) {
- if ( result.port() == 443 ) {
- // OpenGroupware.org returns 'http://server:443' instead of 'https://server'
- result.setProtocol( "webdavs" );
- result.setPort( 0 );
- } else
- result.setProtocol( "webdav" );
- } else if ( result.protocol() == "https" )
- result.setProtocol( "webdavs" );
-
- return result;
-}
-
-
-
-TQDomElement WebdavHandler::addElement( TQDomDocument &doc, TQDomNode &node,
- const TQString &tag, const TQString &value )
-{
- TQDomElement el = doc.createElement( tag );
- node.appendChild( el );
- if ( !value.isNull() ) {
- TQDomText txt = doc.createTextNode( value );
- el.appendChild( txt );
- }
- return el;
-}
-
-TQDomElement WebdavHandler::addElementNS( TQDomDocument &doc, TQDomNode &node,
- const TQString &ns, const TQString &tag, const TQString &value )
-{
- TQDomElement el = doc.createElementNS( ns, tag );
- node.appendChild( el );
- if ( !value.isNull() ) {
- TQDomText txt = doc.createTextNode( value );
- el.appendChild( txt );
- }
- return el;
-}
-
-TQDomElement WebdavHandler::addDavElement( TQDomDocument &doc, TQDomNode &node,
- const TQString &tag, const TQString &value )
-{
- return addElementNS( doc, node, "DAV:", tag, value );
-}
-
-bool WebdavHandler::extractBool( const TQDomElement &node, const TQString &entry, bool &value )
-{
- TQDomElement element = node.namedItem( entry ).toElement();
- if ( !element.isNull() ) {
- value = (element.text() != "0");
- return true;
- }
- return false;
-}
-
-bool WebdavHandler::extractLong( const TQDomElement &node, const TQString &entry, long &value )
-{
- TQDomElement element = node.namedItem( entry ).toElement();
- if ( !element.isNull() ) {
- value = element.text().toLong();
- return true;
- }
- return false;
-}
-
-bool WebdavHandler::extractFloat( const TQDomElement &node, const TQString &entry, float &value )
-{
- TQDomElement element = node.namedItem( entry ).toElement();
- if ( !element.isNull() ) {
- value = element.text().toFloat();
- return true;
- }
- return false;
-}
-
-bool WebdavHandler::extractDateTime( const TQDomElement &node, const TQString &entry, TQDateTime &value )
-{
- TQDomElement element = node.namedItem( entry ).toElement();
- if ( !element.isNull() && !element.text().isEmpty() ) {
- value = TQDateTime::fromString( element.text(), Qt::ISODate );
- return true;
- }
- return false;
-}
-
-bool WebdavHandler::extractString( const TQDomElement &node, const TQString &entry, TQString &value )
-{
- TQDomElement element = node.namedItem( entry ).toElement();
- if ( !element.isNull() ) {
- value = element.text();
- return true;
- }
- return false;
-}
-
-bool WebdavHandler::extractStringList( const TQDomElement &node, const TQString &entry, TQStringList &value )
-{
- TQDomElement element = node.namedItem( entry ).toElement();
- if ( !element.isNull() ) {
- value.clear();
- TQDomNodeList list = element.elementsByTagNameNS( "xml:", "v" );
- for( uint i=0; i < list.count(); i++ ) {
- TQDomElement item = list.item(i).toElement();
- value.append( item.text() );
- }
- return true;
- }
- return false;
-}
-
-
-const TQString WebdavHandler::getEtagFromHeaders( const TQString& headers )
-{
- int start = headers.find( "etag:", 0, false );
- if ( start < 0 ) return TQString();
- start += 6;
- return headers.mid( start, headers.find( "\n", start ) - start );
-}
-
-//TODO: should not call libical functions directly -- better to make
-// a new libkcal abstraction method.
-TQDateTime WebdavHandler::utcAsZone( const TQDateTime& utc, const TQString& timeZoneId )
-{
- int daylight;
- TQDateTime epoch;
- epoch.setTime_t( 0 );
- time_t v = epoch.secsTo( utc );
- struct icaltimetype tt =
- icaltime_from_timet_with_zone( v, 0 /*is_date*/,
- icaltimezone_get_builtin_timezone( "UTC" ) );
- int offset = icaltimezone_get_utc_offset(
- icaltimezone_get_builtin_timezone( timeZoneId.latin1() ),
- &tt, &daylight );
-kdDebug() << "Calculated offset of: " << offset << " of timezone: " << timeZoneId << endl;
- return utc.addSecs( offset );
-}
-
-//TODO: should not call libical functions directly -- better to make
-// a new libkcal abstraction method.
-TQDateTime WebdavHandler::zoneAsUtc( const TQDateTime& zone, const TQString& timeZoneId )
-{
- int daylight;
- TQDateTime epoch;
- epoch.setTime_t( 0 );
- time_t v = epoch.secsTo( zone );
- struct icaltimetype tt = icaltime_from_timet( v, 0 ); // 0: is_date=false
- int offset = icaltimezone_get_utc_offset(
- icaltimezone_get_builtin_timezone( timeZoneId.latin1() ),
- &tt, &daylight );
- return zone.addSecs( - offset );
-}