summaryrefslogtreecommitdiffabout
authorzautrix <zautrix>2004-10-27 17:50:52 (UTC)
committer zautrix <zautrix>2004-10-27 17:50:52 (UTC)
commit85a0e0d9b1d60805cb4947be1c296c18e73c82b8 (patch) (unidiff)
tree64920209dc3cded8b3241d44138b1a82afb300cf
parent1df6fe03fe931bfbc83e855e47472a80ec4ba08e (diff)
downloadkdepimpi-85a0e0d9b1d60805cb4947be1c296c18e73c82b8.zip
kdepimpi-85a0e0d9b1d60805cb4947be1c296c18e73c82b8.tar.gz
kdepimpi-85a0e0d9b1d60805cb4947be1c296c18e73c82b8.tar.bz2
sync fixes
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--kde2file/abdump/main.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/kde2file/abdump/main.cpp b/kde2file/abdump/main.cpp
index d452ee9..1ee64f5 100644
--- a/kde2file/abdump/main.cpp
+++ b/kde2file/abdump/main.cpp
@@ -107,87 +107,89 @@ int main( int argc, char *argv[] )
107 if ( (*it).resource()->readOnly() ) 107 if ( (*it).resource()->readOnly() )
108 continue; 108 continue;
109 KABC::Addressee a = ( *it ); 109 KABC::Addressee a = ( *it );
110 QString vcard = converter.createVCard( a ); 110 QString vcard = converter.createVCard( a );
111 vcard += QString("\r\n"); 111 vcard += QString("\r\n");
112 datastream += vcard; 112 datastream += vcard;
113 } 113 }
114 QFile outFile(fileName); 114 QFile outFile(fileName);
115 if ( outFile.open(IO_WriteOnly) ) { 115 if ( outFile.open(IO_WriteOnly) ) {
116 QTextStream t( &outFile ); // use a text stream 116 QTextStream t( &outFile ); // use a text stream
117 t.setEncoding( QTextStream::UnicodeUTF8 ); 117 t.setEncoding( QTextStream::UnicodeUTF8 );
118 t <<datastream; 118 t <<datastream;
119 t << "\r\n\r\n"; 119 t << "\r\n\r\n";
120 outFile.close(); 120 outFile.close();
121 } 121 }
122 } else { 122 } else {
123 //Addressee::List aList;//parseVCards( const QString& vcard ); 123 //Addressee::List aList;//parseVCards( const QString& vcard );
124 KABC::Addressee::List list; 124 KABC::Addressee::List list;
125 int added = 0, changedC = 0, deleted = 0; 125 int added = 0, changedC = 0, deleted = 0;
126 QFile file( fileName ); 126 QFile file( fileName );
127 if ( file.open( IO_ReadOnly ) ) { 127 if ( file.open( IO_ReadOnly ) ) {
128 QTextStream t( &file ); // use a text stream 128 QTextStream t( &file ); // use a text stream
129 t.setEncoding( QTextStream::UnicodeUTF8 ); 129 t.setEncoding( QTextStream::UnicodeUTF8 );
130 QString data; 130 QString data;
131 data = t.read(); 131 data = t.read();
132 file.close(); 132 file.close();
133 KABC::VCardConverter converter; 133 KABC::VCardConverter converter;
134 list = converter.parseVCards( data ); 134 list = converter.parseVCards( data );
135 qDebug("kdeABdump::file has %d entries", list.count()); 135 qDebug("kdeABdump::file has %d entries", list.count());
136 136
137 KABC::Addressee::List::Iterator it; 137 KABC::Addressee::List::Iterator it;
138 for ( it = list.begin();it != list.end();++it) { 138 for ( it = list.begin();it != list.end();++it) {
139 (*it).setChanged( true );
139 bool changed = ((*it).custom( "KADDRESSBOOK", "X-ExternalID" ) == "changed"); 140 bool changed = ((*it).custom( "KADDRESSBOOK", "X-ExternalID" ) == "changed");
140 (*it).removeCustom( "KADDRESSBOOK", "X-ExternalID" ); 141 (*it).removeCustom( "KADDRESSBOOK", "X-ExternalID" );
141 //qDebug("ext %s ", (*it).custom( "KADDRESSBOOK", "X-ExternalID" ).latin1()); 142 //qDebug("ext %s ", (*it).custom( "KADDRESSBOOK", "X-ExternalID" ).latin1());
142 if ( changed ) { 143 if ( changed ) {
143 //qDebug("changed Addressee found! "); 144 //qDebug("changed Addressee found! ");
144 KABC::Addressee std = standardAddressBook->findByUid( (*it).uid() ); 145 KABC::Addressee std = standardAddressBook->findByUid( (*it).uid() );
145 if ( ! std.isEmpty() ) 146 if ( ! std.isEmpty() )
146 (*it).setResource(std.resource()); 147 (*it).setResource(std.resource());
147 standardAddressBook->insertAddressee( (*it) ); 148 standardAddressBook->insertAddressee( (*it) );
148 ++changedC; 149 ++changedC;
149 } else { 150 } else {
150 //maybe added? 151 //maybe added?
151 KABC::Addressee std = standardAddressBook->findByUid( (*it).uid() ); 152 KABC::Addressee std = standardAddressBook->findByUid( (*it).uid() );
152 if ( std.isEmpty() ) { 153 if ( std.isEmpty() ) {
153 standardAddressBook->insertAddressee( (*it) ); 154 standardAddressBook->insertAddressee( (*it) );
154 ++added; 155 ++added;
155 } 156 }
156 } 157 }
157 } 158 }
158 KABC::AddressBook::Iterator itA = standardAddressBook->begin(); 159 KABC::AddressBook::Iterator itA = standardAddressBook->begin();
159 KABC::AddressBook::Iterator it2 ; 160 KABC::AddressBook::Iterator it2 ;
160 while ( itA != standardAddressBook->end() ) { 161 while ( itA != standardAddressBook->end() ) {
161 bool found = false; 162 bool found = false;
162 KABC::Addressee::List::Iterator itL; 163 KABC::Addressee::List::Iterator itL;
163 for ( itL = list.begin();itL != list.end();++itL) { 164 for ( itL = list.begin();itL != list.end();++itL) {
164 if ( (*itL).uid() == (*itA).uid() ) { 165 if ( (*itL).uid() == (*itA).uid() ) {
165 found = true; 166 found = true;
166 break; 167 break;
167 } 168 }
168 } 169 }
169 if ( !found ) { 170 if ( !found ) {
170 it2 = itA; 171 it2 = itA;
171 ++itA; 172 ++itA;
172 standardAddressBook->removeAddressee( it2 ); 173 standardAddressBook->removeAddressee( it2 );
173 ++deleted; 174 ++deleted;
174 } else { 175 } else {
175 ++itA; 176 ++itA;
176 } 177 }
177 } 178 }
178 179
179 //standardAddressBook->saveAll(); 180 //standardAddressBook->saveAll();
180 standardAddressBook->setAutomaticSave( true ); 181 standardAddressBook->setAutomaticSave( true );
181 qDebug("************************************* "); 182 qDebug("************************************* ");
182 qDebug("*************kdeABdump*************** "); 183 qDebug("*************kdeABdump*************** ");
183 qDebug("************************************* "); 184 qDebug("************************************* ");
184 qDebug("Addressbook entries\nchanged %d\ndeleted %d\nadded %d\nfrom file %s", changedC,deleted, added, fileName.latin1()); 185 qDebug("Addressbook entries\nchanged %d\ndeleted %d\nadded %d\nfrom file %s", changedC,deleted, added, fileName.latin1());
185 } else 186 } else
186 qDebug("error open file "); 187 qDebug("error open file ");
187 } 188 }
188 189
189 KABC::StdAddressBook::close(); 190 delete standardAddressBook;
190 191 //KABC::StdAddressBook::close();
192 //StdAddressBook::mSelf = 0;
191 qDebug("ente "); 193 qDebug("ente ");
192 return 0; 194 return 0;
193} 195}