diff options
Diffstat (limited to 'kresources/groupdav')
-rw-r--r-- | kresources/groupdav/Makefile.am | 52 | ||||
-rw-r--r-- | kresources/groupdav/groupdavaddressbookadaptor.cpp | 54 | ||||
-rw-r--r-- | kresources/groupdav/groupdavaddressbookadaptor.h | 79 | ||||
-rw-r--r-- | kresources/groupdav/groupdavcalendaradaptor.cpp | 46 | ||||
-rw-r--r-- | kresources/groupdav/groupdavcalendaradaptor.h | 84 | ||||
-rw-r--r-- | kresources/groupdav/groupdavglobals.cpp | 287 | ||||
-rw-r--r-- | kresources/groupdav/groupdavglobals.h | 73 | ||||
-rw-r--r-- | kresources/groupdav/kabc_groupdav.desktop | 52 | ||||
-rw-r--r-- | kresources/groupdav/kabc_resourcegroupdav.cpp | 47 | ||||
-rw-r--r-- | kresources/groupdav/kabc_resourcegroupdav.h | 44 | ||||
-rw-r--r-- | kresources/groupdav/kabc_resourcegroupdav_plugin.cpp | 42 | ||||
-rw-r--r-- | kresources/groupdav/kcal_groupdav.desktop | 52 | ||||
-rw-r--r-- | kresources/groupdav/kcal_resourcegroupdav.cpp | 52 | ||||
-rw-r--r-- | kresources/groupdav/kcal_resourcegroupdav.h | 47 | ||||
-rw-r--r-- | kresources/groupdav/kcal_resourcegroupdav_plugin.cpp | 43 | ||||
-rw-r--r-- | kresources/groupdav/uninstall.desktop | 2 |
16 files changed, 1056 insertions, 0 deletions
diff --git a/kresources/groupdav/Makefile.am b/kresources/groupdav/Makefile.am new file mode 100644 index 000000000..2966d6256 --- /dev/null +++ b/kresources/groupdav/Makefile.am @@ -0,0 +1,52 @@ +INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/kresources/lib \ + -I../lib $(all_includes) + +lib_LTLIBRARIES = libkcal_groupdav.la libkabc_groupdav.la +noinst_LTLIBRARIES = libkgroupdav.la + +libkgroupdav_la_SOURCES = groupdavglobals.cpp + +libkcal_groupdav_la_SOURCES = groupdavcalendaradaptor.cpp kcal_resourcegroupdav.cpp +libkcal_groupdav_la_LDFLAGS = $(KDE_RPATH) $(all_libraries) \ + -version-info 1:0:0 -no-undefined +libkcal_groupdav_la_LIBADD = \ + libkgroupdav.la ../lib/libkgroupwaredav.la \ + $(top_builddir)/libkcal/libkcal.la $(top_builddir)/libkdepim/libkdepim.la + +libkabc_groupdav_la_SOURCES = kabc_resourcegroupdav.cpp groupdavaddressbookadaptor.cpp +libkabc_groupdav_la_LDFLAGS = $(KDE_RPATH) $(all_libraries) \ + -version-info 1:0:0 -no-undefined +libkabc_groupdav_la_LIBADD = \ + libkgroupdav.la ../lib/libkgroupwaredav.la \ + $(top_builddir)/libkcal/libkcal.la $(top_builddir)/libkdepim/libkdepim.la \ + -lkabc + +kde_module_LTLIBRARIES = kcal_groupdav.la kabc_groupdav.la + +kcal_groupdav_la_SOURCES = kcal_resourcegroupdav_plugin.cpp +kcal_groupdav_la_LDFLAGS = $(all_libraries) -module -no-undefined $(KDE_PLUGIN) +kcal_groupdav_la_LIBADD = libkcal_groupdav.la + +kabc_groupdav_la_SOURCES = kabc_resourcegroupdav_plugin.cpp +kabc_groupdav_la_LDFLAGS = $(all_libraries) -module -no-undefined $(KDE_PLUGIN) +kabc_groupdav_la_LIBADD = libkabc_groupdav.la + +kcal_servicedir = $(kde_servicesdir)/kresources/kcal +kcal_service_DATA = kcal_groupdav.desktop + +kabc_servicedir = $(kde_servicesdir)/kresources/kabc +kabc_service_DATA = kabc_groupdav.desktop + +METASOURCES = AUTO + +install-data-local: uninstall.desktop + $(mkinstalldirs) $(DESTDIR)$(kde_servicesdir)/kresources/kabc + $(mkinstalldirs) $(DESTDIR)$(kde_servicesdir)/kresources/kcal + $(INSTALL_DATA) $(srcdir)/uninstall.desktop $(DESTDIR)$(kde_servicesdir)/kresources/kabc/kabc_opengroupware.desktop + $(INSTALL_DATA) $(srcdir)/uninstall.desktop $(DESTDIR)$(kde_servicesdir)/kresources/kcal/kcal_opengroupware.desktop + +messages: rc.cpp + $(XGETTEXT) *.cpp -o $(podir)/kres_groupdav.pot + +kabc_resourcegroupdav.lo: ../lib/kresources_groupwareprefs.h + diff --git a/kresources/groupdav/groupdavaddressbookadaptor.cpp b/kresources/groupdav/groupdavaddressbookadaptor.cpp new file mode 100644 index 000000000..538d07159 --- /dev/null +++ b/kresources/groupdav/groupdavaddressbookadaptor.cpp @@ -0,0 +1,54 @@ +/* + This file is part of kdepim. + + 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 library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#include "groupdavaddressbookadaptor.h" +#include "groupdavglobals.h" +#include "davgroupwareglobals.h" +#include "webdavhandler.h" + +#include <kabc/addressee.h> +#include <kabc/vcardconverter.h> +#include <kabcresourcecached.h> + +#include <kio/job.h> +#include <kdebug.h> + +using namespace KABC; + +GroupDavAddressBookAdaptor::GroupDavAddressBookAdaptor() : DavAddressBookAdaptor() +{ +} + +void GroupDavAddressBookAdaptor::customAdaptDownloadUrl( KURL &url ) +{ + url = WebdavHandler::toDAV( url ); +} + +void GroupDavAddressBookAdaptor::customAdaptUploadUrl( KURL &url ) +{ +kdDebug()<<"GroupDavAddressBookAdaptor::adaptUploadUrl( "<<url.url()<<")"<<endl; + url = WebdavHandler::toDAV( url ); +// url.setPath( url.path() + "/new.vcf" ); +// url.addPath( "new.vcf" ); +kdDebug()<<"after GroupDavAddressBookAdaptor::adaptUploadUrl( "<<url.url()<<")"<<endl; +} diff --git a/kresources/groupdav/groupdavaddressbookadaptor.h b/kresources/groupdav/groupdavaddressbookadaptor.h new file mode 100644 index 000000000..377b71622 --- /dev/null +++ b/kresources/groupdav/groupdavaddressbookadaptor.h @@ -0,0 +1,79 @@ + /* + This file is part of kdepim. + + 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 library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ +#ifndef KABC_GROUPDAVADDRESSBOOKADAPTOR_H +#define KABC_GROUPDAVADDRESSBOOKADAPTOR_H + +#include "davaddressbookadaptor.h" +#include "groupdavglobals.h" +#include <davgroupwareglobals.h> +#include <kabc/addressee.h> +#include <kurl.h> + +#include <qdom.h> + +namespace KABC { + +class GroupDavAddressBookAdaptor : public DavAddressBookAdaptor +{ + public: + GroupDavAddressBookAdaptor(); + + void customAdaptDownloadUrl( KURL &url ); + void customAdaptUploadUrl( KURL &url ); + QString mimeType() const { return "text/x-vcard"; } + QCString identifier() const { return "KABCResourceGroupDAV"; } + QString defaultNewItemName( KPIM::GroupwareUploadItem */*item*/ ) { return "new.vcf"; } + long flags() const { return 0; } + + + // Creating Jobs + KIO::Job *createListFoldersJob( const KURL &url ) + { return GroupDavGlobals::createListFoldersJob( url ); } + KIO::TransferJob *createListItemsJob( const KURL &url ) + { return GroupDavGlobals::createListItemsJob( url ); } + KIO::TransferJob *createDownloadJob( const KURL &url, KPIM::FolderLister::ContentType ctype ) + { return GroupDavGlobals::createDownloadJob( this, url, ctype ); } + KIO::Job *createRemoveJob( const KURL &uploadurl, KPIM::GroupwareUploadItem *deletedItem ) + { return GroupDavGlobals::createRemoveJob( this, uploadurl, deletedItem ); } + + + // Interpreting Jobs + bool interpretListItemsJob( KIO::Job *job, const QString &/*jobData*/ ) + { return GroupDavGlobals::interpretListItemsJob( this, job ); } + bool interpretDownloadItemsJob( KIO::Job *job, const QString &jobData ) + { return GroupDavGlobals::interpretAddressBookDownloadItemsJob( + this, job, jobData ); } + + + bool getFolderHasSubs( const QDomNode &folderNode ) + { return GroupDavGlobals::getFolderHasSubs( folderNode ); } + KPIM::FolderLister::ContentType getContentType( const QDomNode &folderNode ) + { return GroupDavGlobals::getContentType( folderNode ); } +}; + +} + + + + +#endif diff --git a/kresources/groupdav/groupdavcalendaradaptor.cpp b/kresources/groupdav/groupdavcalendaradaptor.cpp new file mode 100644 index 000000000..b83a9d4e5 --- /dev/null +++ b/kresources/groupdav/groupdavcalendaradaptor.cpp @@ -0,0 +1,46 @@ +/* + This file is part of kdepim. + + 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 library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#include "groupdavcalendaradaptor.h" +#include "webdavhandler.h" + +#include <kdebug.h> + +using namespace KCal; + +GroupDavCalendarAdaptor::GroupDavCalendarAdaptor() : DavCalendarAdaptor() +{ +} + +void GroupDavCalendarAdaptor::customAdaptDownloadUrl( KURL &url ) +{ + url = WebdavHandler::toDAV( url ); +} + +void GroupDavCalendarAdaptor::customAdaptUploadUrl( KURL &url ) +{ + url = WebdavHandler::toDAV( url ); + // FIXME: Find a good place where we can obtain the path for a new item +// url.setPath( url.path() + "/new.ics" ); +} + diff --git a/kresources/groupdav/groupdavcalendaradaptor.h b/kresources/groupdav/groupdavcalendaradaptor.h new file mode 100644 index 000000000..c4434d064 --- /dev/null +++ b/kresources/groupdav/groupdavcalendaradaptor.h @@ -0,0 +1,84 @@ + /* + This file is part of kdepim. + + 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 library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ +#ifndef KCAL_GROUPDAVCALENDARADAPTOR_H +#define KCAL_GROUPDAVCALENDARADAPTOR_H + +#include "davcalendaradaptor.h" +#include "groupwareuploadjob.h" +#include "groupdavglobals.h" +#include <davgroupwareglobals.h> + +#include <kurl.h> + +namespace KIO { +class Job; +} + +namespace KCal { + +class GroupDavCalendarAdaptor : public DavCalendarAdaptor +{ + public: + GroupDavCalendarAdaptor(); + + QValueList<KPIM::FolderLister::ContentType> supportedTypes() + { + QValueList<KPIM::FolderLister::ContentType> types; + types << KPIM::FolderLister::Event; + types << KPIM::FolderLister::Todo; + return types; + } + void customAdaptDownloadUrl( KURL &url ); + void customAdaptUploadUrl( KURL &url ); + QCString identifier() const { return "KCalResourceGroupDAV"; } + QString defaultNewItemName( KPIM::GroupwareUploadItem */*item*/ ) { return "new.ics"; } + long flags() const { return 0; } + + + // Creating Jobs + KIO::Job *createListFoldersJob( const KURL &url ) + { return GroupDavGlobals::createListFoldersJob( url ); } + KIO::TransferJob *createListItemsJob( const KURL &url ) + { return GroupDavGlobals::createListItemsJob( url ); } + KIO::TransferJob *createDownloadJob( const KURL &url, KPIM::FolderLister::ContentType ctype ) + { return GroupDavGlobals::createDownloadJob( this, url, ctype ); } + KIO::Job *createRemoveJob( const KURL &uploadurl, KPIM::GroupwareUploadItem *deletedItem ) + { return GroupDavGlobals::createRemoveJob( this, uploadurl, deletedItem ); } + + + // Interpreting Jobs + bool interpretListItemsJob( KIO::Job *job, const QString &/*jobData*/ ) + { return GroupDavGlobals::interpretListItemsJob( this, job ); } + bool interpretDownloadItemsJob( KIO::Job *job, const QString &jobData ) + { return GroupDavGlobals::interpretCalendarDownloadItemsJob( this, job, jobData ); } + + + bool getFolderHasSubs( const QDomNode &folderNode ) + { return GroupDavGlobals::getFolderHasSubs( folderNode ); } + KPIM::FolderLister::ContentType getContentType( const QDomNode &folderNode ) + { return GroupDavGlobals::getContentType( folderNode ); } +}; +} + + +#endif diff --git a/kresources/groupdav/groupdavglobals.cpp b/kresources/groupdav/groupdavglobals.cpp new file mode 100644 index 000000000..f94180195 --- /dev/null +++ b/kresources/groupdav/groupdavglobals.cpp @@ -0,0 +1,287 @@ +/* + This file is part of kdepim. + + 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 library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#include "groupdavglobals.h" +#include "groupwaredataadaptor.h" +#include <webdavhandler.h> +#include <libemailfunctions/idmapper.h> +#include <calendaradaptor.h> +#include <addressbookadaptor.h> + +#include <libkcal/calendarlocal.h> +#include <libkcal/icalformat.h> +#include <libkcal/resourcecached.h> +#include <kabc/vcardconverter.h> + +#include <kdebug.h> +#include <kio/davjob.h> +#include <kio/job.h> + +QString GroupDavGlobals::extractFingerprint( KIO::Job *job, const QString &/*jobData*/ ) +{ + const QString& headers = job->queryMetaData( "HTTP-Headers" ); + return WebdavHandler::getEtagFromHeaders( headers ); +} + + +KPIM::FolderLister::ContentType GroupDavGlobals::getContentType( const QDomElement &prop ) +{ + QDomElement ctype = prop.namedItem("getcontenttype").toElement(); + if ( ctype.isNull() ) return KPIM::FolderLister::Unknown; + const QString &type = ctype.text(); +kdDebug()<<"Found content type: "<<type<<endl; + /// TODO: Not yet implemented in GroupDav! + return KPIM::FolderLister::Unknown; +} + + +KPIM::FolderLister::ContentType GroupDavGlobals::getContentType( const QDomNode &folderNode ) +{ + QDomNode n4; +kdDebug()<<"GroupDavGlobals::getContentType(...)"<<endl; + int type = KPIM::FolderLister::Unknown; + for( n4 = folderNode.firstChild(); !n4.isNull(); n4 = n4.nextSibling() ) { + QDomElement e = n4.toElement(); + + if ( e.tagName() == "resourcetype" ) { + if ( !e.namedItem( "vevent-collection" ).isNull() ) + type |= KPIM::FolderLister::Event; + if ( !e.namedItem( "vtodo-collection" ).isNull() ) + type |= KPIM::FolderLister::Todo; + if ( !e.namedItem( "vjournal-collection" ).isNull() ) + type |= KPIM::FolderLister::Journal; + if ( !e.namedItem( "vcard-collection" ).isNull() ) + type |= KPIM::FolderLister::Contact; + if ( (type == KPIM::FolderLister::Unknown) && + !( e.namedItem( "collection" ).isNull() ) ) + type |= KPIM::FolderLister::Folder; + } + } + return (KPIM::FolderLister::ContentType)type; +} + +bool GroupDavGlobals::getFolderHasSubs( const QDomNode &folderNode ) +{ + // a folder is identified by the collection item in the resourcetype: + // <a:resourcetype xmlns:a="DAV:"><a:collection xmlns:a="DAV:"/>...</a:resourcetype> + QDomElement e = folderNode.namedItem("resourcetype").toElement(); + if ( !e.namedItem( "collection" ).isNull() ) + return true; + else return false; +} + + + + +KIO::Job *GroupDavGlobals::createListFoldersJob( const KURL &url ) +{ + QDomDocument doc; + QDomElement root = WebdavHandler::addDavElement( doc, doc, "d:propfind" ); + QDomElement prop = WebdavHandler::addElement( doc, root, "d:prop" ); + WebdavHandler::addElement( doc, prop, "d:displayname" ); + WebdavHandler::addElement( doc, prop, "d:resourcetype" ); +// WebdavHandler::addElement( doc, prop, "d:hassubs" ); + + kdDebug(7000) << "props: " << doc.toString() << endl; + return KIO::davPropFind( url, doc, "1", false ); +} + + +KIO::TransferJob *GroupDavGlobals::createListItemsJob( const KURL &url ) +{ + QDomDocument doc; + QDomElement root = WebdavHandler::addDavElement( doc, doc, "propfind" ); + QDomElement prop = WebdavHandler::addDavElement( doc, root, "prop" ); + WebdavHandler::addDavElement( doc, prop, "getetag" ); +// WebdavHandler::addDavElement( doc, prop, "getcontenttype" ); + kdDebug(5800) << "props = "<< doc.toString() << endl; + KIO::TransferJob *job = KIO::davPropFind( url, doc, "1", false ); + if ( job ) { + job->addMetaData( "accept", "text/xml" ); + job->addMetaData( "customHTTPHeader", "accept-encoding: " ); + } + return job; +} + + +KIO::TransferJob *GroupDavGlobals::createDownloadJob( KPIM::GroupwareDataAdaptor *adaptor, + const KURL &url, KPIM::FolderLister::ContentType /*ctype*/ ) +{ +kdDebug()<<"GroupDavGlobals::createDownloadJob, url="<<url.url()<<endl; + KIO::TransferJob *job = KIO::get( url, false, false ); + if ( adaptor ) { + QString mt = adaptor->mimeType(); + job->addMetaData( "accept", mt ); + } + job->addMetaData( "PropagateHttpHeader", "true" ); + return job; +} + + +KIO::Job *GroupDavGlobals::createRemoveJob( KPIM::GroupwareDataAdaptor *adaptor, const KURL &/*uploadurl*/, + KPIM::GroupwareUploadItem *deletedItem ) +{ + if ( !deletedItem ) return 0; + //kdDebug(7000) << "Delete: " << endl << format.toICalString(*it) << endl; + KURL url( deletedItem->url() ); + if ( adaptor ) { + adaptor->adaptUploadUrl( url ); + } + KIO::Job *delJob = 0; + if ( !url.isEmpty() ) { + kdDebug(5700) << "Delete: " << url.url() << endl; + delJob = KIO::file_delete( url, false ); + } + if ( delJob && adaptor && adaptor->idMapper() ) { + kdDebug(5800 ) << "Adding If-Match metadata: " << adaptor->idMapper()->fingerprint( deletedItem->uid() ) << endl; + delJob->addMetaData( "customHTTPHeader", "If-Match: " + adaptor->idMapper()->fingerprint( deletedItem->uid() ) ); + } + return delJob; + +/* QStringList urls; + KPIM::GroupwareUploadItem::List::const_iterator it; + kdDebug(5800) << " GroupDavGlobals::createRemoveJob, BaseURL="<<uploadurl.url()<<endl; + for ( it = deletedItems.constBegin(); it != deletedItems.constEnd(); ++it ) { + //kdDebug(7000) << "Delete: " << endl << format.toICalString(*it) << endl; + KURL url( (*it)->url() ); + if ( adaptor ) { + adaptor->adaptUploadUrl( url ); + }*/ +/* KURL url( uploadurl ); + url.setPath( (*it)->url().path() ); + if ( !(*it)->url().isEmpty() )*/ +/* if ( !url.isEmpty() ) { +kdDebug() << "Deleting item at "<< url.url() << endl; + urls << url.url(); + } + kdDebug(5700) << "Delete (Mod) : " << url.url() << endl; + } + return KIO::file_del( urls, false, false );*/ +} + + + + +bool GroupDavGlobals::interpretListItemsJob( KPIM::GroupwareDataAdaptor *adaptor, + KIO::Job *job ) +{ + KIO::DavJob *davjob = dynamic_cast<KIO::DavJob *>(job); + + if ( !davjob ) { + return false; + } + QDomDocument doc = davjob->response(); + + kdDebug(7000) << " Doc: " << doc.toString() << endl; + kdDebug(7000) << " IdMapper: " << adaptor->idMapper()->asString() << endl; + + QDomElement docElem = doc.documentElement(); + QDomNode n = docElem.firstChild(); + while( !n.isNull() ) { + QDomElement e = n.toElement(); // try to convert the node to an element. + n = n.nextSibling(); + if ( e.isNull() ) + continue; + + const KURL &entry( e.namedItem("href").toElement().text() ); + QDomElement propstat = e.namedItem("propstat").toElement(); + if ( propstat.isNull() ) + continue; + QDomElement prop = propstat.namedItem( "prop" ).toElement(); + if ( prop.isNull() ) + continue; + QDomElement elem = prop.namedItem("getetag").toElement(); + const QString &newFingerprint = elem.text(); + if ( elem.isNull() || newFingerprint.isEmpty() ) + continue; + + KPIM::FolderLister::ContentType type = getContentType( prop ); + + adaptor->processDownloadListItem( entry, newFingerprint, type ); + } + + return true; +} + + +bool GroupDavGlobals::interpretCalendarDownloadItemsJob( KCal::CalendarAdaptor *adaptor, + KIO::Job *job, const QString &jobData ) +{ +kdDebug(5800) << "GroupDavGlobals::interpretCalendarDownloadItemsJob, iCalendar=" << endl; +kdDebug(5800) << jobData << endl; + if ( !adaptor || !job ) return false; + KCal::CalendarLocal calendar( QString::fromLatin1("UTC") ); + KCal::ICalFormat ical; + calendar.setTimeZoneId( adaptor->resource()->timeZoneId() ); + KCal::Incidence::List incidences; + if ( ical.fromString( &calendar, jobData ) ) { + KCal::Incidence::List raw = calendar.rawIncidences(); + KCal::Incidence::List::Iterator it = raw.begin(); + if ( raw.count() != 1 ) { + kdError() << "Parsed iCalendar does not contain exactly one event." << endl; + return false; + } + + KCal::Incidence *inc = (raw.front())->clone(); + if ( !inc ) return false; + KIO::SimpleJob *sjob = dynamic_cast<KIO::SimpleJob *>(job); + KURL remoteId; + if ( sjob ) remoteId = sjob->url(); + QString fingerprint = extractFingerprint( job, jobData ); + adaptor->calendarItemDownloaded( inc, inc->uid(), remoteId, fingerprint, + remoteId.prettyURL() ); + return true; + } else { + kdError() << "Unable to parse iCalendar" << endl; + } + return false; +} + + +bool GroupDavGlobals::interpretAddressBookDownloadItemsJob( + KABC::AddressBookAdaptor *adaptor, KIO::Job *job, const QString &jobData ) +{ +kdDebug(5800) << "GroupDavGlobals::interpretAddressBookDownloadItemsJob, vCard=" << endl; +kdDebug(5800) << jobData << endl; + if ( !adaptor || !job ) return false; + + KABC::VCardConverter conv; + KABC::Addressee::List addrs( conv.parseVCards( jobData ) ); + + if ( addrs.count() != 1 ) { + kdError() << "Parsed vCard does not contain exactly one addressee." << endl; + return false; + } + + KABC::Addressee a = addrs.first(); + + KIO::SimpleJob *sjob = dynamic_cast<KIO::SimpleJob*>(job); + KURL remoteId; + if ( sjob ) remoteId = sjob->url(); + QString fingerprint = extractFingerprint( job, jobData ); + adaptor->addressbookItemDownloaded( a, a.uid(), remoteId, fingerprint, + remoteId.prettyURL() ); + return true; +} + + diff --git a/kresources/groupdav/groupdavglobals.h b/kresources/groupdav/groupdavglobals.h new file mode 100644 index 000000000..dc379f94e --- /dev/null +++ b/kresources/groupdav/groupdavglobals.h @@ -0,0 +1,73 @@ + /* + This file is part of kdepim. + + Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org> + Copyright (c) 2004 Till Adam <adam@kde.org> + Copyright (C) 2004-2005 Reinhold Kainhofer <reinhold@kainhofer.com> + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ +#ifndef GROUPDAVGLOBALS_H +#define GROUPDAVGLOBALS_H + +#include <groupwareuploadjob.h> +#include <folderlister.h> +#include <kurl.h> +#include <qdom.h> + +namespace KPIM { +class GroupwareDataAdaptor; +class GroupwareUploadItem; +} +namespace KIO { +class TransferJob; +class Job; +} +namespace KABC { +class AddressBookAdaptor; +} +namespace KCal { +class CalendarAdaptor; +} + +class GroupDavGlobals +{ + public: + GroupDavGlobals() {} + static QString extractFingerprint( KIO::Job *job, const QString &/*jobData*/ ); + static KPIM::FolderLister::ContentType getContentType( const QDomElement &prop ); + static KPIM::FolderLister::ContentType getContentType( const QDomNode &folderNode ); + static bool getFolderHasSubs( const QDomNode &folderNode ); + + + static KIO::Job *createListFoldersJob( const KURL &url ); + static KIO::TransferJob *createListItemsJob( const KURL &url ); + static KIO::TransferJob *createDownloadJob( KPIM::GroupwareDataAdaptor *adaptor, + const KURL &url, KPIM::FolderLister::ContentType ctype ); + static KIO::Job *createRemoveJob( KPIM::GroupwareDataAdaptor *adaptor, const KURL &uploadurl, + KPIM::GroupwareUploadItem *deletedItems ); + + + static bool interpretListItemsJob( KPIM::GroupwareDataAdaptor *adaptor, + KIO::Job *job ); + static bool interpretCalendarDownloadItemsJob( KCal::CalendarAdaptor *adaptor, + KIO::Job *job, const QString &jobData ); + static bool interpretAddressBookDownloadItemsJob( KABC::AddressBookAdaptor *adaptor, + KIO::Job *job, const QString &jobData ); + +}; + +#endif diff --git a/kresources/groupdav/kabc_groupdav.desktop b/kresources/groupdav/kabc_groupdav.desktop new file mode 100644 index 000000000..2d40ff75c --- /dev/null +++ b/kresources/groupdav/kabc_groupdav.desktop @@ -0,0 +1,52 @@ +[Desktop Entry] +Name=GroupDAV Server (e.g. OpenGroupware) +Name[af]=GroupDAV bediener (bv. OpenGroupware) +Name[bg]=Сървър GroupDAV (e.g. OpenGroupware) +Name[br]=Servijer GroupDAV (e.g. OpenGroupware) +Name[ca]=Servidor GroupDAV (p.ex. OpenGroupware) +Name[cs]=GroupDAV server (např. OpenGroupware) +Name[da]=GroupDAV-server (f.eks. OpenGroupware) +Name[de]=GroupDAV-Server (z. B. OpenGroupware) +Name[el]=Εξυπηρετητής GroupDAV (π.χ. OpenGroupware) +Name[es]=Servidor GroupDAV (por ejemplo, OpenGroupware) +Name[et]=GroupDAV server (nt. OpenGroupware) +Name[eu]=GroupDAV zerbitzaria (adib. OpenGroupware) +Name[fa]=کارساز GroupDAV (مثلاً OpenGroupware) +Name[fi]=GroupDAV-palvelin (esim. OpenGroupware) +Name[fr]=GroupDAV Serveur (ex. OpenGroupware) +Name[fy]=GroupDAV-tsjinner (OpenGroupware) +Name[ga]=Freastalaí GroupDAV (m.sh. OpenGroupware) +Name[gl]=Servidor GroupDAV (e.g. OpenGroupware) +Name[hu]=GroupDAV-kiszolgáló (pl. OpenGroupware) +Name[is]=GroupDAV þjónn (t.d. OpenGroupware) +Name[it]=Server GroupDAV (per es. OpenGroupware) +Name[ja]=GroupDAV サーバ (例 OpenGroupware) +Name[ka]=სერვერი GroupDAV (მაგ., OpenGroupware) +Name[kk]=GroupDAV сервері (мысалы OpenGroupware) +Name[km]=ម៉ាស៊ីនបម្រើ GroupDAV (ឧ. OpenGroupware) +Name[lt]=GroupDAV serveris (pvz.: OpenGroupware) +Name[ms]=Pelayan GroupDAV (misalnya OpenGroupware) +Name[nb]=GroupDAV-tjener (f.eks. OpenGroupware) +Name[nds]=GroupDAV-Server (t.B. OpenGroupware) +Name[ne]=समूह DAV सर्भर (जस्तै: खुला ग्रुपवेयर) +Name[nl]=GroupDAV-server (OpenGroupware) +Name[nn]=GroupDAV-tenar (t.d. OpenGroupware) +Name[pl]=Serwer GroupDAV (np. OpenGroupware) +Name[pt]=Servidor GroupDAV (por exemplo OpenGroupware) +Name[pt_BR]=Servidor GroupDav (p. ex. OpenGroupware) +Name[ru]=Сервер GroupDAV (например, OpenGroupware) +Name[sk]=GroupDAV Server (napr. OpenGroupware) +Name[sl]=Strežnik GroupDAV (npr. OpenGroupware) +Name[sr]=GroupDAV сервер (нпр. OpenGroupware) +Name[sr@Latn]=GroupDAV server (npr. OpenGroupware) +Name[sv]=GroupDAV-server (t.ex. OpenGroupware) +Name[ta]=GroupDAV சேவகன் (e.g. OpenGroupware) +Name[tr]=GroupDAV Sunucusu (ör. OpenGroupware) +Name[uk]=Сервер GroupDAV (напр., OpenGroupware) +Name[zh_CN]=GroupDAV 服务器(如 OpenGroupware) +Name[zh_TW]=GroupDAV 伺服器 (如: OpenGroupware) +X-KDE-Library=kabc_groupdav +Type=Service +ServiceTypes=KResources/Plugin +X-KDE-ResourceFamily=contact +X-KDE-ResourceType=groupdav diff --git a/kresources/groupdav/kabc_resourcegroupdav.cpp b/kresources/groupdav/kabc_resourcegroupdav.cpp new file mode 100644 index 000000000..b1fb46aa2 --- /dev/null +++ b/kresources/groupdav/kabc_resourcegroupdav.cpp @@ -0,0 +1,47 @@ +/* + This file is part of kdepim. + + 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 "groupdavaddressbookadaptor.h" +#include "kresources_groupwareprefs.h" + +#include "kabc_resourcegroupdav.h" + +using namespace KABC; + +ResourceGroupDav::ResourceGroupDav( const KConfig *config ) + : ResourceGroupwareBase( config ) +{ + init(); + if ( config ) readConfig( config ); +} + +void ResourceGroupDav::init() +{ + setType( "ResourceGroupDav" ); + setPrefs( createPrefs() ); + setFolderLister( new KPIM::FolderLister( KPIM::FolderLister::AddressBook ) ); + setAdaptor( new GroupDavAddressBookAdaptor() ); + + ResourceGroupwareBase::init(); +} + +#include "kabc_resourcegroupdav.moc" diff --git a/kresources/groupdav/kabc_resourcegroupdav.h b/kresources/groupdav/kabc_resourcegroupdav.h new file mode 100644 index 000000000..807e0ec3a --- /dev/null +++ b/kresources/groupdav/kabc_resourcegroupdav.h @@ -0,0 +1,44 @@ +/* + This file is part of kdepim. + + 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. +*/ +#ifndef KABC_RESOURCEGROUPDAV_H +#define KABC_RESOURCEGROUPDAV_H + +#include "kabc_resourcegroupwarebase.h" +#include <kdepimmacros.h> + +namespace KABC { + +class KDE_EXPORT ResourceGroupDav : public ResourceGroupwareBase +{ + Q_OBJECT + + public: + ResourceGroupDav( const KConfig * ); +// ResourceGroupDav( const KURL &url, +// const QString &user, const QString &password ); + protected: + void init(); +}; + +} + +#endif diff --git a/kresources/groupdav/kabc_resourcegroupdav_plugin.cpp b/kresources/groupdav/kabc_resourcegroupdav_plugin.cpp new file mode 100644 index 000000000..15e12e63b --- /dev/null +++ b/kresources/groupdav/kabc_resourcegroupdav_plugin.cpp @@ -0,0 +1,42 @@ +/* + This file is part of kdepim. + + 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 "kabc_resourcegroupdav.h" +#include "kabc_resourcegroupwarebaseconfig.h" + +#include <kglobal.h> +#include <klocale.h> + +using namespace KABC; + +typedef KRES::PluginFactory< ResourceGroupDav, ResourceGroupwareBaseConfig > GroupDavFactory; +// FIXME: Use K_EXPORT_COMPONENT_FACTORY( kabc_groupdav, GroupDavFactory ); here +// Problem: How do I insert the catalogue??? +extern "C" +{ + void *init_kabc_groupdav() + { + KGlobal::locale()->insertCatalogue( "kdepimresources" ); + KGlobal::locale()->insertCatalogue( "kres_groupdav" ); + return new GroupDavFactory; + } +} diff --git a/kresources/groupdav/kcal_groupdav.desktop b/kresources/groupdav/kcal_groupdav.desktop new file mode 100644 index 000000000..9a759663b --- /dev/null +++ b/kresources/groupdav/kcal_groupdav.desktop @@ -0,0 +1,52 @@ +[Desktop Entry] +Name=GroupDAV Server (e.g. OpenGroupware) +Name[af]=GroupDAV bediener (bv. OpenGroupware) +Name[bg]=Сървър GroupDAV (e.g. OpenGroupware) +Name[br]=Servijer GroupDAV (e.g. OpenGroupware) +Name[ca]=Servidor GroupDAV (p.ex. OpenGroupware) +Name[cs]=GroupDAV server (např. OpenGroupware) +Name[da]=GroupDAV-server (f.eks. OpenGroupware) +Name[de]=GroupDAV-Server (z. B. OpenGroupware) +Name[el]=Εξυπηρετητής GroupDAV (π.χ. OpenGroupware) +Name[es]=Servidor GroupDAV (por ejemplo, OpenGroupware) +Name[et]=GroupDAV server (nt. OpenGroupware) +Name[eu]=GroupDAV zerbitzaria (adib. OpenGroupware) +Name[fa]=کارساز GroupDAV (مثلاً OpenGroupware) +Name[fi]=GroupDAV-palvelin (esim. OpenGroupware) +Name[fr]=GroupDAV Serveur (ex. OpenGroupware) +Name[fy]=GroupDAV-tsjinner (OpenGroupware) +Name[ga]=Freastalaí GroupDAV (m.sh. OpenGroupware) +Name[gl]=Servidor GroupDAV (e.g. OpenGroupware) +Name[hu]=GroupDAV-kiszolgáló (pl. OpenGroupware) +Name[is]=GroupDAV þjónn (t.d. OpenGroupware) +Name[it]=Server GroupDAV (per es. OpenGroupware) +Name[ja]=GroupDAV サーバ (例 OpenGroupware) +Name[ka]=სერვერი GroupDAV (მაგ., OpenGroupware) +Name[kk]=GroupDAV сервері (мысалы OpenGroupware) +Name[km]=ម៉ាស៊ីនបម្រើ GroupDAV (ឧ. OpenGroupware) +Name[lt]=GroupDAV serveris (pvz.: OpenGroupware) +Name[ms]=Pelayan GroupDAV (misalnya OpenGroupware) +Name[nb]=GroupDAV-tjener (f.eks. OpenGroupware) +Name[nds]=GroupDAV-Server (t.B. OpenGroupware) +Name[ne]=समूह DAV सर्भर (जस्तै: खुला ग्रुपवेयर) +Name[nl]=GroupDAV-server (OpenGroupware) +Name[nn]=GroupDAV-tenar (t.d. OpenGroupware) +Name[pl]=Serwer GroupDAV (np. OpenGroupware) +Name[pt]=Servidor GroupDAV (por exemplo OpenGroupware) +Name[pt_BR]=Servidor GroupDav (p. ex. OpenGroupware) +Name[ru]=Сервер GroupDAV (например, OpenGroupware) +Name[sk]=GroupDAV Server (napr. OpenGroupware) +Name[sl]=Strežnik GroupDAV (npr. OpenGroupware) +Name[sr]=GroupDAV сервер (нпр. OpenGroupware) +Name[sr@Latn]=GroupDAV server (npr. OpenGroupware) +Name[sv]=GroupDAV-server (t.ex. OpenGroupware) +Name[ta]=GroupDAV சேவகன் (e.g. OpenGroupware) +Name[tr]=GroupDAV Sunucusu (ör. OpenGroupware) +Name[uk]=Сервер GroupDAV (напр., OpenGroupware) +Name[zh_CN]=GroupDAV 服务器(如 OpenGroupware) +Name[zh_TW]=GroupDAV 伺服器 (如: OpenGroupware) +X-KDE-Library=kcal_groupdav +Type=Service +ServiceTypes=KResources/Plugin +X-KDE-ResourceFamily=calendar +X-KDE-ResourceType=groupdav diff --git a/kresources/groupdav/kcal_resourcegroupdav.cpp b/kresources/groupdav/kcal_resourcegroupdav.cpp new file mode 100644 index 000000000..293cb66fa --- /dev/null +++ b/kresources/groupdav/kcal_resourcegroupdav.cpp @@ -0,0 +1,52 @@ +/* + This file is part of kdepim. + + 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 library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library 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 + Library 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 "groupdavcalendaradaptor.h" + +#include "kcal_resourcegroupdav.h" + +using namespace KCal; + +ResourceGroupDav::ResourceGroupDav() + : ResourceGroupwareBase() +{ + init(); +} + +ResourceGroupDav::ResourceGroupDav( const KConfig *config ) + : ResourceGroupwareBase( config ) +{ + init(); + if ( config ) readConfig( config ); +} + +void ResourceGroupDav::init() +{ + setType( "ResourceGroupDav" ); + setPrefs( createPrefs() ); + setFolderLister( new KPIM::FolderLister( KPIM::FolderLister::Calendar ) ); + setAdaptor( new GroupDavCalendarAdaptor() ); + + ResourceGroupwareBase::init(); +} + +#include "kcal_resourcegroupdav.moc" diff --git a/kresources/groupdav/kcal_resourcegroupdav.h b/kresources/groupdav/kcal_resourcegroupdav.h new file mode 100644 index 000000000..5ca3e3b66 --- /dev/null +++ b/kresources/groupdav/kcal_resourcegroupdav.h @@ -0,0 +1,47 @@ + /* + This file is part of kdepim. + + 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 library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ +#ifndef KCAL_RESOURCEGROUPDAV_H +#define KCAL_RESOURCEGROUPDAV_H + +#include "kcal_resourcegroupwarebase.h" + +namespace KCal { + + +/** + This class provides a resource for accessing an GroupDav.org server +*/ +class KDE_EXPORT ResourceGroupDav : public ResourceGroupwareBase +{ + Q_OBJECT + public: + ResourceGroupDav(); + ResourceGroupDav( const KConfig * ); + + protected: + void init(); +}; + +} + +#endif diff --git a/kresources/groupdav/kcal_resourcegroupdav_plugin.cpp b/kresources/groupdav/kcal_resourcegroupdav_plugin.cpp new file mode 100644 index 000000000..6ab8eaee2 --- /dev/null +++ b/kresources/groupdav/kcal_resourcegroupdav_plugin.cpp @@ -0,0 +1,43 @@ +/* + This file is part of kdepim. + + 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 library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#include "kcal_resourcegroupdav.h" +#include "kcal_resourcegroupwarebaseconfig.h" + +#include <kglobal.h> +#include <klocale.h> + +using namespace KCal; + +typedef KRES::PluginFactory< ResourceGroupDav, ResourceGroupwareBaseConfig > GroupDavFactory; +// FIXME: Use K_EXPORT_COMPONENT_FACTORY( kcal_groupdav, GroupDavFactory ); here +// Problem: How do I insert the catalogue??? +extern "C" +{ + void *init_kcal_groupdav() + { + KGlobal::locale()->insertCatalogue( "kdepimresources" ); + KGlobal::locale()->insertCatalogue( "kres_groupdav" ); + return new GroupDavFactory; + } +} diff --git a/kresources/groupdav/uninstall.desktop b/kresources/groupdav/uninstall.desktop new file mode 100644 index 000000000..e1e3e1732 --- /dev/null +++ b/kresources/groupdav/uninstall.desktop @@ -0,0 +1,2 @@ +[Desktop Entry] +Hidden=true |