author | zautrix <zautrix> | 2004-09-08 09:57:16 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-09-08 09:57:16 (UTC) |
commit | 848c77f86b7105095b27a6034a0fefac8a7a0891 (patch) (side-by-side diff) | |
tree | 2816ee9a05000ccabc43d3c9be4558053bfc8c0b /kaddressbook | |
parent | 6650dd66dd13498a6d28844770d9d8c291335ad4 (diff) | |
download | kdepimpi-848c77f86b7105095b27a6034a0fefac8a7a0891.zip kdepimpi-848c77f86b7105095b27a6034a0fefac8a7a0891.tar.gz kdepimpi-848c77f86b7105095b27a6034a0fefac8a7a0891.tar.bz2 |
Beam vcard fix
-rw-r--r-- | kaddressbook/kabcore.cpp | 42 |
1 files changed, 27 insertions, 15 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index 6538295..d1d385c 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp @@ -642,15 +642,10 @@ void KABCore::beamVCard(const QStringList& uids) //QDir().mkdir( dirName, true ); - QFile outFile(fileName); + KABC::VCardConverter converter; QString description; - - if ( outFile.open(IO_WriteOnly) ) { // file opened successfully - - QTextStream t( &outFile ); // use a text stream - t.setEncoding( QTextStream::UnicodeUTF8 ); - + QString datastream; for( QStringList::ConstIterator it = uids.begin(); it != uids.end(); ++it ) { KABC::Addressee a = mAddressBook->findByUid( *it ); @@ -662,20 +657,37 @@ void KABCore::beamVCard(const QStringList& uids) QString vcard; converter.addresseeToVCard( a, vcard ); - t << vcard; - + int start = 0; + int next; + while ( (next = vcard.find("TYPE=", start) )>= 0 ) { + int semi = vcard.find(";", next); + int dopp = vcard.find(":", next); + int sep; + if ( semi < dopp && semi >= 0 ) + sep = semi ; + else + sep = dopp; + datastream +=vcard.mid( start, next - start); + datastream +=vcard.mid( next+5,sep -next -5 ).upper(); + start = sep; } - } else { - qDebug("Error open temp beam file "); - return; + datastream += vcard.mid( start,vcard.length() ); } - - outFile.close(); - #ifndef DESKTOP_VERSION + QFile outFile(fileName); + if ( outFile.open(IO_WriteOnly) ) { + datastream.replace ( QRegExp("VERSION:3.0") , "VERSION:2.1" ); + QTextStream t( &outFile ); // use a text stream + t.setEncoding( QTextStream::UnicodeUTF8 ); + t <<datastream; + outFile.close(); Ir *ir = new Ir( this ); connect( ir, SIGNAL( done(Ir*) ), this, SLOT( beamDone(Ir*) ) ); ir->send( fileName, description, "text/x-vCard" ); + } else { + qDebug("Error open temp beam file "); + return; + } #endif } |