author | zautrix <zautrix> | 2004-10-26 20:04:29 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-26 20:04:29 (UTC) |
commit | 8b111ae30fc51a4a580b8d485bef8ad28b0dde84 (patch) (unidiff) | |
tree | fb4cf20f5675e5ff2221ed6eea51785bdd65616c /korganizer | |
parent | 62e91b888de607fa5a9f9c0fba807287e57d5d5c (diff) | |
download | kdepimpi-8b111ae30fc51a4a580b8d485bef8ad28b0dde84.zip kdepimpi-8b111ae30fc51a4a580b8d485bef8ad28b0dde84.tar.gz kdepimpi-8b111ae30fc51a4a580b8d485bef8ad28b0dde84.tar.bz2 |
fix in kapi translation call, clone fix and kde first sync fix
-rw-r--r-- | korganizer/calendarview.cpp | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp index 284ddbf..2ccccfa 100644 --- a/korganizer/calendarview.cpp +++ b/korganizer/calendarview.cpp | |||
@@ -947,33 +947,36 @@ bool CalendarView::synchronizeCalendar( Calendar* local, Calendar* remote, int | |||
947 | eventRSync->setDtStart( mLastCalendarSync ); | 947 | eventRSync->setDtStart( mLastCalendarSync ); |
948 | eventRSync->setDtEnd( mLastCalendarSync.addSecs( 7200 ) ); | 948 | eventRSync->setDtEnd( mLastCalendarSync.addSecs( 7200 ) ); |
949 | eventRSync->setCategories( i18n("SyncEvent") ); | 949 | eventRSync->setCategories( i18n("SyncEvent") ); |
950 | } | 950 | } |
951 | } | 951 | } |
952 | if ( eventLSync->dtStart() == mLastCalendarSync ) | 952 | if ( eventLSync->dtStart() == mLastCalendarSync ) |
953 | fullDateRange = true; | 953 | fullDateRange = true; |
954 | 954 | ||
955 | if ( ! fullDateRange ) { | 955 | if ( ! fullDateRange ) { |
956 | if ( eventLSync->dtStart() != eventRSync->dtStart() ) { | 956 | if ( eventLSync->dtStart() != eventRSync->dtStart() ) { |
957 | 957 | ||
958 | // qDebug("set fulldate to true %s %s" ,eventLSync->dtStart().toString().latin1(), eventRSync->dtStart().toString().latin1() ); | 958 | // qDebug("set fulldate to true %s %s" ,eventLSync->dtStart().toString().latin1(), eventRSync->dtStart().toString().latin1() ); |
959 | //qDebug("%d %d %d %d ", eventLSync->dtStart().time().second(), eventLSync->dtStart().time().msec() , eventRSync->dtStart().time().second(), eventRSync->dtStart().time().msec()); | 959 | //qDebug("%d %d %d %d ", eventLSync->dtStart().time().second(), eventLSync->dtStart().time().msec() , eventRSync->dtStart().time().second(), eventRSync->dtStart().time().msec()); |
960 | fullDateRange = true; | 960 | fullDateRange = true; |
961 | } | 961 | } |
962 | } | 962 | } |
963 | if ( fullDateRange && !mSyncKDE ) | 963 | if ( mSyncKDE ) { |
964 | fullDateRange = ( eventLSync->dtStart() == mLastCalendarSync ); | ||
965 | } | ||
966 | if ( fullDateRange ) | ||
964 | mLastCalendarSync = QDateTime::currentDateTime().addDays( -100*365); | 967 | mLastCalendarSync = QDateTime::currentDateTime().addDays( -100*365); |
965 | else | 968 | else |
966 | mLastCalendarSync = eventLSync->dtStart(); | 969 | mLastCalendarSync = eventLSync->dtStart(); |
967 | // for resyncing if own file has changed | 970 | // for resyncing if own file has changed |
968 | if ( mCurrentSyncDevice == "deleteaftersync" ) { | 971 | if ( mCurrentSyncDevice == "deleteaftersync" ) { |
969 | mLastCalendarSync = loadedFileVersion; | 972 | mLastCalendarSync = loadedFileVersion; |
970 | //qDebug("setting mLastCalendarSync "); | 973 | //qDebug("setting mLastCalendarSync "); |
971 | } | 974 | } |
972 | //qDebug("*************************** "); | 975 | //qDebug("*************************** "); |
973 | qDebug("mLastCalendarSync %s full: %d",mLastCalendarSync.toString().latin1(), fullDateRange); | 976 | qDebug("mLastCalendarSync %s full: %d",mLastCalendarSync.toString().latin1(), fullDateRange); |
974 | QPtrList<Incidence> er = remote->rawIncidences(); | 977 | QPtrList<Incidence> er = remote->rawIncidences(); |
975 | Incidence* inR = er.first(); | 978 | Incidence* inR = er.first(); |
976 | Incidence* inL; | 979 | Incidence* inL; |
977 | QProgressBar bar( er.count(),0 ); | 980 | QProgressBar bar( er.count(),0 ); |
978 | bar.setCaption (i18n("Syncing - close to abort!") ); | 981 | bar.setCaption (i18n("Syncing - close to abort!") ); |
979 | 982 | ||
@@ -1036,39 +1039,42 @@ bool CalendarView::synchronizeCalendar( Calendar* local, Calendar* remote, int | |||
1036 | ++changedLocal; | 1039 | ++changedLocal; |
1037 | } | 1040 | } |
1038 | } | 1041 | } |
1039 | } else { // no conflict | 1042 | } else { // no conflict |
1040 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 1043 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
1041 | QString des = eventLSync->description(); | 1044 | QString des = eventLSync->description(); |
1042 | QString pref = "e"; | 1045 | QString pref = "e"; |
1043 | if ( inR->type() == "Todo" ) | 1046 | if ( inR->type() == "Todo" ) |
1044 | pref = "t"; | 1047 | pref = "t"; |
1045 | if ( des.find(pref+ inR->getID(mCurrentSyncDevice) +"," ) >= 0 && mode != 5) { // delete it | 1048 | if ( des.find(pref+ inR->getID(mCurrentSyncDevice) +"," ) >= 0 && mode != 5) { // delete it |
1046 | inR->setTempSyncStat( SYNC_TEMPSTATE_DELETE ); | 1049 | inR->setTempSyncStat( SYNC_TEMPSTATE_DELETE ); |
1047 | //remote->deleteIncidence( inR ); | 1050 | //remote->deleteIncidence( inR ); |
1048 | ++deletedEventR; | 1051 | ++deletedEventR; |
1049 | } else { | 1052 | } else { |
1050 | inR->setLastModified( modifiedCalendar ); | 1053 | inR->setLastModified( modifiedCalendar ); |
1051 | inL = inR->clone(); | 1054 | inL = inR->clone(); |
1055 | inL->setIDStr( ":" ); | ||
1052 | local->addIncidence( inL ); | 1056 | local->addIncidence( inL ); |
1053 | ++addedEvent; | 1057 | ++addedEvent; |
1054 | } | 1058 | } |
1055 | } else { | 1059 | } else { |
1056 | if ( inR->lastModified() > mLastCalendarSync || mode == 5 ) { | 1060 | if ( inR->lastModified() > mLastCalendarSync || mode == 5 ) { |
1057 | inR->setLastModified( modifiedCalendar ); | 1061 | inR->setLastModified( modifiedCalendar ); |
1058 | local->addIncidence( inR->clone() ); | 1062 | inL = inR->clone(); |
1063 | inL->setIDStr( ":" ); | ||
1064 | local->addIncidence( inL ); | ||
1059 | ++addedEvent; | 1065 | ++addedEvent; |
1060 | } else { | 1066 | } else { |
1061 | checkExternSyncEvent(eventRSyncSharp, inR); | 1067 | checkExternSyncEvent(eventRSyncSharp, inR); |
1062 | remote->deleteIncidence( inR ); | 1068 | remote->deleteIncidence( inR ); |
1063 | ++deletedEventR; | 1069 | ++deletedEventR; |
1064 | } | 1070 | } |
1065 | } | 1071 | } |
1066 | } | 1072 | } |
1067 | } | 1073 | } |
1068 | inR = er.next(); | 1074 | inR = er.next(); |
1069 | } | 1075 | } |
1070 | QPtrList<Incidence> el = local->rawIncidences(); | 1076 | QPtrList<Incidence> el = local->rawIncidences(); |
1071 | inL = el.first(); | 1077 | inL = el.first(); |
1072 | modulo = (el.count()/10)+1; | 1078 | modulo = (el.count()/10)+1; |
1073 | bar.setCaption (i18n("Add / remove events") ); | 1079 | bar.setCaption (i18n("Add / remove events") ); |
1074 | bar.setTotalSteps ( el.count() ) ; | 1080 | bar.setTotalSteps ( el.count() ) ; |
@@ -1091,46 +1097,49 @@ bool CalendarView::synchronizeCalendar( Calendar* local, Calendar* remote, int | |||
1091 | skipIncidence = true; | 1097 | skipIncidence = true; |
1092 | if ( !skipIncidence ) { | 1098 | if ( !skipIncidence ) { |
1093 | inR = remote->incidence( uid ); | 1099 | inR = remote->incidence( uid ); |
1094 | if ( ! inR ) { | 1100 | if ( ! inR ) { |
1095 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 1101 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
1096 | if ( !inL->getID(mCurrentSyncDevice).isEmpty() && mode != 4 ) { | 1102 | if ( !inL->getID(mCurrentSyncDevice).isEmpty() && mode != 4 ) { |
1097 | checkExternSyncEvent(eventLSyncSharp, inL); | 1103 | checkExternSyncEvent(eventLSyncSharp, inL); |
1098 | local->deleteIncidence( inL ); | 1104 | local->deleteIncidence( inL ); |
1099 | ++deletedEventL; | 1105 | ++deletedEventL; |
1100 | } else { | 1106 | } else { |
1101 | if ( ! mSyncManager->mWriteBackExistingOnly ) { | 1107 | if ( ! mSyncManager->mWriteBackExistingOnly ) { |
1102 | inL->removeID(mCurrentSyncDevice ); | 1108 | inL->removeID(mCurrentSyncDevice ); |
1103 | ++addedEventR; | 1109 | ++addedEventR; |
1104 | //qDebug("remote added Incidence %s ", inL->summary().latin1()); | 1110 | //qDebug("remote added Incidence %s ", inL->summary().latin1()); |
1105 | inL->setLastModified( modifiedCalendar ); | 1111 | inL->setLastModified( modifiedCalendar ); |
1106 | inR = inL->clone(); | 1112 | inR = inL->clone(); |
1113 | inR->setIDStr( ":" ); | ||
1107 | inR->setTempSyncStat( SYNC_TEMPSTATE_INITIAL ); | 1114 | inR->setTempSyncStat( SYNC_TEMPSTATE_INITIAL ); |
1108 | remote->addIncidence( inR ); | 1115 | remote->addIncidence( inR ); |
1109 | } | 1116 | } |
1110 | } | 1117 | } |
1111 | } else { | 1118 | } else { |
1112 | if ( inL->lastModified() < mLastCalendarSync && mode != 4 ) { | 1119 | if ( inL->lastModified() < mLastCalendarSync && mode != 4 ) { |
1113 | checkExternSyncEvent(eventLSyncSharp, inL); | 1120 | checkExternSyncEvent(eventLSyncSharp, inL); |
1114 | local->deleteIncidence( inL ); | 1121 | local->deleteIncidence( inL ); |
1115 | ++deletedEventL; | 1122 | ++deletedEventL; |
1116 | } else { | 1123 | } else { |
1117 | if ( ! mSyncManager->mWriteBackExistingOnly ) { | 1124 | if ( ! mSyncManager->mWriteBackExistingOnly ) { |
1118 | ++addedEventR; | 1125 | ++addedEventR; |
1119 | inL->setLastModified( modifiedCalendar ); | 1126 | inL->setLastModified( modifiedCalendar ); |
1120 | remote->addIncidence( inL->clone() ); | 1127 | inR = inL->clone(); |
1128 | inR->setIDStr( ":" ); | ||
1129 | remote->addIncidence( inR ); | ||
1121 | } | 1130 | } |
1122 | } | 1131 | } |
1123 | } | 1132 | } |
1124 | } | 1133 | } |
1125 | } | 1134 | } |
1126 | inL = el.next(); | 1135 | inL = el.next(); |
1127 | } | 1136 | } |
1128 | int delFut = 0; | 1137 | int delFut = 0; |
1129 | int remRem = 0; | 1138 | int remRem = 0; |
1130 | if ( mSyncManager->mWriteBackInFuture ) { | 1139 | if ( mSyncManager->mWriteBackInFuture ) { |
1131 | er = remote->rawIncidences(); | 1140 | er = remote->rawIncidences(); |
1132 | remRem = er.count(); | 1141 | remRem = er.count(); |
1133 | inR = er.first(); | 1142 | inR = er.first(); |
1134 | QDateTime dt; | 1143 | QDateTime dt; |
1135 | QDateTime cur = QDateTime::currentDateTime().addDays( -7 ); | 1144 | QDateTime cur = QDateTime::currentDateTime().addDays( -7 ); |
1136 | QDateTime end = cur.addDays( (mSyncManager->mWriteBackInFuture +1 ) *7 ); | 1145 | QDateTime end = cur.addDays( (mSyncManager->mWriteBackInFuture +1 ) *7 ); |