-rw-r--r-- | kabc/plugins/qtopia/qtopiaconverter.cpp | 24 | ||||
-rw-r--r-- | kabc/plugins/qtopia/resourceqtopia.cpp | 96 | ||||
-rw-r--r-- | microkde/kresources/managerimpl.cpp | 7 |
3 files changed, 43 insertions, 84 deletions
diff --git a/kabc/plugins/qtopia/qtopiaconverter.cpp b/kabc/plugins/qtopia/qtopiaconverter.cpp index 040226c..106596f 100644 --- a/kabc/plugins/qtopia/qtopiaconverter.cpp +++ b/kabc/plugins/qtopia/qtopiaconverter.cpp | |||
@@ -291,9 +291,12 @@ bool QtopiaConverter::qtopiaToAddressee( const QDomElement& el, Addressee &adr ) | |||
291 | adr.insertCustom( "opie", "HomeWebPage", el.attribute( "HomeWebPage" ) ); | 291 | adr.insertCustom( "opie", "HomeWebPage", el.attribute( "HomeWebPage" ) ); |
292 | if ( !el.attribute( "Spouse" ).isEmpty() ) | 292 | if ( !el.attribute( "Spouse" ).isEmpty() ) |
293 | adr.insertCustom( "KADDRESSBOOK", "X-SpousesName", el.attribute( "Spouse" ) ); | 293 | adr.insertCustom( "KADDRESSBOOK", "X-SpousesName", el.attribute( "Spouse" ) ); |
294 | if ( !el.attribute( "Gender" ).isEmpty() ) | 294 | if ( !el.attribute( "Gender" ).isEmpty() ) { |
295 | adr.insertCustom( "opie", "Gender", el.attribute( "Gender" ) ); | 295 | if ( el.attribute( "Gender" ) == "1" ) |
296 | 296 | adr.insertCustom( "KADDRESSBOOK", "X-Gender", "male" ); | |
297 | else if ( el.attribute( "Gender" ) == "2" ) | ||
298 | adr.insertCustom( "KADDRESSBOOK", "X-Gender", "female" ); | ||
299 | } | ||
297 | QDate ann = dateFromString( el.attribute( "Anniversary" ) ); | 300 | QDate ann = dateFromString( el.attribute( "Anniversary" ) ); |
298 | if ( ann.isValid() ) { | 301 | if ( ann.isValid() ) { |
299 | QString dt = KGlobal::locale()->formatDate(ann, true, KLocale::ISODate); | 302 | QString dt = KGlobal::locale()->formatDate(ann, true, KLocale::ISODate); |
@@ -301,7 +304,7 @@ bool QtopiaConverter::qtopiaToAddressee( const QDomElement& el, Addressee &adr ) | |||
301 | } | 304 | } |
302 | 305 | ||
303 | if ( !el.attribute( "Children" ).isEmpty() ) | 306 | if ( !el.attribute( "Children" ).isEmpty() ) |
304 | adr.insertCustom("opie", "Children", el.attribute("Children") ); | 307 | adr.insertCustom("KADDRESSBOOK", "X-Children", el.attribute("Children") ); |
305 | if ( !el.attribute( "Office" ).isEmpty() ) | 308 | if ( !el.attribute( "Office" ).isEmpty() ) |
306 | adr.insertCustom("KADDRESSBOOK", "X-Office", el.attribute("Office") ); | 309 | adr.insertCustom("KADDRESSBOOK", "X-Office", el.attribute("Office") ); |
307 | if ( !el.attribute( "Profession" ).isEmpty() ) | 310 | if ( !el.attribute( "Profession" ).isEmpty() ) |
@@ -384,15 +387,16 @@ bool QtopiaConverter::addresseeToQtopia( const Addressee &ab, QTextStream *strea | |||
384 | 387 | ||
385 | *stream << "HomeWebPage=\"" << escape( ab.custom( "opie", "HomeWebPage" ) ) << "\" "; | 388 | *stream << "HomeWebPage=\"" << escape( ab.custom( "opie", "HomeWebPage" ) ) << "\" "; |
386 | *stream << "Spouse=\"" << escape( ab.custom( "KADDRESSBOOK", "X-SpousesName") ) << "\" "; | 389 | *stream << "Spouse=\"" << escape( ab.custom( "KADDRESSBOOK", "X-SpousesName") ) << "\" "; |
387 | *stream << "Gender=\"" << escape( ab.custom( "opie", "Gender") ) << "\" "; | 390 | QString gen = "0"; |
391 | if ( ab.custom( "KADDRESSBOOK", "X-Gender") == "male" ) | ||
392 | gen = "1"; | ||
393 | else if ( ab.custom( "KADDRESSBOOK", "X-Gender") == "female" ) | ||
394 | gen = "2"; | ||
395 | *stream << "Gender=\"" << escape( gen ) << "\" "; | ||
388 | 396 | ||
389 | if ( ab.birthday().date().isValid() ) | 397 | if ( ab.birthday().date().isValid() ) |
390 | *stream << "Birthday=\"" << escape( dateToString(ab.birthday().date() ) ) << "\" "; | 398 | *stream << "Birthday=\"" << escape( dateToString(ab.birthday().date() ) ) << "\" "; |
391 | 399 | ||
392 | /* | ||
393 | * Anniversary block again | ||
394 | * Go from ISO -> QDate -> toString and then escape | ||
395 | */ | ||
396 | { | 400 | { |
397 | QDate ann = KGlobal::locale()->readDate( ab.custom("KADDRESSBOOK", "X-Anniversary" ), | 401 | QDate ann = KGlobal::locale()->readDate( ab.custom("KADDRESSBOOK", "X-Anniversary" ), |
398 | "%Y-%m-%d"); | 402 | "%Y-%m-%d"); |
@@ -401,7 +405,7 @@ bool QtopiaConverter::addresseeToQtopia( const Addressee &ab, QTextStream *strea | |||
401 | } | 405 | } |
402 | } | 406 | } |
403 | *stream << "Nickname=\"" << escape( ab.nickName() ) << "\" "; | 407 | *stream << "Nickname=\"" << escape( ab.nickName() ) << "\" "; |
404 | *stream << "Children=\"" << escape( ab.custom("opie", "Children" ) ) << "\" "; | 408 | *stream << "Children=\"" << escape( ab.custom("KADDRESSBOOK", "X-Children" ) ) << "\" "; |
405 | *stream << "Notes=\"" << escape( ab.note() ) << "\" "; | 409 | *stream << "Notes=\"" << escape( ab.note() ) << "\" "; |
406 | *stream << "Categories=\"" << categoriesToNumber( ab.categories(), "Contacts") << "\" "; | 410 | *stream << "Categories=\"" << categoriesToNumber( ab.categories(), "Contacts") << "\" "; |
407 | 411 | ||
diff --git a/kabc/plugins/qtopia/resourceqtopia.cpp b/kabc/plugins/qtopia/resourceqtopia.cpp index b7263bb..4ee3c3c 100644 --- a/kabc/plugins/qtopia/resourceqtopia.cpp +++ b/kabc/plugins/qtopia/resourceqtopia.cpp | |||
@@ -78,11 +78,11 @@ ResourceQtopia::ResourceQtopia( const QString &fileName ) | |||
78 | 78 | ||
79 | void ResourceQtopia::init( const QString &fileName ) | 79 | void ResourceQtopia::init( const QString &fileName ) |
80 | { | 80 | { |
81 | 81 | #ifdef _USE_DIRWATCH_ | |
82 | connect( &mDirWatch, SIGNAL( dirty(const QString&) ), SLOT( fileChanged() ) ); | 82 | connect( &mDirWatch, SIGNAL( dirty(const QString&) ), SLOT( fileChanged() ) ); |
83 | connect( &mDirWatch, SIGNAL( created(const QString&) ), SLOT( fileChanged() ) ); | 83 | connect( &mDirWatch, SIGNAL( created(const QString&) ), SLOT( fileChanged() ) ); |
84 | connect( &mDirWatch, SIGNAL( deleted(const QString&) ), SLOT( fileChanged() ) ); | 84 | connect( &mDirWatch, SIGNAL( deleted(const QString&) ), SLOT( fileChanged() ) ); |
85 | 85 | #endif | |
86 | setFileName( fileName ); | 86 | setFileName( fileName ); |
87 | } | 87 | } |
88 | 88 | ||
@@ -165,7 +165,7 @@ bool ResourceQtopia::load() | |||
165 | while ( !n.isNull() ) { | 165 | while ( !n.isNull() ) { |
166 | QDomElement e = n.toElement(); | 166 | QDomElement e = n.toElement(); |
167 | if ( !e.isNull() ) { | 167 | if ( !e.isNull() ) { |
168 | if ( e.tagName() == QString::fromLatin1( "Contacts" ) ) { // we're looking for them | 168 | if ( e.tagName() == QString::fromLatin1( "Contacts" ) ) { |
169 | QDomNode no = e.firstChild(); | 169 | QDomNode no = e.firstChild(); |
170 | while ( !no.isNull() ) { | 170 | while ( !no.isNull() ) { |
171 | QDomElement el = no.toElement(); | 171 | QDomElement el = no.toElement(); |
@@ -186,41 +186,22 @@ bool ResourceQtopia::load() | |||
186 | 186 | ||
187 | n = n.nextSibling(); | 187 | n = n.nextSibling(); |
188 | } | 188 | } |
189 | |||
190 | #if 0 | ||
191 | / old code | ||
192 | qDebug("ResourceQtopia::load: %s", fileName().latin1()); | ||
193 | |||
194 | AddressBookIterator it(*mAccess); | ||
195 | const PimContact* contact; | ||
196 | bool res; | ||
197 | |||
198 | for (contact=it.toFirst(); it.current(); ++it) | ||
199 | { | ||
200 | contact = it.current(); | ||
201 | |||
202 | KABC::Addressee addressee; | ||
203 | |||
204 | //LRres = mConverter->qtopiaToAddressee( (*contact), addressee ); | ||
205 | |||
206 | if ( !addressee.isEmpty() && res ) | ||
207 | { | ||
208 | addressee.setResource( this ); | ||
209 | addressBook()->insertAddressee( addressee ); | ||
210 | } | ||
211 | } | ||
212 | #endif | ||
213 | return true; | 189 | return true; |
214 | } | 190 | } |
215 | 191 | ||
216 | bool ResourceQtopia::save( Ticket *ticket ) | 192 | bool ResourceQtopia::save( Ticket *ticket ) |
217 | { | 193 | { |
218 | 194 | #ifdef _USE_DIRWATCH_ | |
219 | mDirWatch.stopScan(); | 195 | mDirWatch.stopScan(); |
196 | #endif | ||
220 | KABC::AddressBook::Iterator it; | 197 | KABC::AddressBook::Iterator it; |
221 | bool res; | 198 | bool res; |
222 | //pending open file for stream | 199 | QFile file( fileName() ); |
223 | QTextStream *stream;// = tempFile->textStream(); | 200 | if (!file.open( IO_WriteOnly ) ) { |
201 | return false; | ||
202 | } | ||
203 | QTextStream ts( &file ); | ||
204 | QTextStream *stream = &ts; | ||
224 | stream->setEncoding( QTextStream::UnicodeUTF8 ); | 205 | stream->setEncoding( QTextStream::UnicodeUTF8 ); |
225 | *stream << "<?xml version=\"1.0\" encoding=\"UTF-8\"?><!DOCTYPE Addressbook ><AddressBook>" << endl; | 206 | *stream << "<?xml version=\"1.0\" encoding=\"UTF-8\"?><!DOCTYPE Addressbook ><AddressBook>" << endl; |
226 | *stream << " <Groups>" << endl; | 207 | *stream << " <Groups>" << endl; |
@@ -236,66 +217,27 @@ bool ResourceQtopia::save( Ticket *ticket ) | |||
236 | qDebug("Unable to convert Addressee %s", addressee.formattedName().latin1()); | 217 | qDebug("Unable to convert Addressee %s", addressee.formattedName().latin1()); |
237 | } | 218 | } |
238 | } | 219 | } |
239 | |||
240 | |||
241 | *stream << "</Contacts>" << endl; | 220 | *stream << "</Contacts>" << endl; |
242 | *stream << "</AddressBook>" << endl; | 221 | *stream << "</AddressBook>" << endl; |
243 | //pending close file | 222 | file.close(); |
244 | mDirWatch.startScan(); | 223 | #ifdef _USE_DIRWATCH_ |
245 | |||
246 | delete ticket; | ||
247 | unlock( fileName() ); | ||
248 | |||
249 | |||
250 | #if 0 | ||
251 | //old code | ||
252 | qDebug("ResourceQtopia::save: %s", fileName().latin1()); | ||
253 | |||
254 | mDirWatch.stopScan(); | ||
255 | |||
256 | KABC::AddressBook::Iterator it; | ||
257 | bool res; | ||
258 | |||
259 | for ( it = addressBook()->begin(); it != addressBook()->end(); ++it ) { | ||
260 | PimContact c; | ||
261 | KABC::Addressee addressee = (*it); | ||
262 | |||
263 | //res = mConverter->addresseeToQtopia( *it, c ); | ||
264 | if (res == true) | ||
265 | { | ||
266 | mAccess->addContact(c); | ||
267 | // if (res == false) | ||
268 | // qDebug("Unable to append Contact %s", c.fullName().latin1()); | ||
269 | } | ||
270 | else | ||
271 | { | ||
272 | qDebug("Unable to convert Addressee %s", addressee.formattedName().latin1()); | ||
273 | } | ||
274 | } | ||
275 | |||
276 | // mAccess->addressBookUpdated(); | ||
277 | |||
278 | mDirWatch.startScan(); | 224 | mDirWatch.startScan(); |
279 | 225 | #endif | |
280 | delete ticket; | 226 | delete ticket; |
281 | unlock( fileName() ); | 227 | unlock( fileName() ); |
282 | #endif | ||
283 | return true; | 228 | return true; |
284 | } | 229 | } |
285 | 230 | ||
286 | bool ResourceQtopia::lock( const QString &lockfileName ) | 231 | bool ResourceQtopia::lock( const QString &lockfileName ) |
287 | { | 232 | { |
233 | //disabled | ||
234 | return true; | ||
288 | qDebug("ResourceQtopia::lock: %s", fileName().latin1()); | 235 | qDebug("ResourceQtopia::lock: %s", fileName().latin1()); |
289 | |||
290 | kdDebug(5700) << "ResourceQtopia::lock()" << endl; | ||
291 | |||
292 | QString fn = lockfileName; | 236 | QString fn = lockfileName; |
293 | 237 | ||
294 | KURL url(fn); | 238 | KURL url(fn); |
295 | QString lockName = locateLocal( "data", "kabc/lock/" + url.fileName() + ".lock" ); | 239 | QString lockName = locateLocal( "data", "kabc/lock/" + url.fileName() + ".lock" ); |
296 | 240 | ||
297 | kdDebug(5700) << "-- lock name: " << lockName << endl; | ||
298 | |||
299 | if (QFile::exists( lockName )) | 241 | if (QFile::exists( lockName )) |
300 | { | 242 | { |
301 | qDebug("ResourceOpie::lock: lockfile %s already exists. (Delete it before continuing if nobody else is accessing the resourcefile %s)", lockName.latin1(), fileName().latin1()); | 243 | qDebug("ResourceOpie::lock: lockfile %s already exists. (Delete it before continuing if nobody else is accessing the resourcefile %s)", lockName.latin1(), fileName().latin1()); |
@@ -333,6 +275,8 @@ bool ResourceQtopia::lock( const QString &lockfileName ) | |||
333 | 275 | ||
334 | void ResourceQtopia::unlock( const QString &fileName ) | 276 | void ResourceQtopia::unlock( const QString &fileName ) |
335 | { | 277 | { |
278 | //disabled | ||
279 | return; | ||
336 | qDebug("ResourceQtopia::unlock() %s", fileName.latin1()); | 280 | qDebug("ResourceQtopia::unlock() %s", fileName.latin1()); |
337 | 281 | ||
338 | QString fn = fileName; | 282 | QString fn = fileName; |
@@ -346,13 +290,17 @@ void ResourceQtopia::unlock( const QString &fileName ) | |||
346 | 290 | ||
347 | void ResourceQtopia::setFileName( const QString &newFileName ) | 291 | void ResourceQtopia::setFileName( const QString &newFileName ) |
348 | { | 292 | { |
293 | #ifdef _USE_DIRWATCH_ | ||
349 | mDirWatch.stopScan(); | 294 | mDirWatch.stopScan(); |
295 | #endif | ||
350 | mDirWatch.removeFile( fileName() ); | 296 | mDirWatch.removeFile( fileName() ); |
351 | 297 | ||
352 | Resource::setFileName( newFileName ); | 298 | Resource::setFileName( newFileName ); |
353 | 299 | ||
354 | mDirWatch.addFile( fileName() ); | 300 | mDirWatch.addFile( fileName() ); |
301 | #ifdef _USE_DIRWATCH_ | ||
355 | mDirWatch.startScan(); | 302 | mDirWatch.startScan(); |
303 | #endif | ||
356 | } | 304 | } |
357 | 305 | ||
358 | 306 | ||
diff --git a/microkde/kresources/managerimpl.cpp b/microkde/kresources/managerimpl.cpp index 81bbbec..5bd9eb7 100644 --- a/microkde/kresources/managerimpl.cpp +++ b/microkde/kresources/managerimpl.cpp | |||
@@ -34,6 +34,7 @@ $Id$ | |||
34 | #include <kdebug.h> | 34 | #include <kdebug.h> |
35 | #include <kconfig.h> | 35 | #include <kconfig.h> |
36 | #include <kstandarddirs.h> | 36 | #include <kstandarddirs.h> |
37 | #include <qfile.h> | ||
37 | 38 | ||
38 | #include "resource.h" | 39 | #include "resource.h" |
39 | #include "factory.h" | 40 | #include "factory.h" |
@@ -68,6 +69,12 @@ void ManagerImpl::createStandardConfig() | |||
68 | if ( !mStdConfig ) { | 69 | if ( !mStdConfig ) { |
69 | QString file = locateLocal( "data", KGlobal::getAppName() | 70 | QString file = locateLocal( "data", KGlobal::getAppName() |
70 | + "/kresources/" + mFamily + "rc" ); | 71 | + "/kresources/" + mFamily + "rc" ); |
72 | if ( mFamily == "tmpcontact" ) { | ||
73 | if (QFile::exists ( file ) ){ | ||
74 | QFile::remove ( file ); | ||
75 | qDebug("removed tmp rc file: %s ", file.latin1()); | ||
76 | } | ||
77 | } | ||
71 | mStdConfig = new KConfig( file ); | 78 | mStdConfig = new KConfig( file ); |
72 | } | 79 | } |
73 | 80 | ||