diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch) | |
tree | 67208f7c145782a7e90b123b982ca78d88cc2c87 /kresources/lib/webdavhandler.h | |
download | tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kresources/lib/webdavhandler.h')
-rw-r--r-- | kresources/lib/webdavhandler.h | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/kresources/lib/webdavhandler.h b/kresources/lib/webdavhandler.h new file mode 100644 index 000000000..cdf616e9c --- /dev/null +++ b/kresources/lib/webdavhandler.h @@ -0,0 +1,78 @@ +/* + This file is part of kdepim. + + Copyright (c) 2004 Cornelius Schumacher <[email protected]> + Copyright (c) 2004 Till Adam <[email protected]> + Copyright (c) 2005 Reinhold Kainhofer <[email protected]> + + 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. +*/ +#ifndef WEBDAVHANDLER_H +#define WEBDAVHANDLER_H + +#include <qstring.h> +#include <qstringlist.h> +#include <qdom.h> +#include <qdatetime.h> +#include <kurl.h> +#include <kdepimmacros.h> + +class KDE_EXPORT WebdavHandler +{ + public: + WebdavHandler(); + + static KURL toDAV( const KURL& url ); + + + static QDomElement addElementNS( QDomDocument &doc, QDomNode &node, + const QString &ns, const QString &tag, + const QString &value = QString::null ); + static QDomElement addElement( QDomDocument &, QDomNode &, + const QString &tag, const QString &value = QString::null ); + static QDomElement addDavElement( QDomDocument &, QDomNode &, + const QString &tag, const QString &value = QString::null ); + + static bool extractBool( const QDomElement &node, + const QString &entry, bool &value ); + static bool extractLong( const QDomElement &node, + const QString &entry, long &value ); + static bool extractFloat( const QDomElement &node, + const QString &entry, float &value ); + static bool extractDateTime( const QDomElement &node, + const QString &entry, QDateTime &value ); + static bool extractString( const QDomElement &node, + const QString &entry, QString &value ); + static bool extractStringList( const QDomElement &node, + const QString &entry, QStringList &value ); + + /** + * Returns the value of the "etag" header if it can be found in the headers. + */ + static const QString getEtagFromHeaders( const QString& ); + + + /** + * Return the representation of utc time in the time zone indicated by timeZoneId + */ + static QDateTime utcAsZone( const QDateTime& utc, const QString& timeZoneId ); + + /** + * Return the UTC representation of local time in the time zone indicated by timeZoneId + */ + static QDateTime zoneAsUtc( const QDateTime& zone, const QString& timeZoneId ); +}; + +#endif |