author | zautrix <zautrix> | 2005-01-17 12:47:46 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-01-17 12:47:46 (UTC) |
commit | 214b82c86bd5365d7a5fc786c8c9c7231ec6dc77 (patch) (unidiff) | |
tree | 9b6052411933ccd1a15428c8f747f0143db4690d | |
parent | ba5e5a22ad492f798b2626026cc1838b731e055b (diff) | |
download | kdepimpi-214b82c86bd5365d7a5fc786c8c9c7231ec6dc77.zip kdepimpi-214b82c86bd5365d7a5fc786c8c9c7231ec6dc77.tar.gz kdepimpi-214b82c86bd5365d7a5fc786c8c9c7231ec6dc77.tar.bz2 |
small cal fix
-rw-r--r-- | korganizer/calendarview.cpp | 70 |
1 files changed, 38 insertions, 32 deletions
diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp index 685bb60..da1edea 100644 --- a/korganizer/calendarview.cpp +++ b/korganizer/calendarview.cpp | |||
@@ -911,32 +911,34 @@ void CalendarView::checkExternSyncEvent( QPtrList<Event> lastSync , Incidence* t | |||
911 | } | 911 | } |
912 | void CalendarView::checkExternalId( Incidence * inc ) | 912 | void CalendarView::checkExternalId( Incidence * inc ) |
913 | { | 913 | { |
914 | QPtrList<Event> lastSync = mCalendar->getExternLastSyncEvents() ; | 914 | QPtrList<Event> lastSync = mCalendar->getExternLastSyncEvents() ; |
915 | checkExternSyncEvent( lastSync, inc ); | 915 | checkExternSyncEvent( lastSync, inc ); |
916 | 916 | ||
917 | } | 917 | } |
918 | bool CalendarView::synchronizeCalendar( Calendar* local, Calendar* remote, int mode ) | 918 | bool CalendarView::synchronizeCalendar( Calendar* local, Calendar* remote, int mode ) |
919 | { | 919 | { |
920 | bool syncOK = true; | 920 | bool syncOK = true; |
921 | int addedEvent = 0; | 921 | int addedEvent = 0; |
922 | int addedEventR = 0; | 922 | int addedEventR = 0; |
923 | int deletedEventR = 0; | 923 | int deletedEventR = 0; |
924 | int deletedEventL = 0; | 924 | int deletedEventL = 0; |
925 | int changedLocal = 0; | 925 | int changedLocal = 0; |
926 | int changedRemote = 0; | 926 | int changedRemote = 0; |
927 | int filteredIN = 0; | ||
928 | int filteredOUT = 0; | ||
927 | //QPtrList<Event> el = local->rawEvents(); | 929 | //QPtrList<Event> el = local->rawEvents(); |
928 | Event* eventR; | 930 | Event* eventR; |
929 | QString uid; | 931 | QString uid; |
930 | int take; | 932 | int take; |
931 | Event* eventL; | 933 | Event* eventL; |
932 | Event* eventRSync; | 934 | Event* eventRSync; |
933 | Event* eventLSync; | 935 | Event* eventLSync; |
934 | QPtrList<Event> eventRSyncSharp = remote->getExternLastSyncEvents(); | 936 | QPtrList<Event> eventRSyncSharp = remote->getExternLastSyncEvents(); |
935 | QPtrList<Event> eventLSyncSharp = local->getExternLastSyncEvents(); | 937 | QPtrList<Event> eventLSyncSharp = local->getExternLastSyncEvents(); |
936 | bool fullDateRange = false; | 938 | bool fullDateRange = false; |
937 | local->resetTempSyncStat(); | 939 | local->resetTempSyncStat(); |
938 | mLastCalendarSync = QDateTime::currentDateTime(); | 940 | mLastCalendarSync = QDateTime::currentDateTime(); |
939 | if ( mSyncManager->syncWithDesktop() ) { | 941 | if ( mSyncManager->syncWithDesktop() ) { |
940 | remote->resetPilotStat(1); | 942 | remote->resetPilotStat(1); |
941 | if ( KSyncManager::mRequestedSyncEvent.isValid() ) { | 943 | if ( KSyncManager::mRequestedSyncEvent.isValid() ) { |
942 | mLastCalendarSync = KSyncManager::mRequestedSyncEvent; | 944 | mLastCalendarSync = KSyncManager::mRequestedSyncEvent; |
@@ -1088,96 +1090,100 @@ bool CalendarView::synchronizeCalendar( Calendar* local, Calendar* remote, int | |||
1088 | 1090 | ||
1089 | } | 1091 | } |
1090 | } else { | 1092 | } else { |
1091 | if ( inR->lastModified() > mLastCalendarSync || mode == 5 ) { | 1093 | if ( inR->lastModified() > mLastCalendarSync || mode == 5 ) { |
1092 | inR->setLastModified( modifiedCalendar ); | 1094 | inR->setLastModified( modifiedCalendar ); |
1093 | inL = inR->clone(); | 1095 | inL = inR->clone(); |
1094 | inL->setIDStr( ":" ); | 1096 | inL->setIDStr( ":" ); |
1095 | local->addIncidence( inL ); | 1097 | local->addIncidence( inL ); |
1096 | ++addedEvent; | 1098 | ++addedEvent; |
1097 | 1099 | ||
1098 | } else { | 1100 | } else { |
1099 | checkExternSyncEvent(eventRSyncSharp, inR); | 1101 | checkExternSyncEvent(eventRSyncSharp, inR); |
1100 | remote->deleteIncidence( inR ); | 1102 | remote->deleteIncidence( inR ); |
1101 | ++deletedEventR; | 1103 | ++deletedEventR; |
1102 | } | 1104 | } |
1103 | } | 1105 | } |
1106 | } else { | ||
1107 | ++filteredIN; | ||
1104 | } | 1108 | } |
1105 | } | 1109 | } |
1106 | } | 1110 | } |
1107 | inR = er.next(); | 1111 | inR = er.next(); |
1108 | } | 1112 | } |
1109 | QPtrList<Incidence> el = local->rawIncidences(); | 1113 | QPtrList<Incidence> el = local->rawIncidences(); |
1110 | inL = el.first(); | 1114 | inL = el.first(); |
1111 | modulo = (el.count()/10)+1; | 1115 | modulo = (el.count()/10)+1; |
1112 | bar.setCaption (i18n("Add / remove events") ); | 1116 | bar.setCaption (i18n("Add / remove events") ); |
1113 | bar.setTotalSteps ( el.count() ) ; | 1117 | bar.setTotalSteps ( el.count() ) ; |
1114 | bar.show(); | 1118 | bar.show(); |
1115 | incCounter = 0; | 1119 | incCounter = 0; |
1116 | 1120 | ||
1117 | while ( inL ) { | 1121 | while ( inL ) { |
1118 | 1122 | ||
1119 | qApp->processEvents(); | 1123 | qApp->processEvents(); |
1120 | if ( ! bar.isVisible() ) | 1124 | if ( ! bar.isVisible() ) |
1121 | return false; | 1125 | return false; |
1122 | if ( incCounter % modulo == 0 ) | 1126 | if ( incCounter % modulo == 0 ) |
1123 | bar.setProgress( incCounter ); | 1127 | bar.setProgress( incCounter ); |
1124 | ++incCounter; | 1128 | ++incCounter; |
1125 | uid = inL->uid(); | 1129 | uid = inL->uid(); |
1126 | bool skipIncidence = false; | 1130 | bool skipIncidence = false; |
1127 | if ( uid.left(15) == QString("last-syncEvent-") ) | 1131 | if ( uid.left(15) == QString("last-syncEvent-") ) |
1128 | skipIncidence = true; | 1132 | skipIncidence = true; |
1129 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL && inL->type() == "Journal" ) | 1133 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL && inL->type() == "Journal" ) |
1130 | skipIncidence = true; | 1134 | skipIncidence = true; |
1131 | if ( filterOUT && ! filterOUT->filterCalendarItem( inL ) ){ | ||
1132 | skipIncidence = true; | ||
1133 | } | ||
1134 | if ( !skipIncidence ) { | 1135 | if ( !skipIncidence ) { |
1135 | inR = remote->incidence( uid ); | 1136 | inR = remote->incidence( uid ); |
1136 | if ( ! inR ) { // no conflict ********** add or delete local | 1137 | if ( ! inR ) { |
1137 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 1138 | if ( !filterOUT || filterOUT->filterCalendarItem( inL ) ){ |
1138 | if ( !inL->getID(mCurrentSyncDevice).isEmpty() && mode != 4 ) { | 1139 | // no conflict ********** add or delete local |
1139 | checkExternSyncEvent(eventLSyncSharp, inL); | 1140 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
1140 | local->deleteIncidence( inL ); | 1141 | if ( !inL->getID(mCurrentSyncDevice).isEmpty() && mode != 4 ) { |
1141 | ++deletedEventL; | 1142 | checkExternSyncEvent(eventLSyncSharp, inL); |
1142 | } else { | 1143 | local->deleteIncidence( inL ); |
1143 | if ( ! mSyncManager->mWriteBackExistingOnly ) { | 1144 | ++deletedEventL; |
1144 | inL->removeID(mCurrentSyncDevice ); | 1145 | } else { |
1145 | ++addedEventR; | 1146 | if ( ! mSyncManager->mWriteBackExistingOnly ) { |
1146 | //qDebug("remote added Incidence %s ", inL->summary().latin1()); | 1147 | inL->removeID(mCurrentSyncDevice ); |
1147 | inL->setLastModified( modifiedCalendar ); | 1148 | ++addedEventR; |
1148 | inR = inL->clone(); | 1149 | //qDebug("remote added Incidence %s ", inL->summary().latin1()); |
1149 | inR->setIDStr( ":" ); | 1150 | inL->setLastModified( modifiedCalendar ); |
1150 | inR->setTempSyncStat( SYNC_TEMPSTATE_INITIAL ); | 1151 | inR = inL->clone(); |
1151 | remote->addIncidence( inR ); | 1152 | inR->setIDStr( ":" ); |
1153 | inR->setTempSyncStat( SYNC_TEMPSTATE_INITIAL ); | ||
1154 | remote->addIncidence( inR ); | ||
1155 | } | ||
1152 | } | 1156 | } |
1153 | } | ||
1154 | } else { | ||
1155 | if ( inL->lastModified() < mLastCalendarSync && mode != 4 ) { | ||
1156 | checkExternSyncEvent(eventLSyncSharp, inL); | ||
1157 | local->deleteIncidence( inL ); | ||
1158 | ++deletedEventL; | ||
1159 | } else { | 1157 | } else { |
1160 | if ( ! mSyncManager->mWriteBackExistingOnly ) { | 1158 | if ( inL->lastModified() < mLastCalendarSync && mode != 4 ) { |
1161 | ++addedEventR; | 1159 | checkExternSyncEvent(eventLSyncSharp, inL); |
1162 | inL->setLastModified( modifiedCalendar ); | 1160 | local->deleteIncidence( inL ); |
1163 | inR = inL->clone(); | 1161 | ++deletedEventL; |
1164 | inR->setIDStr( ":" ); | 1162 | } else { |
1165 | remote->addIncidence( inR ); | 1163 | if ( ! mSyncManager->mWriteBackExistingOnly ) { |
1164 | ++addedEventR; | ||
1165 | inL->setLastModified( modifiedCalendar ); | ||
1166 | inR = inL->clone(); | ||
1167 | inR->setIDStr( ":" ); | ||
1168 | remote->addIncidence( inR ); | ||
1169 | } | ||
1166 | } | 1170 | } |
1167 | } | 1171 | } |
1172 | } else { | ||
1173 | ++filteredOUT; | ||
1168 | } | 1174 | } |
1169 | } | 1175 | } |
1170 | } | 1176 | } |
1171 | inL = el.next(); | 1177 | inL = el.next(); |
1172 | } | 1178 | } |
1173 | int delFut = 0; | 1179 | int delFut = 0; |
1174 | int remRem = 0; | 1180 | int remRem = 0; |
1175 | if ( mSyncManager->mWriteBackInFuture ) { | 1181 | if ( mSyncManager->mWriteBackInFuture ) { |
1176 | er = remote->rawIncidences(); | 1182 | er = remote->rawIncidences(); |
1177 | remRem = er.count(); | 1183 | remRem = er.count(); |
1178 | inR = er.first(); | 1184 | inR = er.first(); |
1179 | QDateTime dt; | 1185 | QDateTime dt; |
1180 | QDateTime cur = QDateTime::currentDateTime().addDays( -(mSyncManager->mWriteBackInPast * 7) ); | 1186 | QDateTime cur = QDateTime::currentDateTime().addDays( -(mSyncManager->mWriteBackInPast * 7) ); |
1181 | QDateTime end = QDateTime::currentDateTime().addDays( (mSyncManager->mWriteBackInFuture ) *7 ); | 1187 | QDateTime end = QDateTime::currentDateTime().addDays( (mSyncManager->mWriteBackInFuture ) *7 ); |
1182 | while ( inR ) { | 1188 | while ( inR ) { |
1183 | if ( inR->type() == "Todo" ) { | 1189 | if ( inR->type() == "Todo" ) { |
@@ -1205,33 +1211,33 @@ bool CalendarView::synchronizeCalendar( Calendar* local, Calendar* remote, int | |||
1205 | bar.hide(); | 1211 | bar.hide(); |
1206 | mLastCalendarSync = QDateTime::currentDateTime().addSecs( 1 ); | 1212 | mLastCalendarSync = QDateTime::currentDateTime().addSecs( 1 ); |
1207 | eventLSync->setReadOnly( false ); | 1213 | eventLSync->setReadOnly( false ); |
1208 | eventLSync->setDtStart( mLastCalendarSync ); | 1214 | eventLSync->setDtStart( mLastCalendarSync ); |
1209 | eventRSync->setDtStart( mLastCalendarSync ); | 1215 | eventRSync->setDtStart( mLastCalendarSync ); |
1210 | eventLSync->setDtEnd( mLastCalendarSync.addSecs( 3600 ) ); | 1216 | eventLSync->setDtEnd( mLastCalendarSync.addSecs( 3600 ) ); |
1211 | eventRSync->setDtEnd( mLastCalendarSync.addSecs( 3600 ) ); | 1217 | eventRSync->setDtEnd( mLastCalendarSync.addSecs( 3600 ) ); |
1212 | eventRSync->setLocation( i18n("Remote from: ")+mCurrentSyncName ) ; | 1218 | eventRSync->setLocation( i18n("Remote from: ")+mCurrentSyncName ) ; |
1213 | eventLSync->setLocation(i18n("Local from: ") + mCurrentSyncName ); | 1219 | eventLSync->setLocation(i18n("Local from: ") + mCurrentSyncName ); |
1214 | eventLSync->setReadOnly( true ); | 1220 | eventLSync->setReadOnly( true ); |
1215 | qDebug("********** %d %d ", mGlobalSyncMode == SYNC_MODE_NORMAL, mSyncManager->syncWithDesktop() ); | 1221 | qDebug("********** %d %d ", mGlobalSyncMode == SYNC_MODE_NORMAL, mSyncManager->syncWithDesktop() ); |
1216 | if ( mGlobalSyncMode == SYNC_MODE_NORMAL && !mSyncManager->syncWithDesktop()) // kde is abnormal... | 1222 | if ( mGlobalSyncMode == SYNC_MODE_NORMAL && !mSyncManager->syncWithDesktop()) // kde is abnormal... |
1217 | remote->addEvent( eventRSync ); | 1223 | remote->addEvent( eventRSync ); |
1218 | else | 1224 | else |
1219 | delete eventRSync; | 1225 | delete eventRSync; |
1220 | QString mes; | 1226 | QString mes; |
1221 | mes .sprintf( i18n("Synchronization summary:\n\n %d items added to local\n %d items added to remote\n %d items updated on local\n %d items updated on remote\n %d items deleted on local\n %d items deleted on remote\n"),addedEvent, addedEventR, changedLocal, changedRemote, deletedEventL, deletedEventR ); | 1227 | mes .sprintf( i18n("Synchronization summary:\n\n %d items added to local\n %d items added to remote\n %d items updated on local\n %d items updated on remote\n %d items deleted on local\n %d items deleted on remote\n %d incoming filtered out\n %d outgoing filtered out\n"),addedEvent, addedEventR, changedLocal, changedRemote, deletedEventL, deletedEventR, filteredIN, filteredOUT ); |
1222 | QString delmess; | 1228 | QString delmess; |
1223 | if ( delFut ) { | 1229 | if ( delFut ) { |
1224 | delmess.sprintf( i18n("%d items skipped on remote,\nbecause they are more\nthan %d weeks in the past or\nmore than %d weeks in the future.\nAfter skipping, remote has\n%d calendar/todo items."), delFut,mSyncManager->mWriteBackInPast,mSyncManager->mWriteBackInFuture, remRem-delFut); | 1230 | delmess.sprintf( i18n("%d items skipped on remote,\nbecause they are more\nthan %d weeks in the past or\nmore than %d weeks in the future.\nAfter skipping, remote has\n%d calendar/todo items."), delFut,mSyncManager->mWriteBackInPast,mSyncManager->mWriteBackInFuture, remRem-delFut); |
1225 | mes += delmess; | 1231 | mes += delmess; |
1226 | } | 1232 | } |
1227 | mes = i18n("Local calendar changed!\n") +mes; | 1233 | mes = i18n("Local calendar changed!\n") +mes; |
1228 | mCalendar->checkAlarmForIncidence( 0, true ); | 1234 | mCalendar->checkAlarmForIncidence( 0, true ); |
1229 | qDebug( mes ); | 1235 | qDebug( mes ); |
1230 | if ( mSyncManager->mShowSyncSummary ) { | 1236 | if ( mSyncManager->mShowSyncSummary ) { |
1231 | if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(this, mes, | 1237 | if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(this, mes, |
1232 | i18n("KO/Pi Synchronization"),i18n("Write back"))) { | 1238 | i18n("KO/Pi Synchronization"),i18n("Write back"))) { |
1233 | qDebug("cancelled "); | 1239 | qDebug("cancelled "); |
1234 | return false; | 1240 | return false; |
1235 | } | 1241 | } |
1236 | } | 1242 | } |
1237 | return syncOK; | 1243 | return syncOK; |