author | zautrix <zautrix> | 2004-09-19 20:14:28 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-09-19 20:14:28 (UTC) |
commit | afa28a62314117555d6b32291188eedd1a576284 (patch) (unidiff) | |
tree | ea97a247de30a7a34480bc395e1996ab99247361 /libkcal | |
parent | e0d8e062c9d8092e47dcadd88b30614ebff43c0c (diff) | |
download | kdepimpi-afa28a62314117555d6b32291188eedd1a576284.zip kdepimpi-afa28a62314117555d6b32291188eedd1a576284.tar.gz kdepimpi-afa28a62314117555d6b32291188eedd1a576284.tar.bz2 |
more AB sync
-rw-r--r-- | libkcal/sharpformat.cpp | 6 | ||||
-rw-r--r-- | libkcal/syncdefines.h | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/libkcal/sharpformat.cpp b/libkcal/sharpformat.cpp index e7fc670..d56eab6 100644 --- a/libkcal/sharpformat.cpp +++ b/libkcal/sharpformat.cpp | |||
@@ -357,387 +357,387 @@ ulong SharpFormat::getCsum( const QStringList & attList) | |||
357 | j = s.length(); | 357 | j = s.length(); |
358 | for ( k = 0; k < j; ++k ) { | 358 | for ( k = 0; k < j; ++k ) { |
359 | int mul = k +1; | 359 | int mul = k +1; |
360 | add = s[k].unicode (); | 360 | add = s[k].unicode (); |
361 | if ( k < 16 ) | 361 | if ( k < 16 ) |
362 | mul = mul * mul; | 362 | mul = mul * mul; |
363 | add = add * mul *i*i*i; | 363 | add = add * mul *i*i*i; |
364 | cSum += add; | 364 | cSum += add; |
365 | } | 365 | } |
366 | } | 366 | } |
367 | } | 367 | } |
368 | return cSum; | 368 | return cSum; |
369 | 369 | ||
370 | } | 370 | } |
371 | #include <stdlib.h> | 371 | #include <stdlib.h> |
372 | #define DEBUGMODE false | 372 | #define DEBUGMODE false |
373 | //#define DEBUGMODE true | 373 | //#define DEBUGMODE true |
374 | bool SharpFormat::load( Calendar *calendar, Calendar *existngCal ) | 374 | bool SharpFormat::load( Calendar *calendar, Calendar *existngCal ) |
375 | { | 375 | { |
376 | 376 | ||
377 | 377 | ||
378 | bool debug = DEBUGMODE; | 378 | bool debug = DEBUGMODE; |
379 | QString text; | 379 | QString text; |
380 | QString codec = "utf8"; | 380 | QString codec = "utf8"; |
381 | QLabel status ( i18n("Reading events ..."), 0 ); | 381 | QLabel status ( i18n("Reading events ..."), 0 ); |
382 | 382 | ||
383 | int w = status.sizeHint().width()+20 ; | 383 | int w = status.sizeHint().width()+20 ; |
384 | if ( w < 200 ) w = 200; | 384 | if ( w < 200 ) w = 200; |
385 | int h = status.sizeHint().height()+20 ; | 385 | int h = status.sizeHint().height()+20 ; |
386 | int dw = QApplication::desktop()->width(); | 386 | int dw = QApplication::desktop()->width(); |
387 | int dh = QApplication::desktop()->height(); | 387 | int dh = QApplication::desktop()->height(); |
388 | status.setCaption(i18n("Reading DTM Data") ); | 388 | status.setCaption(i18n("Reading DTM Data") ); |
389 | status.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); | 389 | status.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); |
390 | status.show(); | 390 | status.show(); |
391 | status.raise(); | 391 | status.raise(); |
392 | qApp->processEvents(); | 392 | qApp->processEvents(); |
393 | QString fileName; | 393 | QString fileName; |
394 | if ( ! debug ) { | 394 | if ( ! debug ) { |
395 | fileName = "/tmp/kopitempout"; | 395 | fileName = "/tmp/kopitempout"; |
396 | QString command ="db2file datebook -r -c "+ codec + " > " + fileName; | 396 | QString command ="db2file datebook -r -c "+ codec + " > " + fileName; |
397 | system ( command.latin1() ); | 397 | system ( command.latin1() ); |
398 | } else { | 398 | } else { |
399 | fileName = "/tmp/events.txt"; | 399 | fileName = "/tmp/events.txt"; |
400 | 400 | ||
401 | } | 401 | } |
402 | QFile file( fileName ); | 402 | QFile file( fileName ); |
403 | if (!file.open( IO_ReadOnly ) ) { | 403 | if (!file.open( IO_ReadOnly ) ) { |
404 | return false; | 404 | return false; |
405 | 405 | ||
406 | } | 406 | } |
407 | QTextStream ts( &file ); | 407 | QTextStream ts( &file ); |
408 | ts.setCodec( QTextCodec::codecForName("utf8") ); | 408 | ts.setCodec( QTextCodec::codecForName("utf8") ); |
409 | text = ts.read(); | 409 | text = ts.read(); |
410 | file.close(); | 410 | file.close(); |
411 | status.setText( i18n("Processing events ...") ); | 411 | status.setText( i18n("Processing events ...") ); |
412 | status.raise(); | 412 | status.raise(); |
413 | qApp->processEvents(); | 413 | qApp->processEvents(); |
414 | fromString2Cal( calendar, existngCal, text, "Event" ); | 414 | fromString2Cal( calendar, existngCal, text, "Event" ); |
415 | status.setText( i18n("Reading todos ...") ); | 415 | status.setText( i18n("Reading todos ...") ); |
416 | qApp->processEvents(); | 416 | qApp->processEvents(); |
417 | if ( ! debug ) { | 417 | if ( ! debug ) { |
418 | fileName = "/tmp/kopitempout"; | 418 | fileName = "/tmp/kopitempout"; |
419 | QString command = "db2file todo -r -c " + codec+ " > " + fileName; | 419 | QString command = "db2file todo -r -c " + codec+ " > " + fileName; |
420 | system ( command.latin1() ); | 420 | system ( command.latin1() ); |
421 | } else { | 421 | } else { |
422 | fileName = "/tmp/todo.txt"; | 422 | fileName = "/tmp/todo.txt"; |
423 | } | 423 | } |
424 | file.setName( fileName ); | 424 | file.setName( fileName ); |
425 | if (!file.open( IO_ReadOnly ) ) { | 425 | if (!file.open( IO_ReadOnly ) ) { |
426 | return false; | 426 | return false; |
427 | 427 | ||
428 | } | 428 | } |
429 | ts.setDevice( &file ); | 429 | ts.setDevice( &file ); |
430 | text = ts.read(); | 430 | text = ts.read(); |
431 | file.close(); | 431 | file.close(); |
432 | 432 | ||
433 | status.setText( i18n("Processing todos ...") ); | 433 | status.setText( i18n("Processing todos ...") ); |
434 | status.raise(); | 434 | status.raise(); |
435 | qApp->processEvents(); | 435 | qApp->processEvents(); |
436 | fromString2Cal( calendar, existngCal, text, "Todo" ); | 436 | fromString2Cal( calendar, existngCal, text, "Todo" ); |
437 | return true; | 437 | return true; |
438 | } | 438 | } |
439 | int SharpFormat::getNumFromRecord( QString answer, Incidence* inc ) | 439 | int SharpFormat::getNumFromRecord( QString answer, Incidence* inc ) |
440 | { | 440 | { |
441 | int retval = -1; | 441 | int retval = -1; |
442 | QStringList templist; | 442 | QStringList templist; |
443 | QString tempString; | 443 | QString tempString; |
444 | int start = 0; | 444 | int start = 0; |
445 | int len = answer.length(); | 445 | int len = answer.length(); |
446 | int end = answer.find ("\n",start)+1; | 446 | int end = answer.find ("\n",start)+1; |
447 | bool ok = true; | 447 | bool ok = true; |
448 | start = end; | 448 | start = end; |
449 | int ccc = 0; | 449 | int ccc = 0; |
450 | while ( start > 0 ) { | 450 | while ( start > 0 ) { |
451 | templist.clear(); | 451 | templist.clear(); |
452 | ok = true; | 452 | ok = true; |
453 | int loopCount = 0; | 453 | int loopCount = 0; |
454 | while ( ok ) { | 454 | while ( ok ) { |
455 | ++loopCount; | 455 | ++loopCount; |
456 | if ( loopCount > 25 ) { | 456 | if ( loopCount > 25 ) { |
457 | qDebug("KO: Error in while loop"); | 457 | qDebug("KO: Error in while loop"); |
458 | ok = false; | 458 | ok = false; |
459 | start = 0; | 459 | start = 0; |
460 | break; | 460 | break; |
461 | } | 461 | } |
462 | if ( ok ) | 462 | if ( ok ) |
463 | tempString = getPart( answer, ok, start ); | 463 | tempString = getPart( answer, ok, start ); |
464 | if ( start >= len || start == 0 ) { | 464 | if ( start >= len || start == 0 ) { |
465 | start = 0; | 465 | start = 0; |
466 | ok = false; | 466 | ok = false; |
467 | } | 467 | } |
468 | if ( tempString.right(1) =="\n" ) | 468 | if ( tempString.right(1) =="\n" ) |
469 | tempString = tempString.left( tempString.length()-1); | 469 | tempString = tempString.left( tempString.length()-1); |
470 | 470 | ||
471 | templist.append( tempString ); | 471 | templist.append( tempString ); |
472 | } | 472 | } |
473 | ++ccc; | 473 | ++ccc; |
474 | if ( ccc == 2 && loopCount < 25 ) { | 474 | if ( ccc == 2 && loopCount < 25 ) { |
475 | start = 0; | 475 | start = 0; |
476 | bool ok; | 476 | bool ok; |
477 | int newnum = templist[0].toInt( &ok ); | 477 | int newnum = templist[0].toInt( &ok ); |
478 | if ( ok && newnum > 0) { | 478 | if ( ok && newnum > 0) { |
479 | retval = newnum; | 479 | retval = newnum; |
480 | inc->setID( "Sharp_DTM",templist[0] ); | 480 | inc->setID( "Sharp_DTM",templist[0] ); |
481 | inc->setCsum( "Sharp_DTM", QString::number( getCsum( templist ) )); | 481 | inc->setCsum( "Sharp_DTM", QString::number( getCsum( templist ) )); |
482 | inc->setTempSyncStat( SYNC_TEMPSTATE_NEW_ID ); | 482 | inc->setTempSyncStat( SYNC_TEMPSTATE_NEW_ID ); |
483 | } | 483 | } |
484 | if ( ok && newnum == -1 ) { | 484 | if ( ok && newnum == -1 ) { |
485 | qDebug("Error writing back %s ", inc->summary().latin1()); | 485 | qDebug("Error writing back %s ", inc->summary().latin1()); |
486 | } | 486 | } |
487 | } | 487 | } |
488 | } | 488 | } |
489 | //qDebug("getNumFromRecord returning : %d ", retval); | 489 | //qDebug("getNumFromRecord returning : %d ", retval); |
490 | return retval; | 490 | return retval; |
491 | } | 491 | } |
492 | bool SharpFormat::save( Calendar *calendar) | 492 | bool SharpFormat::save( Calendar *calendar) |
493 | { | 493 | { |
494 | 494 | ||
495 | QLabel status ( i18n("Processing/adding events ..."), 0 ); | 495 | QLabel status ( i18n("Processing/adding events ..."), 0 ); |
496 | int w = status.sizeHint().width()+20 ; | 496 | int w = status.sizeHint().width()+20 ; |
497 | if ( w < 200 ) w = 200; | 497 | if ( w < 200 ) w = 200; |
498 | int h = status.sizeHint().height()+20 ; | 498 | int h = status.sizeHint().height()+20 ; |
499 | int dw = QApplication::desktop()->width(); | 499 | int dw = QApplication::desktop()->width(); |
500 | int dh = QApplication::desktop()->height(); | 500 | int dh = QApplication::desktop()->height(); |
501 | status.setCaption(i18n("Writing DTM Data") ); | 501 | status.setCaption(i18n("Writing DTM Data") ); |
502 | status.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); | 502 | status.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); |
503 | status.show(); | 503 | status.show(); |
504 | status.raise(); | 504 | status.raise(); |
505 | qApp->processEvents(); | 505 | qApp->processEvents(); |
506 | bool debug = DEBUGMODE; | 506 | bool debug = DEBUGMODE; |
507 | QString codec = "utf8"; | 507 | QString codec = "utf8"; |
508 | QString answer; | 508 | QString answer; |
509 | QString ePrefix = "CARDID,CATEGORY,DSRP,PLCE,MEM1,TIM1,TIM2,ADAY,ARON,ARMN,ARSD,RTYP,RFRQ,RPOS,RDYS,REND,REDT,ALSD,ALED,MDAY\n"; | 509 | QString ePrefix = "CARDID,CATEGORY,DSRP,PLCE,MEM1,TIM1,TIM2,ADAY,ARON,ARMN,ARSD,RTYP,RFRQ,RPOS,RDYS,REND,REDT,ALSD,ALED,MDAY\n"; |
510 | QString tPrefix = "CARDID,CATEGORY,ETDY,LTDY,FNDY,MARK,PRTY,TITL,MEM1\n"; | 510 | QString tPrefix = "CARDID,CATEGORY,ETDY,LTDY,FNDY,MARK,PRTY,TITL,MEM1\n"; |
511 | QString command; | 511 | QString command; |
512 | QPtrList<Event> er = calendar->rawEvents(); | 512 | QPtrList<Event> er = calendar->rawEvents(); |
513 | Event* ev = er.first(); | 513 | Event* ev = er.first(); |
514 | QString fileName = "/tmp/kopitempout"; | 514 | QString fileName = "/tmp/kopitempout"; |
515 | int i = 0; | 515 | int i = 0; |
516 | QString changeString = ePrefix; | 516 | QString changeString = ePrefix; |
517 | QString deleteString = ePrefix; | 517 | QString deleteString = ePrefix; |
518 | bool deleteEnt = false; | 518 | bool deleteEnt = false; |
519 | bool changeEnt = false; | 519 | bool changeEnt = false; |
520 | QString message = i18n("Processing event # "); | 520 | QString message = i18n("Processing event # "); |
521 | int procCount = 0; | 521 | int procCount = 0; |
522 | while ( ev ) { | 522 | while ( ev ) { |
523 | //qDebug("i %d ", ++i); | 523 | //qDebug("i %d ", ++i); |
524 | if ( ev->tempSyncStat() != SYNC_TEMPSTATE_NEW_EXTERNAL ) { | 524 | if ( ev->tempSyncStat() != SYNC_TEMPSTATE_NEW_EXTERNAL ) { |
525 | status.setText ( message + QString::number ( ++procCount ) ); | 525 | status.setText ( message + QString::number ( ++procCount ) ); |
526 | qApp->processEvents(); | 526 | qApp->processEvents(); |
527 | QString eString = getEventString( ev ); | 527 | QString eString = getEventString( ev ); |
528 | if ( ev->tempSyncStat() == SYNC_TEMPSTATE_DELETE ) { // delete | 528 | if ( ev->tempSyncStat() == SYNC_TEMPSTATE_DELETE ) { // delete |
529 | // deleting empty strings does not work. | 529 | // deleting empty strings does not work. |
530 | // we write first and x and then delete the record with the x | 530 | // we write first and x and then delete the record with the x |
531 | eString = eString.replace( QRegExp(",\"\""),",\"x\"" ); | 531 | eString = eString.replace( QRegExp(",\"\""),",\"x\"" ); |
532 | changeString += eString + "\n"; | 532 | changeString += eString + "\n"; |
533 | deleteString += eString + "\n"; | 533 | deleteString += eString + "\n"; |
534 | deleteEnt = true; | 534 | deleteEnt = true; |
535 | changeEnt = true; | 535 | changeEnt = true; |
536 | } | 536 | } |
537 | else if ( ev->getID("Sharp_DTM").isEmpty() ) { // add new | 537 | else if ( ev->getID("Sharp_DTM").isEmpty() ) { // add new |
538 | QString fileNameIn = "/tmp/kopitempin"; | 538 | QString fileNameIn = "/tmp/kopitempin"; |
539 | QFile fileIn( fileNameIn ); | 539 | QFile fileIn( fileNameIn ); |
540 | if (!fileIn.open( IO_WriteOnly ) ) { | 540 | if (!fileIn.open( IO_WriteOnly ) ) { |
541 | return false; | 541 | return false; |
542 | } | 542 | } |
543 | QTextStream tsIn( &fileIn ); | 543 | QTextStream tsIn( &fileIn ); |
544 | tsIn.setCodec( QTextCodec::codecForName("utf8") ); | 544 | tsIn.setCodec( QTextCodec::codecForName("utf8") ); |
545 | tsIn << ePrefix << eString ; | 545 | tsIn << ePrefix << eString ; |
546 | fileIn.close(); | 546 | fileIn.close(); |
547 | //command = "(echo \"" + ePrefix + eString + "\" ) | db2file datebook -w -g -c " + codec+ " > "+ fileName; | 547 | //command = "(echo \"" + ePrefix + eString + "\" ) | db2file datebook -w -g -c " + codec+ " > "+ fileName; |
548 | command = "(cat /tmp/kopitempin | db2file datebook -w -g -c " + codec+ ") > "+ fileName; | 548 | command = "(cat /tmp/kopitempin | db2file datebook -w -g -c " + codec+ ") > "+ fileName; |
549 | qDebug("command ++++++++ "); | 549 | //qDebug("command ++++++++ "); |
550 | qDebug("%s ",command.latin1()); | 550 | //qDebug("%s ",command.latin1()); |
551 | qDebug("command -------- "); | 551 | //qDebug("command -------- "); |
552 | system ( command.utf8() ); | 552 | system ( command.utf8() ); |
553 | QFile file( fileName ); | 553 | QFile file( fileName ); |
554 | if (!file.open( IO_ReadOnly ) ) { | 554 | if (!file.open( IO_ReadOnly ) ) { |
555 | return false; | 555 | return false; |
556 | 556 | ||
557 | } | 557 | } |
558 | QTextStream ts( &file ); | 558 | QTextStream ts( &file ); |
559 | ts.setCodec( QTextCodec::codecForName("utf8") ); | 559 | ts.setCodec( QTextCodec::codecForName("utf8") ); |
560 | answer = ts.read(); | 560 | answer = ts.read(); |
561 | file.close(); | 561 | file.close(); |
562 | //qDebug("answer \n%s ", answer.latin1()); | 562 | //qDebug("answer \n%s ", answer.latin1()); |
563 | getNumFromRecord( answer, ev ) ; | 563 | getNumFromRecord( answer, ev ) ; |
564 | 564 | ||
565 | } | 565 | } |
566 | else { // change existing | 566 | else { // change existing |
567 | //qDebug("canging %d %d",ev->zaurusStat() ,ev->zaurusId() ); | 567 | //qDebug("canging %d %d",ev->zaurusStat() ,ev->zaurusId() ); |
568 | //command = "(echo \"" + ePrefix + eString + "\" ) | db2file datebook -w -g -c " + codec+ " > "+ fileName; | 568 | //command = "(echo \"" + ePrefix + eString + "\" ) | db2file datebook -w -g -c " + codec+ " > "+ fileName; |
569 | changeString += eString + "\n"; | 569 | changeString += eString + "\n"; |
570 | changeEnt = true; | 570 | changeEnt = true; |
571 | 571 | ||
572 | } | 572 | } |
573 | } | 573 | } |
574 | ev = er.next(); | 574 | ev = er.next(); |
575 | } | 575 | } |
576 | status.setText ( i18n("Changing events ...") ); | 576 | status.setText ( i18n("Changing events ...") ); |
577 | qApp->processEvents(); | 577 | qApp->processEvents(); |
578 | //qDebug("changing... "); | 578 | //qDebug("changing... "); |
579 | if ( changeEnt ) { | 579 | if ( changeEnt ) { |
580 | QFile file( fileName ); | 580 | QFile file( fileName ); |
581 | if (!file.open( IO_WriteOnly ) ) { | 581 | if (!file.open( IO_WriteOnly ) ) { |
582 | return false; | 582 | return false; |
583 | 583 | ||
584 | } | 584 | } |
585 | QTextStream ts( &file ); | 585 | QTextStream ts( &file ); |
586 | ts.setCodec( QTextCodec::codecForName("utf8") ); | 586 | ts.setCodec( QTextCodec::codecForName("utf8") ); |
587 | ts << changeString ; | 587 | ts << changeString ; |
588 | file.close(); | 588 | file.close(); |
589 | command = "db2file datebook -w -g -c " + codec+ " < "+ fileName; | 589 | command = "db2file datebook -w -g -c " + codec+ " < "+ fileName; |
590 | system ( command.latin1() ); | 590 | system ( command.latin1() ); |
591 | //qDebug("command %s file :\n%s ", command.latin1(), changeString.latin1()); | 591 | //qDebug("command %s file :\n%s ", command.latin1(), changeString.latin1()); |
592 | 592 | ||
593 | } | 593 | } |
594 | status.setText ( i18n("Deleting events ...") ); | 594 | status.setText ( i18n("Deleting events ...") ); |
595 | qApp->processEvents(); | 595 | qApp->processEvents(); |
596 | //qDebug("deleting... "); | 596 | //qDebug("deleting... "); |
597 | if ( deleteEnt ) { | 597 | if ( deleteEnt ) { |
598 | QFile file( fileName ); | 598 | QFile file( fileName ); |
599 | if (!file.open( IO_WriteOnly ) ) { | 599 | if (!file.open( IO_WriteOnly ) ) { |
600 | return false; | 600 | return false; |
601 | 601 | ||
602 | } | 602 | } |
603 | QTextStream ts( &file ); | 603 | QTextStream ts( &file ); |
604 | ts.setCodec( QTextCodec::codecForName("utf8") ); | 604 | ts.setCodec( QTextCodec::codecForName("utf8") ); |
605 | ts << deleteString; | 605 | ts << deleteString; |
606 | file.close(); | 606 | file.close(); |
607 | command = "db2file datebook -d -c " + codec+ " < "+ fileName; | 607 | command = "db2file datebook -d -c " + codec+ " < "+ fileName; |
608 | system ( command.latin1() ); | 608 | system ( command.latin1() ); |
609 | // qDebug("command %s file :\n%s ", command.latin1(), deleteString.latin1()); | 609 | // qDebug("command %s file :\n%s ", command.latin1(), deleteString.latin1()); |
610 | } | 610 | } |
611 | 611 | ||
612 | 612 | ||
613 | changeString = tPrefix; | 613 | changeString = tPrefix; |
614 | deleteString = tPrefix; | 614 | deleteString = tPrefix; |
615 | status.setText ( i18n("Processing todos ...") ); | 615 | status.setText ( i18n("Processing todos ...") ); |
616 | qApp->processEvents(); | 616 | qApp->processEvents(); |
617 | QPtrList<Todo> tl = calendar->rawTodos(); | 617 | QPtrList<Todo> tl = calendar->rawTodos(); |
618 | Todo* to = tl.first(); | 618 | Todo* to = tl.first(); |
619 | i = 0; | 619 | i = 0; |
620 | message = i18n("Processing todo # "); | 620 | message = i18n("Processing todo # "); |
621 | procCount = 0; | 621 | procCount = 0; |
622 | while ( to ) { | 622 | while ( to ) { |
623 | if ( to->tempSyncStat() != SYNC_TEMPSTATE_NEW_EXTERNAL ) { | 623 | if ( to->tempSyncStat() != SYNC_TEMPSTATE_NEW_EXTERNAL ) { |
624 | status.setText ( message + QString::number ( ++procCount ) ); | 624 | status.setText ( message + QString::number ( ++procCount ) ); |
625 | qApp->processEvents(); | 625 | qApp->processEvents(); |
626 | QString eString = getTodoString( to ); | 626 | QString eString = getTodoString( to ); |
627 | if ( to->tempSyncStat() == SYNC_TEMPSTATE_DELETE ) { // delete | 627 | if ( to->tempSyncStat() == SYNC_TEMPSTATE_DELETE ) { // delete |
628 | // deleting empty strings does not work. | 628 | // deleting empty strings does not work. |
629 | // we write first and x and then delete the record with the x | 629 | // we write first and x and then delete the record with the x |
630 | eString = eString.replace( QRegExp(",\"\""),",\"x\"" ); | 630 | eString = eString.replace( QRegExp(",\"\""),",\"x\"" ); |
631 | changeString += eString + "\n"; | 631 | changeString += eString + "\n"; |
632 | deleteString += eString + "\n"; | 632 | deleteString += eString + "\n"; |
633 | deleteEnt = true; | 633 | deleteEnt = true; |
634 | changeEnt = true; | 634 | changeEnt = true; |
635 | } | 635 | } |
636 | else if ( to->getID("Sharp_DTM").isEmpty() ) { // add new | 636 | else if ( to->getID("Sharp_DTM").isEmpty() ) { // add new |
637 | command = "(echo \"" + tPrefix + eString + "\" ) | db2file todo -w -g -c " + codec+ " > "+ fileName; | 637 | command = "(echo \"" + tPrefix + eString + "\" ) | db2file todo -w -g -c " + codec+ " > "+ fileName; |
638 | system ( command.utf8() ); | 638 | system ( command.utf8() ); |
639 | QFile file( fileName ); | 639 | QFile file( fileName ); |
640 | if (!file.open( IO_ReadOnly ) ) { | 640 | if (!file.open( IO_ReadOnly ) ) { |
641 | return false; | 641 | return false; |
642 | 642 | ||
643 | } | 643 | } |
644 | QTextStream ts( &file ); | 644 | QTextStream ts( &file ); |
645 | ts.setCodec( QTextCodec::codecForName("utf8") ); | 645 | ts.setCodec( QTextCodec::codecForName("utf8") ); |
646 | answer = ts.read(); | 646 | answer = ts.read(); |
647 | file.close(); | 647 | file.close(); |
648 | //qDebug("answer \n%s ", answer.latin1()); | 648 | //qDebug("answer \n%s ", answer.latin1()); |
649 | getNumFromRecord( answer, to ) ; | 649 | getNumFromRecord( answer, to ) ; |
650 | 650 | ||
651 | } | 651 | } |
652 | else { // change existing | 652 | else { // change existing |
653 | //qDebug("canging %d %d",to->zaurusStat() ,to->zaurusId() ); | 653 | //qDebug("canging %d %d",to->zaurusStat() ,to->zaurusId() ); |
654 | //command = "(echo \"" + ePrefix + eString + "\" ) | db2file datebook -w -g -c " + codec+ " > "+ fileName; | 654 | //command = "(echo \"" + ePrefix + eString + "\" ) | db2file datebook -w -g -c " + codec+ " > "+ fileName; |
655 | changeString += eString + "\n"; | 655 | changeString += eString + "\n"; |
656 | changeEnt = true; | 656 | changeEnt = true; |
657 | 657 | ||
658 | } | 658 | } |
659 | } | 659 | } |
660 | 660 | ||
661 | to = tl.next(); | 661 | to = tl.next(); |
662 | } | 662 | } |
663 | status.setText ( i18n("Changing todos ...") ); | 663 | status.setText ( i18n("Changing todos ...") ); |
664 | qApp->processEvents(); | 664 | qApp->processEvents(); |
665 | //qDebug("changing... "); | 665 | //qDebug("changing... "); |
666 | if ( changeEnt ) { | 666 | if ( changeEnt ) { |
667 | QFile file( fileName ); | 667 | QFile file( fileName ); |
668 | if (!file.open( IO_WriteOnly ) ) { | 668 | if (!file.open( IO_WriteOnly ) ) { |
669 | return false; | 669 | return false; |
670 | 670 | ||
671 | } | 671 | } |
672 | QTextStream ts( &file ); | 672 | QTextStream ts( &file ); |
673 | ts.setCodec( QTextCodec::codecForName("utf8") ); | 673 | ts.setCodec( QTextCodec::codecForName("utf8") ); |
674 | ts << changeString ; | 674 | ts << changeString ; |
675 | file.close(); | 675 | file.close(); |
676 | command = "db2file todo -w -g -c " + codec+ " < "+ fileName; | 676 | command = "db2file todo -w -g -c " + codec+ " < "+ fileName; |
677 | system ( command.latin1() ); | 677 | system ( command.latin1() ); |
678 | //qDebug("command %s file :\n%s ", command.latin1(), changeString.latin1()); | 678 | //qDebug("command %s file :\n%s ", command.latin1(), changeString.latin1()); |
679 | 679 | ||
680 | } | 680 | } |
681 | status.setText ( i18n("Deleting todos ...") ); | 681 | status.setText ( i18n("Deleting todos ...") ); |
682 | qApp->processEvents(); | 682 | qApp->processEvents(); |
683 | //qDebug("deleting... "); | 683 | //qDebug("deleting... "); |
684 | if ( deleteEnt ) { | 684 | if ( deleteEnt ) { |
685 | QFile file( fileName ); | 685 | QFile file( fileName ); |
686 | if (!file.open( IO_WriteOnly ) ) { | 686 | if (!file.open( IO_WriteOnly ) ) { |
687 | return false; | 687 | return false; |
688 | 688 | ||
689 | } | 689 | } |
690 | QTextStream ts( &file ); | 690 | QTextStream ts( &file ); |
691 | ts.setCodec( QTextCodec::codecForName("utf8") ); | 691 | ts.setCodec( QTextCodec::codecForName("utf8") ); |
692 | ts << deleteString; | 692 | ts << deleteString; |
693 | file.close(); | 693 | file.close(); |
694 | command = "db2file todo -d -c " + codec+ " < "+ fileName; | 694 | command = "db2file todo -d -c " + codec+ " < "+ fileName; |
695 | system ( command.latin1() ); | 695 | system ( command.latin1() ); |
696 | // qDebug("command %s file :\n%s ", command.latin1(), deleteString.latin1()); | 696 | // qDebug("command %s file :\n%s ", command.latin1(), deleteString.latin1()); |
697 | } | 697 | } |
698 | 698 | ||
699 | return true; | 699 | return true; |
700 | } | 700 | } |
701 | QString SharpFormat::dtToString( const QDateTime& dti, bool useTZ ) | 701 | QString SharpFormat::dtToString( const QDateTime& dti, bool useTZ ) |
702 | { | 702 | { |
703 | QString datestr; | 703 | QString datestr; |
704 | QString timestr; | 704 | QString timestr; |
705 | int offset = KGlobal::locale()->localTimeOffset( dti ); | 705 | int offset = KGlobal::locale()->localTimeOffset( dti ); |
706 | QDateTime dt; | 706 | QDateTime dt; |
707 | if (useTZ) | 707 | if (useTZ) |
708 | dt = dti.addSecs ( -(offset*60)); | 708 | dt = dti.addSecs ( -(offset*60)); |
709 | else | 709 | else |
710 | dt = dti; | 710 | dt = dti; |
711 | if(dt.date().isValid()){ | 711 | if(dt.date().isValid()){ |
712 | const QDate& date = dt.date(); | 712 | const QDate& date = dt.date(); |
713 | datestr.sprintf("%04d%02d%02d", | 713 | datestr.sprintf("%04d%02d%02d", |
714 | date.year(), date.month(), date.day()); | 714 | date.year(), date.month(), date.day()); |
715 | } | 715 | } |
716 | if(dt.time().isValid()){ | 716 | if(dt.time().isValid()){ |
717 | const QTime& time = dt.time(); | 717 | const QTime& time = dt.time(); |
718 | timestr.sprintf("T%02d%02d%02d", | 718 | timestr.sprintf("T%02d%02d%02d", |
719 | time.hour(), time.minute(), time.second()); | 719 | time.hour(), time.minute(), time.second()); |
720 | } | 720 | } |
721 | return datestr + timestr; | 721 | return datestr + timestr; |
722 | } | 722 | } |
723 | QString SharpFormat::getEventString( Event* event ) | 723 | QString SharpFormat::getEventString( Event* event ) |
724 | { | 724 | { |
725 | QStringList list; | 725 | QStringList list; |
726 | list.append( event->getID("Sharp_DTM") ); | 726 | list.append( event->getID("Sharp_DTM") ); |
727 | list.append( event->categories().join(",") ); | 727 | list.append( event->categories().join(",") ); |
728 | if ( !event->summary().isEmpty() ) | 728 | if ( !event->summary().isEmpty() ) |
729 | list.append( event->summary() ); | 729 | list.append( event->summary() ); |
730 | else | 730 | else |
731 | list.append("" ); | 731 | list.append("" ); |
732 | if ( !event->location().isEmpty() ) | 732 | if ( !event->location().isEmpty() ) |
733 | list.append( event->location() ); | 733 | list.append( event->location() ); |
734 | else | 734 | else |
735 | list.append("" ); | 735 | list.append("" ); |
736 | if ( !event->description().isEmpty() ) | 736 | if ( !event->description().isEmpty() ) |
737 | list.append( event->description() ); | 737 | list.append( event->description() ); |
738 | else | 738 | else |
739 | list.append( "" ); | 739 | list.append( "" ); |
740 | if ( event->doesFloat () ) { | 740 | if ( event->doesFloat () ) { |
741 | list.append( dtToString( QDateTime(event->dtStart().date(), QTime(0,0,0)), false )); | 741 | list.append( dtToString( QDateTime(event->dtStart().date(), QTime(0,0,0)), false )); |
742 | list.append( dtToString( QDateTime(event->dtEnd().date(),QTime(23,59,59)), false )); //6 | 742 | list.append( dtToString( QDateTime(event->dtEnd().date(),QTime(23,59,59)), false )); //6 |
743 | list.append( "1" ); | 743 | list.append( "1" ); |
diff --git a/libkcal/syncdefines.h b/libkcal/syncdefines.h index 57642ec..704a670 100644 --- a/libkcal/syncdefines.h +++ b/libkcal/syncdefines.h | |||
@@ -1,22 +1,24 @@ | |||
1 | 1 | ||
2 | #ifndef _KSYNC_DEFINES_H_ | 2 | #ifndef _KSYNC_DEFINES_H_ |
3 | #define _KSYNC_DEFINES_H_ | 3 | #define _KSYNC_DEFINES_H_ |
4 | 4 | ||
5 | #define SYNC_PREF_LOCAL 0 | 5 | #define SYNC_PREF_LOCAL 0 |
6 | #define SYNC_PREF_REMOTE 1 | 6 | #define SYNC_PREF_REMOTE 1 |
7 | #define SYNC_PREF_NEWEST 2 | 7 | #define SYNC_PREF_NEWEST 2 |
8 | #define SYNC_PREF_ASK 3 | 8 | #define SYNC_PREF_ASK 3 |
9 | #define SYNC_PREF_FORCE_LOCAL 4 | 9 | #define SYNC_PREF_FORCE_LOCAL 4 |
10 | #define SYNC_PREF_FORCE_REMOTE 5 | 10 | #define SYNC_PREF_FORCE_REMOTE 5 |
11 | #define SYNC_PREF_TAKE_BOTH 6 | 11 | #define SYNC_PREF_TAKE_BOTH 6 |
12 | 12 | ||
13 | #define SYNC_MODE_NORMAL 0 | 13 | #define SYNC_MODE_NORMAL 0 |
14 | #define SYNC_MODE_EXTERNAL 1 | 14 | #define SYNC_MODE_EXTERNAL 1 |
15 | 15 | ||
16 | #define SYNC_TEMPSTATE_INITIAL 0 | 16 | #define SYNC_TEMPSTATE_INITIAL 0 |
17 | #define SYNC_TEMPSTATE_ADDED_EXTERNAL -1 | ||
17 | #define SYNC_TEMPSTATE_NEW_EXTERNAL -2 | 18 | #define SYNC_TEMPSTATE_NEW_EXTERNAL -2 |
18 | #define SYNC_TEMPSTATE_DELETE -3 | 19 | #define SYNC_TEMPSTATE_DELETE -3 |
19 | #define SYNC_TEMPSTATE_NEW_ID -4 | 20 | #define SYNC_TEMPSTATE_NEW_ID -4 |
21 | #define SYNC_TEMPSTATE_NEW_CSUM -5 | ||
20 | 22 | ||
21 | 23 | ||
22 | #endif | 24 | #endif |