1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
|
2008-04-02 Johnny Jacob <jjohnny@novell.com>
* evolution/src/Camel.cs: Added.
* evolution/src/Evolution.cs: Added
2008-04-02 Johnny Jacob <jjohnny@novell.com>
* configure.in: Version bump. 0.17.1 .
Support for EDS 2.23.1 Development.
2008-03-27 Johnny Jacob <jjohnny@novell.com>
* Reverting Patch for #516044. Keeping it consistent with
other bindings.
2008-03-10 Johnny Jacob <jjohnny@novell.com>
* configure.in: Support for e-d-s-2.22.0 stable release.
Version bumped to 0.16.0.
2008-03-05 Veerapuram Varadhan <vvaradhan@novell.com>
* MAINTAINERS: Change of guards
2008-02-26 Johnny Jacob <jjohnny@novell.com>
* configure.in: Add support for e-d-s-2.21.92 development release.
Bump version to 0.15.92
* NEWS: 0.15.92 release updates.
2008-02-25 Johnny Jacob <jjohnny@novell.com>
* evolution/src/CalComponent.cs: Added a destructor for
unrefing ECalComponent.
* glue/cal/e-cal-glue-comp.c (e_cal_glue_cal_component_get_summary),
(e_cal_glue_free_cal_component): Added.
2008-02-22 Matthew Barnes <mbarnes@redhat.com>
* Makefile.am:
* evolution-sharp.pc.in:
Use $(libdir) instead of $(prefix)/lib for the sake of multilib
enabled distros. (#516044)
2008-02-12 Johnny Jacob <jjohnny@novell.com>
* configure.in: Add support for e-d-s-2.21.91 development release.
Bump version to 0.15.91
* NEWS: 0.15.91 release updates.
2008-02-05 Johnny Jacob <jjohnny@novell.com>
* configure.in: Add compatibility with eds-2.21.90.
2008-01-17 Johnny Jacob <jjohnny@novell.com>
* configure.in: Add compatibility with eds-2.21.5.
2007-12-17 Johnny Jacob <jjohnny@novell.com>
* configure.in: Add support for e-d-s-2.21.4 development release.
Bump version to 0.15.4
* NEWS: 0.15.4 release updates.
2007-10-30 Johnny Jacob <jjohnny@novell.com>
* configure.in: Add support for e-d-s-2.21.1 development release.
Bump version to 0.15.1
* NEWS: 0.15.1 release updates.
2007-09-19 Veerapuram Varadhan <vvaradhan@novell.com>
* configure.in: e-d-s version comparison glitch fix. Reported by
Matthew Barnes.
2007-09-18 Veerapuram Varadhan <vvaradhan@novell.com>
* configure.in: Add support for e-d-s-1.12.0 stable release.
Bump version to 0.14.0 - a stable release.
* NEWS: 0.14.0 release updates
2007-08-24 Veerapuram Varadhan <vvaradhan@novell.com>
** Fixes#452494
* configure.in: Update API_VERSION according to the changes done for
0.13 release. Bump version to 0.13.3.
* NEWS: 0.13.3 release updates
2007-07-31 Veerapuram Varadhan <vvaradhan@novell.com>
* configure.in: Add support for e-d-s-1.11.6 development release.
Bump version to 0.13.2
* NEWS: 0.13.2 release updates
2007-07-17 Veerapuram Varadhan <vvaradhan@novell.com>
* configure.in: Add support for e-d-s 1.11.5 development release -
Use 1.10.x API as nothing changed since then. Bump version to
0.13.1.
* NEWS: 0.13.1 release updates
* evolution/TestTask.cs: Copyright update and intendation
2007-06-20 Veerapuram Varadhan <vvaradhan@novell.com>
* configure.in: Add support for e-d-s 1.11.4 development release -
Use 1.10.x API itself - nothing has changed. Bump the version to 0.13.
* NEWS: 0.13 release updates
* glue/cal/e-cal-glue.h: Add missing file to SVN.
2007-06-20 Veerapuram Varadhan <vvaradhan@novell.com>
** Based on the work of Alois Belaska <lloyd@centrum.cz>
* evolution/TestCal.cs:
* evolution/TestTask.cs: Add unit test for operation on Tasks
* evolution/src/GLibUtil.cs:
* evolution/src/CalGlueComponentUtil.cs: Kill
* evolution/src/CalRecurrence.cs:
* evolution/src/CalUtil.cs:
* evolution/src/CalComponent.cs:
* evolution/Cal.custom:
* evolution/Makefile.am: Disable Recurrence code and add TestTask target
* glue/cal/e-cal-glue-recur.h:
* glue/cal/e-cal-glue.h:
* glue/cal/e-cal-glue-recur-util.c:
* glue/cal/e-cal-glue-comp.c:
* glue/cal/e-cal-glue-recur.c:
* glue/cal/e-cal-glue.c:
* glue/cal/e-cal-glue-comp.h: Support for create and edit calendar
events, todos, tasks. But is still missing support for calendar
recurrences and exceptions, because previous implementation was
not compatible with changes. But it's under development and will
be finished soon.
2007-06-20 Veerapuram Varadhan <vvaradhan@novell.com>
** Fixes couple of crashes reported by Calvin Gaisford <calvinrg@gmail.com>
* evolution/Evolution.metadata: Hide AddAttribute and AddParam
from VCard and VCardAttribute classes - we have our own hand-stitched
implementation.
* evolution/Makefile.am: Add VCard.custom and VCardAttribute.custom files
* evolution/TestBook.cs: Add unit tests for Contact and
ContactList creation/removal.
* AUTHORS: More contributors
* evolution/VCard.custom:
* evolution/VCardAttribute.custom: Custom implementation of the
troublesome APIs.
2007-05-14 Veerapuram Varadhan <vvaradhan@novell.com>
* configure.in: Add support for e-d-s 1.11.2 development release -
Use 1.10.x API itself - nothing has changed.
2007-04-24 Veerapuram Varadhan <vvaradhan@novell.com>
* configure.in: Add support for e-d-s 1.11.x development release -
as no API have changed so far, we are using the last stable API
version.
2007-01-23 Joe Shaw <joeshaw@novell.com>
* configure.in, evolution/Makefile.am: Be *very* explicit about
the versions we support, so that we don't have to go hunting
through old evolution-data-server releases to know what we
support.
2007-01-23 Veerapuram Varadhan <vvaradhan@novell.com>
* configure.in, evolution/Makefile.am: Add support for e-d-s
1.9.x development release - as no more API changes will be done
on the forth coming releases. Bump the version to 0.12.2.
2007-01-17 Veerapuram Varadhan <vvaradhan@novell.com>
* configure.in, evolution/Makefile.am: Add support for e-d-s
1.9.5.
2007-01-03 Joe Shaw <joeshaw@novell.com>
* configure.in: Version 0.12.1
2007-01-03 Joe Shaw <joeshaw@novell.com>
* configure.in, evolution/Makefile.am: Add support for e-d-s
1.9.4.
2006-12-20 Joe Shaw <joeshaw@novell.com>
* configure.in: Add support for e-d-s 1.9.0 through 1.9.3, and
error out if we find any newer version. Improve the error text.
* evolution/Makefile.am: Use the 1.8 API for the 1.9 versions we
currently support, because our covered APIs haven't changed, but
put a big fat warning in there to check for future compatibility.
2006-12-20 Joe Shaw <joeshaw@novell.com>
Remove remaining references to the mail glue from the module.
* configure.in: Remove commented out checks for evolution.
* sources.xml: Don't scan the mail glue code for generating
managed bindings.
* evolution/ContactPhoto.custom: Remove this, it's been
replaced by evolution/src/ContactPhoto.cs.
* evolution/Evolution.metadata: Remove references to the
mail glue code.
* evolution/MailRemoteGlueMessageInfo.custom: Remove this
file.
* evolution/Makefile.am: Remove references to unused custom
files.
* evolution/evolution-api-1.8.raw: Regenerate this to remove
unused/broken mail glue APIs.
* glue/Makefile.am: Remove commented out build rules for mail
glue.
* glue/mail/*.[ch]: Removed.
2006-12-04 Andre Klapper <a9016009@gmx.de>
* MAINTAINERS: update from mike to veerapuram (also see bug #382290).
2006-11-20 Daniel Drake <dsd@gentoo.org>
* evolution/Makefile.am: mono packages are supposedly arch-independent,
install assembly into $(prefix)/lib rather than $(libdir)
2006-11-19 Daniel Drake <dsd@gentoo.org>
* evolution/evolution-1.8.api.raw,
glue/addressbook/e-contact-photo-glue.[ch], evolution/src/ContactPhoto.cs:
Import from evolution-sharp-0.12.0, these were not added to CVS.
* configure.in, evolution/evolution-api-1.[246], evolution/Makefile.am:
Remove support for e-d-s versions older than 1.8, we can not compile
against them as of 0.12.0
2006-11-17 Veerapuram Varadhan <vvaradhan@novell.com>
* evolution/Evolution.metadata: Hide ContactPhoto class from being
generated.
* evolution/src/ContactPhoto.cs: Hand stitched implementation.
* glue/addressbook/e-contact-photo-glue.[ch]: Glue APIs for the
hand-stitched ContactPhoto to work.
* glue/Makefile.am: Include the new files for build.
* evolution/Makefile.am: Include hand stitched ContactPhoto.cs for build.
* evolution/TestBook.cs: Test ContactPhoto implementation.
2006-10-21 Daniel Drake <dsd@gentoo.org>
* configure.in, evolution/Makefile.am, evolution/evolution-api-1.8.raw:
Commit my changes to enable e-d-s-1.8 support. This DOES NOT WORK yet,
due to http://bugzilla.ximian.com/show_bug.cgi?id=79623
2006-05-16 Daniel Drake <dsd@gentoo.org>
* configure.in, evolution/Makefile.am: Add support for the development
version of evolution (v1.8). There are no API changes yet. Patch from
Daniel Gryniewicz.
2006-04-29 Joe Shaw <joeshaw@novell.com>
* configure.in: Version 0.11.1
2006-04-27 Daniel Drake <dsd@gentoo.org>
* configure.in: Fix evaluation of EVO_SHELL_LIBDIR for older evolutions
2006-04-26 Joe Shaw <joeshaw@novell.com>
* Add a patch from Daniel Drake, based on one from Veerapuram
Varadhan, to support the e-d-s 1.6 API.
* configure.in: Version 0.11.0
2006-03-04 Daniel Drake <dsd@gentoo.org>
* evolution/src/GlibUtil.cs: Use libglibsharpglue-2 rather than
libglibsharpglue, libglibsharpglue is only provided by GTK# 1.x. Bug found
by Fabio Bonfante at http://bugs.gentoo.org/124581
2005-12-06 Joe Shaw <joeshaw@novell.com>
* configure.in: Get the privlibdir from the evolution-shell-2.4
pkg-config file, and add it to our own pkg-config file, so clients
can know what to add to their LD_LIBRARY_PATH.
2005-09-12 Joe Shaw <joeshaw@novell.com>
* configure.in: 0.10.2
* evolution/src/GLibUtil.cs: Make the DllImport reference to the
glib library explicit so that you don't need devel packages to
work correctly.
2005-09-08 Joe Shaw <joeshaw@novell.com>
* configure.in: 0.10.1
* evolution/Makefile.am: Always include both raw API files in
the tarball
2005-08-30 Joe Shaw <joeshaw@novell.com>
* configure.in: Problematic ABI breakage happened in 1.3.5, so
accept that as the minimum for the 1.3.x API.
2005-08-30 Joe Shaw <joeshaw@novell.com>
* configure.in: Bump versionn to 0.10. Add checks for both 1.3.7
and 1.2.x, so that we can deal with API/ABI changes.
* evolution/Makefile.am: Use the 1.2 or HEAD API XML description
depending on the results of configure.
* evolution/evolution-api-1.2.raw: Added. The EDS 1.2 API
description.
* evolution/evolution-api.raw: Updated to the EDS HEAD API
description.
2005-08-19 Joe Shaw <joeshaw@novell.com>
* configure.in: Bump version to 0.9.1
* evolution/Evolution.metadata: Hide some methods which use the
unstubbed BookEListCallback to fix a compile problem on gtk-sharp
2.3.90
2005-08-18 Joe Shaw <joeshaw@novell.com>
* glue/cal/e-cal-glue.c (get_ecal_comp_properties): Check
for NULL return values for DTSTART and DTEND.
2005-08-18 Joe Shaw <joeshaw@novell.com>
* evolution/Makefile.am: Install evolution-api.xml into
gapi-2.0.
2005-08-17 Joe Shaw <joeshaw@novell.com>
* configure.in: Bump version to 0.9; require gtk-sharp 2.x.
* sources.xml: Fix a namespace issue for libebook.
* evolution/CalView.custom: Remove all the ObjectsAdded code that
was cut and pasted in here.
* evolution/Evolution.metadata: Workaround an issue where
objects_added was being marked as a virtual method and not a
signal. Hide the objects_added virtual_method entry and add an
objects_added signal block.
* evolution/Makefile.am: Don't build src/ObjectsAddedHandler.cs
anymore.
* evolution/evolution-api.raw: Regenerate this with the gtk-sharp
2.x parser.
* evolution/src/ObjectsAddedHandler.cs: Removed.
2005-08-11 Joe Shaw <joeshaw@novell.com>
* Tag version 0.8
* configure.in: Bump mono requirement up to 1.0.0. Bump gtk-sharp
requirement up to 1.0. Require either evolution-shell 2.4 or 2.2.
* glue/Makefile.am: Don't use -Werror by default. Add some other
warnings
2005-08-11 Veerapuram Varadhan <vvaradhan@novell.com>
* glue/cal/e-cal-glue.c:
* glue/cal/e-cal-glue-recur.c:
* glue/cal/e-cal-glue-recur-util.c:
* glue/mail/e-mail-remote-*.[c,h]: Fix for compiler warnings.
(Special thanks goes to Joe Shaw for pointing it all).
* glue/Makefile.am: Treat warnings as errors.
* evolution/Makefile.am: Add TestCal.cs and TestBook.cs to
EXTRA_DIST.
* glue/mail/e-mail-remote-glue-utils.[c,h]: Newly added contains
utility functions.
2005-08-10 Veerapuram Varadhan <vvaradhan@novell.com>
* Reverting back the commit for CalGlueComponentUtil.cs, which
went it piggy backing the MailRemoteGlueMessageInfo.custom file.
2005-08-10 Veerapuram Varadhan <vvaradhan@novell.com>
* evolution/Evolution.Metadata: Change PeekFoo() methods and
override them to be GetFoo() methods.
* evolution/MailRemoteGlueMessageInfo.custom: Handstitch
GetUserFlags() and GetUserTag() methods.
* evolution/TestCal.cs: Use Dtstamp and Created properties.
* Makefile.am: Add marshal.mk to EXTRA_DIST.
2005-08-10 Veerapuram Varadhan <vvaradhan@novell.com>
* glue/cal/e-cal-glue.c (get_ecal_comp_properties): Memory leak fix.
e_cal_component_get_dtstamp() expects an allocated icaltimetype struct.
2005-08-10 Veerapuram Varadhan <vvaradhan@novell.com>
* glue/cal/e-cal-glue-comp.[c,h]: Store DTSTAMP and CREATED fields.
* glue/cal/e-cal-glue.c (get_ecal_comp_properties): Fetch values
for DTSTAMP and CREATED properties and update the glue component
accordingly.
* evolution/src/CalGlueComponentUtil.cs: Added GetDtstamp and
GetCreated methods.
(GetDtstart) (GetDtend) (GetLastModified) (GetCreated): Return
DateTime.MinValue if the return value from the native call is 0.
* evolution/src/CalComponent.cs: Added Dtstamp and Created
properties.
* evolution/src/CalUtil.cs (GLibSListToCalCompArray): Update
Dtstamp and Created properties when creating CalComponent objects.
* evolution/evolution-api.raw: Regenerate this.
* evolution/TestCal.cs (OnItemsAdded): Added comments on how to
use the combination of LastModified, Dtstamp and Created fields
to avoid indexing the unmodified-already-indexed events.
2005-08-10 Veerapuram Varadhan <vvaradhan@novell.com>
* glue/mail/e-mail-remote-glue.[c,h]: Removed
e_mail_remote_glue_get_folders_for_store().
(e_mail_remote_glue_peek_session_listener)
(e_mail_remote_glue_peek_store_listener)
(e_mail_remote_glue_peek_folder_listener): Return respective
pointers.
* glue/mail/e-mail-remote-glue-storeinfo.[c,h]
(e_mail_remote_glue_get_folders): Use the stored reference of the
top-level EMailRemoteGlue* to peek the corresponding
folder-listener to pass to the underlying plugin interface call.
2005-08-10 Veerapuram Varadhan <vvaradhan@novell.com>
* glue/mail/e-mail-remote-glue.h: A typo fix.
* sources.xml: Change namespace back to "E".
* evolution/evolution-api.raw: Regenerate this.
2005-08-10 Veerapuram Varadhan <vvaradhan@novell.com>
* glue/mail/e-mail-remote-glue-folderinfo.[c,h]: A typo fix.
2005-08-10 Veerapuram Varadhan <vvaradhan@novell.com>
* glue/mail/e-mail-remote-glue.c (e_mail_remote_glue_get_folders):
Renamed as (e_mail_remote_get_folders_from_store) and calls
e_mail_remote_glue_storeinfo_get_folders to get folders list.
(e_mail_remote_glue_get_messages) is moved to
e-mail-remote-glue-folderinfo.c.
* glue/mail/e-mail-remote-glue-folderinfo.[c,h]:
(e_mail_remote_glue_folderinfo_get_messages)
(e_mail_remote_glue_folderinfo_get_message): New APIs to return
list of messageinfos and messagestream pertaining to a particular
message-uid.
* glue/mail/e-mail-remote-glue-storeinfo.[c,h]:
(e_mail_remote_glue_storeinfo_get_folders): Returns a list of
folderinfo objects.
2005-08-10 Veerapuram Varadhan <vvaradhan@novell.com>
* glue/mail/e-mail-remote-glue-msgstream.[c,h]: Wrapper for
Evolution_Mail_MessageStream Bonobo interface.
* glue/Makefile.am: Ditto
2005-08-10 Veerapuram Varadhan <vvaradhan@novell.com>
* glue/mail/e-mail-remote-glue.c (e_mail_remote_glue_getMessages):
Changed to e_mail_remote_glue_messages and will return a
EMailRemoteGlueMsgIterator and not a GSList.
* glue/mail/e-mail-remote-msgiter.[c,h]: Wrapper for
Evolution_Mail_MessageIterator Bonobo interface.
2005-08-09 Joe Shaw <joeshaw@novell.com>
* evolution/Source.custom: Allow a few other URI schemes as local,
but deal with strings rather than Uris because System.Uri sucks.
2005-08-10 Veerapuram Varadhan <vvaradhan@novell.com>
* glue/mail/e-mail-remote-glue-storeinfo.h
(e_mail_remote_glue_storeinfo_peek_store): replace store with
EMStore.
* glue/mail/e-mail-remote-glue-folderinfo.h,
glue/mail/e-mail-remote-glue-sessionchange.h,
glue/mail/e-mail-remote-glue-folderchange.h,
glue/mail/e-mail-remote-glue-storeinfo.h: Include the generated
header from IDL.
2005-08-10 Veerapuram Varadhan <vvaradhan@novell.com>
* glue/mail/Evolution-DataServer-Mail.idl: Oops, I forgot to cvs add
this file.
2005-08-10 Veerapuram Varadhan <vvaradhan@novell.com>
* glue/mail/Evolution-DataServer-Mail.idl: The Bonobo idl provided
by the mail-remote plugin. We must update this file whenever the
original one gets updated.
* glue/mail/Makefile.am: Use our local IDL file to generate the stubs/skels.
Add the IDL file, marshall.list etc to EXTRA_DIST.
* marshall.mk: Tweak a little bit to work for our source tree structure.
Fixes my previous broken-commit.
2005-08-09 Veerapuram Varadhan <vvaradhan@novell.com>
* glue/mail/e-mail-remote-glue.[c,h]: Glue code that talks
to the evolution-mail-remote plugin and wraps CORBA_objects
to an intermediate object type that can be wrapped in C#. Also,
the code processes the signals from the plugin and emits signals
that are split-up according to the original change types.
* glue/mail/evolution-mail-sessionlistener.[c,h]: Provides a
wrapped "session listener" implementation over the Bonobo interface
provided by the plugin idl.
* glue/mail/evolution-mail-storelistener.[c,h]: Provides a
wrapped "store listener" implementation over the Bonobo interface
provided by the plugin idl.
* glue/mail/evolution-mail-folderlistener.[c,h]: Provides a
wrapped "folder listener" implementation over the Bonobo interface
provided by the plugin idl.
* glue/mail/e-mail-remote-glue-sessionchange.[c,h]: Wraps the
underlying SessionChange Bonobo interface.
* glue/mail/e-mail-remote-glue-storechange.[c,h]: Wraps the
underlying StoreChange Bonobo interface.
* glue/mail/e-mail-remote-glue-folderchange.[c,h]: Wraps the
underlying FolderChange Bonobo interface.
* glue/mail/e-mail-remote-glue-storeinfo.[c,h]: Wraps the
underlying StoreInfo CORBA object.
* glue/mail/e-mail-remote-glue-folderinfo.[c,h]: Wraps the
underlying FolderInfo CORBA object.
* glue/mail/e-mail-remote-glue-messageinfo.[c,h]: Wraps the
underlying MessageInfo CORBA object.
* glue/mail/e-mail-remote-glue-marshal.list: Input file for
glib-genmarshaller.
* glue/Makefile.am: Changed for mail-remote-glue code.
* marshall.mk: Marshaller rule file.
* configure.in: Ditto.
2005-08-05 Joe Shaw <joeshaw@novell.com>
* evolution/Contact.custom: Add a Rev property.
2005-08-04 Joe Shaw <joeshaw@novell.com>
* sources.xml: Add e-cal-types.h to the sources list.
* evolution/evolution-api.raw: Regenerate this.
* glue/cal/e-cal-glue.c (get_ecal_comp_properties): Check to see
if tt is NULL before we dereference it. Fixes a crash for
calendar items which don't have last-modified.
2005-08-04 Veerapuram Varadhan <vvaradhan@novell.com>
* glue/cal/e-cal-glue-comp.[c,h]: Last-modified-date changes.
* glue/cal/e-cal-glue.c: Ditto.
* evolution/src/CalComponent.cs: Ditto.
* evolution/src/CalGlueComponentUtil.cs: Ditto.
* evolution/src/CalUtil.cs: Ditto.
2005-08-03 Joe Shaw <joeshaw@novell.com>
* evolution/Makefile.am: Build the assembly with -debug
* evolution/Book.custom, evolution/Cal.custom: Ensure that the
arrays returned are always non-null.
2005-08-03 Veerapuram Varadhan <vvaradhan@novell.com>
* glue/cal/e-cal-glue.c: Use the clone of the icalcomponent.
Fixes a crash. (sort of reverting back my recent changes).
2005-08-02 Veerapuram Varadhan <vvaradhan@novell.com>
* evolution/Cal.custom (GetChanges): Change ref to out as we are
not using the values of those parameters inside the method.
* evolution/Book.custom (GetChanges): Ditto.
* evolution/Test[Cal,Book].cs: Ditto.
2005-08-02 Veerapuram Varadhan <vvaradhan@novell.com>
* evolution/Source.custom (IsLocal): Newly added.
To identify whether a source is local or remote.
* evolution/Makefile.am: Source.custom changes.
* evolution/TestCal.cs: Test the above added API.
2005-08-02 Veerapuram Varadhan <vvaradhan@novell.com>
* glue/addressbook/e-book-glue.c: (e_book_glue_ebook_get_changes):
A glue-wrapper for the e_book_get_changes () API in e-d-s.
* glue/Makefile.am: Included the new file for compilation.
* configure.in: Check for libebook libraries and set the CFLAGS
and LIBS accordingly.
* evolution/Book.custom (GetChanges): Customized GetChanges
wrapper to return new/updated/removed contacts list/id list.
* evolution/Evolution.metadata: Mark GetChanges API as hidden for
Book class.
* evolution/TestBook.cs: Updated to test GetChanges API.
* evolution/Cal.custom (GetChanges): Initialize the pointers.
* evolution/GLibUtil.cs: New file created from CalUtil.cs.
Contains all GLib based utility functions.
* evolution/CalUtil.cs: Moved GLib based utility functions to
GLibUtil.cs and derive CalUtil from GLibUtil.
* evolution/Makefile.am: Added GLibUtil.cs.
2005-08-01 Veerapuram Varadhan <vvaradhan@novell.com>
* glue/cal/e-cal-glue-recur.c (e_cal_recur_from_icalproperty): Set
the count field appropriately in the return value. Also,
corrected a type (ie.) by_minute was being updated twice.
* glue/cal/e-cal-glue-comp.h: Added field for handling
exception-rules in recursion and get/set functions.
* glue/cal/e-cal-glue-comp.c (e_cal_glue_component_get_uid)
(e_cal_glue_component_get_rid): Now returns strdup'd pointer that
the caller has to free it. (Work around for a probable mono bug).
(e_cal_glue_component_finalize): Typo.
* glue/cal/e-cal-glue.c (e_cal_glue_ecal_get_changes): A new API
to return the list of added/modified/deleted items since the last
call.
(e_cal_glue_free_glue_component_list): An API for a memory-leak fix.
(get_ecal_comp_properties): Handling for exception-rules.
* evolution/Cal.custom: Wrapper for e_cal_glue_ecal_get_changes API.
Some un-wanted code clean-ups.
* evolution/src/CalGlueComponentUtil.cs: All the calls to
GLibSListToStringArray() should pass a boolean second parameter
that should specify whether to free the source memory or not.
(GetUid), (GetRid): Work around for a probable mono bug.
(GetExceptionRules): New method to fetch exception-rules.
* evolution/src/CalUtil.cs (GLibSListToStringArray): Now take two
parameters.
(CalCompFromEcal), (CalCompFromICal): Frees the memory that was
allocated by the respective glue-code call.
(FreeGlueCompGLibSList): Wrapper for the underlying glue-API to
free the e_cal_glue_component list.
* evolution/src/CalComponent.cs (ExceptionRules): Get/set methods
for the exrules property.
* evolution/src/CalGlueRecurrenceUtil.cs (GetEnddate): Return
DateTime.MinValue, if return value is zero from the glue-code.
(GetFrequency): Returns FrequencyType enumerated value.
* evolution/src/CalRecurrence.cs: (FrequencyType), (WeekDayType):
New enumerations.
(ToString): An override that returns the recurrence data in a
user-friendly readable form.
* evolution/TestCal.cs: Clean-ups and updates w.r.t new APIs.
2005-07-28 Veerapuram Varadhan <vvaradhan@novell.com>
* glue/cal/e-cal-glue-recur.[ch],
glue/cal/e-cal-glue-recur-util.[ch]: Newly added for handling
recurrences in evolution calendars.
* glue/cal/e-cal-glue-comp.h: Added recurrence fields to
ECalGlueComponent object. Now we store a list of rrules in the
glue component.
* glue/cal/e-cal-glue-comp.c: Get/Set functions for "recurrence"
related fields.
* glue/cal/e-cal-glue.c: When a calendar item has
recurrences, parse through the recurrence rules and update the
rrules list.
* evolution/src/CalRecurrence.cs: Defines the CalRecurrence class
that represent the underlying "recurrence" structure in the glue
code.
* evolution/src/CalGlueRecurrenceUtil.cs: Wrapper class for the
underlying ECalGlueRecurrence structure.
* evolution/src/CalComponent.cs: A member called "rrules" and its
get/set properties methods are added.
* evolution/src/CalGlueComponentUtil.cs: Added recurrence-field
corresponding method wrappers for e-cal-glue-component.
* evolution/src/CalUtil.cs: (GLibSListToCalRecurrenceArray): Newly
added for recurrence support and other changes for the same.
* evolution/TestCal.cs: Ditto.
* All the required Makefile.am's are changed to reflect the newly
added source files.
2005-07-21 Joe Shaw <joeshaw@novell.com>
* evolution/evolution-api.raw: Regenerated this from sources, with
an e-d-s patch that allows signals on ESource, ESourceGroup, and
ESourceList to be detected.
2005-07-19 Joe Shaw <joeshaw@novell.com>
* evolution/Makefile.am: Build (but don't install) TestCal and
TestBook.
* evolution/Evolution.metadata: Rid the API of the ugly PeekFoo()
methods, and override them to be either GetFoo() methods or
properties instead.
* evolution/TestCal.cs, evolution/TestBook.cs: Update for the API
change.
* evolution/src/CalComponent.cs: Change the PeekSource() method to
be a Source property, to go with the new API.
2005-07-18 Joe Shaw <joeshaw@novell.com>
* configure.in: Bump version number to 0.8. Add the libecal .so
version number to the list of things being exported.
* evolution/Cal.custom: Add a GetItems() method to make the API
nicer.
* evolution/evolution-sharp.dll.config.in: dllmap libecal.
* evolution/src/CalComponent: Rename UID to Uid to be consistent
with C# naming conventions.
* evolution/src/CalGlueComponentUtil.cs: Ditto.
* evolution/src/CalUtil.cs: Ditto. Also add MinDate and MaxDate
properties which are the lowest and highest dates that ecal can
handle for range queries. In GetQueryStringForTimeRange() throw
an ArgumentOutOfRangeException if those bounds are exceeded.
* glue/Makefile.am: Install libevolutionglue in libdir, and set
LDFLAGS to reflect that we'll always only be p/invoking into it.
2005-06-15 Veerapuram Varadhan <vvaradhan@novell.com>
* evolution/Cal.custom, evolution/Evolution.Metadata:
Hand-implement GetQuery, GetItems, GetItemsForRange,
GetObjectsList and GetObjectListAsComp.
* evolution/glue/cal/e-cal-glue.c,
* evolution/glue/cal/e-cal-glue-comp.c:
* evolution/glue/cal/e-cal-glue-comp.h: Glue code that talks to
e-d-s and converts ical to ecal and ecal to an intermediate
e-cal-glue component.
* sources.xml: Added e-cal related files to parse.
* evolution/evolution-api.raw: APIs for e-cal.
* evolution/src/CalUtil.cs: Utility methods to convert from GSList to
string[] and etc.
* evolution/src/CalComponent.cs: A minimalistic representation of
an e-cal component.
* evolution/src/CalGlueComponent.cs: Wrapper for the glue-code.
* evolution/TestCal.cs: A test program to verify Cal bindings.
* configure.in: Added checks for the presence of libecal.
* All the related Makefile.am's are changed.
2005-07-08 Joe Shaw <joeshaw@novell.com>
* evolution/ContactPhoto.custom: Don't try to marshal from the
pointers by hand. We can't account for weird padding and such.
Just define our structure and let Marshal.PtrToStructure() do all
the heavy lifting for us. Fixes extracting photos on x86-64
machines.
2005-04-04 Joe Shaw <joeshaw@novell.com>
* evolution/Book.custom (GetContacts): If the query passed in is
null, throw a ArgumentNullException.
2005-03-15 Larry Ewing <lewing@novell.com>
* configure.in: make the e-d-s requirement 2.2.0 since that
appears to be what ships with evo 2.2
2005-02-15 Mike Kestner <mkestner@novell.com>
* configure.in : bump requirement to e-d-s 2.2.0.
2005-02-13 Mike Kestner <mkestner@novell.com>
* evolution/Evolution.metadata : add a couple renames for collisions.
* evolution/evolution-api.raw : reparse current API.
2005-02-11 Jon Trowbridge <trow@novell.com>
* evolution/Book.custom: In GetBookView, check to make sure
that requestedFields is not null.
2004-11-02 Christopher James Lahey <clahey@ximian.com>
* evolution/Makefile.am (install-data-local, uninstall-local):
Reverting to the state yesterday since that works when packaging.
Will use whatever mono-devel-list comes up with.
2004-11-02 Nat Friedman <nat@novell.com>
* evolution/Makefile.am (install-data-local): Do the whole
gacdir/root thing properly for gacutil.
2004-10-25 Mike Kestner <mkestner@ximian.com>
* configure.in: Add a test for EDS 1.2.
* evolution/evolution-sharp.dll.config.in: Select the 1.2
libraries if we're using EDS 1.2
2004-10-23 Nat Friedman <nat@novell.com>
* evolution/Contact.custom: Added a FullName thing accessor.
Add Get/SetStringArray. Add ImGroupwise.
2004-09-22 Dave Camp <dave@novell.com>
* evolution/Book.custom:
* evolution/Evolution.metadata: Hand-implement GetBookView
2004-06-22 Jon Trowbridge <trow@ximian.com>
* evolution/Makefile.am: Changed /root to /gacdir in
install-data-local and uninstall-local.
* evolution/ContactPhoto.custom: The arguments to Marshal.Copy in
the Data prop were in the wrong order, so the image data was not
getting copied to the result array.
2004-06-15 Mike Kestner <mkestner@ximian.com>
* evolution/Evolution.metadata : ContactPhoto fixes.
* evolution/ContactPhoto.custom : ditto.
2004-06-03 Mike Kestner <mkestner@ximian.com>
* evolution/Evolution.metadata : BookQuery.And/Or array
param marking and s/nqs/n_qs to hide the count param.
2004-06-02 Mike Kestner <mkestner@ximian.com>
* evolution/Evolution.metadata : fix the data field of
ContactPhoto.
* evolution/Makefile.am : add the new custom.
* evolution/ContactPhoto.custom : add Data prop to access
the _data pointer.
2004-06-01 Todd Berman <tberman@sevenl.net>
* evolution-sharp.pc.in: make work properly.
2004-06-01 Mike Kestner <mkestner@ximian.com>
* evolution/Contact.custom : add Photo prop and fix
the GValue handling in all the existing props.
2004-06-01 Mike Kestner <mkestner@ximian.com>
* Makefile.am : add pub to dist.
* configure.in : expand new in files. check for mono.
ACSUBST CSC, GACUTIL, LIB_PREFIX, and LIB_SUFFIX.
* sources.xml : merge ebook and edataserver into one api
file.
* evolution/AssemblyInfo.cs.in : version and signing info.
* evolution/Evolution.metadata : merged rules.
* evolution/Makefile.am : gac and more.
* evolution/Makefile.in : kill
* evolution/ebook-api.xml : kill
* evolution/edataserver-api.xml : kill
* evolution/ebook.metadata : kill
* evolution/edataserver.metadata : kill
* evolution/evolution-api.raw : new combined raw api file.
* evolution/evolution-sharp.dll.config.in : map libnames.
2004-05-27 Mike Kestner <mkestner@ximian.com>
* configure.in : req e-d-s >= 0.0.93
2004-05-27 Mike Kestner <mkestner@ximian.com>
* configure.in : gtk-sharp req beta1 and AC_SUBST the LIBS.
* evolution/Makefile.in : replace -pkg:
2004-05-27 Mike Kestner <mkestner@ximian.com>
* configure.in : bump gtk-sharp req
* evolution/Makefile.in : use -pkg:gtk-sharp
* evolution/*-api.xml : regen
2004-05-07 Todd Berman <tberman@sevenl.net>
* evolution/Contact.custom: Fixup to new GetProperty api
2004-03-25 Todd Berman <tberman@sevenl.net>
* evolution-sharp.pc.in: add a valid Libs: field
2004-02-19 Mike Kestner <mkestner@ximian.com>
* configure.in : tag 0.2 and bump VERSION for cvs.
2004-02-19 Mike Kestner <mkestner@ximian.com>
* evolution/ebook-api.xml : reparse
2004-02-04 Mike Kestner <mkestner@ximian.com>
* evolution/Contact.custom : add the IM multi-list props.
2004-01-16 Mike Kestner <mkestner@ximian.com>
* evolution/Book.custom : return Contact[] from GetContacts, not
GLib.List.
2004-01-16 Mike Kestner <mkestner@ximian.com>
* configure.in : tag 0.1 and bump VERSION for cvs.
2004-01-16 Mike Kestner <mkestner@ximian.com>
* configure.in : bump Gtk# req to 0.16.
* sources.xml : work for cvs co's of e-d-s and e-s in same dir.
* evolution/*-api.xml : regen
2003-11-19 Mike Kestner <mkestner@ximian.com>
* configure.in : bump Gtk# req to 0.15.
* sources.xml : add e-source* files to parse.
* evolution/edataserver-api.xml : new api file
* evolution/edataserver.metadata : new metadata.
* evolution/Makefile.in : gen source for libedataserver.
2003-11-11 Mike Kestner <mkestner@ximian.com>
* configure : kill it, oops
2003-11-11 Mike Kestner <mkestner@ximian.com>
* initial import
|