aboutsummaryrefslogtreecommitdiffstats
path: root/wombat
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-08-09 18:16:52 +0800
committerChris Lahey <clahey@src.gnome.org>2001-08-09 18:16:52 +0800
commitb2a270aa108a4ea3314621527c24531b54ec1b9f (patch)
treebc3661dd0915eeb8eb618ed33c49cdd478549367 /wombat
parentb56288e98688345222009d0c089afa1d590af6d9 (diff)
downloadgsoc2013-evolution-b2a270aa108a4ea3314621527c24531b54ec1b9f.tar.gz
gsoc2013-evolution-b2a270aa108a4ea3314621527c24531b54ec1b9f.tar.zst
gsoc2013-evolution-b2a270aa108a4ea3314621527c24531b54ec1b9f.zip
Added a "header" argument to these structures which just gets passed
2001-08-09 Christopher James Lahey <clahey@ximian.com> * e-table-field-chooser-dialog.c, e-table-field-chooser-dialog.h, e-table-field-chooser.c, e-table-field-chooser.h: Added a "header" argument to these structures which just gets passed downwards. * e-table-field-chooser-item.c, e-table-field-chooser-item.h: Added a "header" argument here. Made it so that only rows that aren't already in the header are shown. * e-table-header-item.c: Set the "header" argument on our e-table-field-chooser-dialog. Fixes Ximian bug #2654. svn path=/trunk/; revision=11828
Diffstat (limited to 'wombat')
0 files changed, 0 insertions, 0 deletions
a> 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 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581
2002-03-14  JP Rosevear  <jpr@ximian.com>

    * evolution-tasks.xml: remove duplicate new items in the file
    and action menus

2002-03-14  JP Rosevear  <jpr@ximian.com>
    
    * evolution-calendar.xml: remove duplicate new items in the file
    and action menus

2002-03-13  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-tasks.xml: Remove the "Tasks Settings..." menu item.

    * evolution-calendar.xml: Remove the "Calendar Settings..." menu
    item.

    * evolution-addressbook.xml: Remove the "LDAP Sources..." menu
    item.

2002-03-12  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: Add an entry to invoke the new unified config
    dialog.

2002-03-11  Anna Marie Dirks  <anna@ximian.com>

    * evolution-mail-message.xml: doh. In my previous commit, a whole
    bunch of changes that were supposed to be kept in my personal evo
    were added to HEAD. (Mainly, this was the addition of a "Search"
    menu.) I am reverting the wrong parts of that patch, and am
    committing only the accelerators which that patch was supposed to
    add. Sorry.

2002-03-08  Radek Doulik  <rodo@ximian.com>

    * evolution-signature-editor.xml: added FormatHTML

2002-03-07  Anna Marie Dirks  <anna@ximian.com>

    * evolution-mail-message.xml: Fixed tiny typo ("Addressbook", not
    "Address book"), and cleaned up accelerators more, so that all of
    them actually work. Also added accelerators to items in the Go To
    menu and the Forward menu as part of fixing bug #10666.

2002-03-07  Radek Doulik  <rodo@ximian.com>

    * evolution-signature-editor.xml: added save & close on toolbar,
    added C-s shortcut

2002-03-04  Damon Chaplin  <damon@ximian.com>

    * evolution-tasks.xml: added Print & PrintPreview stuff.

2002-02-21  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: Add NewComboButton and a separator.

    * evolution-calendar.xml: remove CalendarNewAppointment and
    CalendarNewTask from the toolbar.

    * evolution-tasks.xml: Remove TasksNewTask button from the
    toolbar.

    * evolution-addressbook.xml: Remove ContactNew and ContactNewList
    from the toolbar.

    * evolution-mail-global.xml: Remove the MessageNew from the
    toolbar.

2002-02-13  Christopher James Lahey  <clahey@ximian.com>

    * evolution-addressbook.xml: Added Copy to Folder and Move to
    Folder in the Actions menu here.

2002-02-12  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-mail-message.xml: Added pixbufs to MarkAsImportant,
    MarkAsRead and MarkAsUnread. Also added MessageFollowUpFlag verb.

2002-02-07  JP Rosevear  <jpr@ximian.com>

    * evolution-calendar.xml: add new meeting item to Actions and
    File->New

2002-02-05  Anna Marie Dirks  <anna@ximian.com>

    * evolution-mail-message.xml: Changed "Forward As" to "Forward" to
    improve grammar ("Forward As" implies an answer in the form of a
    noun, while "Redirect" is a verb), and added accelerators to "Add
    Sender to Addressbook" and "Redirect".

2002-01-28  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-mail-message.xml: Add MessageRedirect.

2002-01-18  Christopher James Lahey  <clahey@ximian.com>

    * evolution-addressbook.xml: Added File->Open which calls the
    ContactsView command.

2002-01-16  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: Remove "Dump" menu item.

2002-01-15  Michael Meeks  <michael@ximian.com>
 
    * *.xml: for all separators, add a unique (per xml file) name
    to each separator, so we don't get them conflicting across
    merges and messing with the order; then give them a dummy attr
    f="" to stop them being transparent, hmm.
 
2002-01-03  JP Rosevear  <jpr@ximian.com>

    * evolution-tasks.xml: add a mark as complete item
    
2002-01-03  JP Rosevear  <jpr@ximian.com>

    * evolution-tasks.xml: make spacing consistent with calendar xml
    file, add expunge command and actions menu and add accelerator for
    delete

    * evolution-calendar.xml: add an accelerator for delete and put in
    a separator to be consistent with the mailer

2001-12-03  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-mail-message.xml: Add an "Add Sender to Address Book"
    menu item.

2001-11-28  Christopher James Lahey  <clahey@ximian.com>

    * evolution-contact-list-editor.xml: Consistency fixes with
    standard contact editor.  Added Save As, Send As, and Send To.
    Replaced Save toolbar with Save and Close and added Save and Close
    menu item.  Added a trash icon.

2001-10-30  Federico Mena Quintero  <federico@ximian.com>

    * evolution-calendar.xml: Renamed the cut/copy/paste/delete
    command/item/verb names to be consistent.

2001-10-30  Larry Ewing  <lewing@ximian.com>

    * evolution-signature-editor.xml: change Save into Save and close,
    don't break the string freeze in the process.

2001-10-29  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-message-composer.xml: Added an EncodingPlaceholder,
    shuffled around the items for the Edit menu a little bit.  Removed
    "Delete All" which is too dangerous a command [especially without
    confirmation as it is implemented now].

2001-10-29  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-message-composer.xml: Remove separator from the end of
    the "View" menu.

2001-10-27  Jon Trowbridge  <trow@ximian.com>

    * evolution-contact-list-editor.xml: Comment out the "Action"
    submenu, which isn't hooked up to anything in the code and thus
    does nothing.

2001-10-25  Larry Ewing  <lewing@ximian.com>

    * evolution-mail-message.xml: add separator before text size menu

2001-10-24  Christopher James Lahey  <clahey@ximian.com>

    * evolution-addressbook.xml: Added Delete and BackSpace
    keybindings here.  Fixes Ximian bug #2772.

2001-10-22  Anna Marie Dirks  <anna@ximian.com>

    * evolution-message-composer.xml: Added an accelerator (H_TML) to
    the Format->Html menu item.

2001-10-20  Larry Ewing  <lewing@ximian.com>

    * evolution-mail-message.xml: add text size menu.

2001-10-01  Radek Doulik  <rodo@ximian.com>

    * evolution-message-composer.xml: removed hidden Debug submenu,
    it was causing empty little popup menu appear, which was somewhat
    confusing, I hope Michael doesn't need it anymore

    * evolution-signature-editor.xml: removed hidden Debug submenu

2001-09-28  Iain Holmes  <iain@ximian.com>

    * evolution.xml: Change the name of the Import label.

2001-09-27  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: Move the Tools menu outside the
    ComponentToolsPlaceholder.
    * evolution-addressbook.xml: Likewise.
    * evolution-calendar.xml: Likewise.
    * evolution-mail-global.xml: Likewise.
    * evolution-mail-message.xml: Likewise.
    * evolution-mail-messagedisplay.xml: Likewise.
    * evolution-tasks.xml: Likewise.
    * my-evolution.xml: Likewise.

2001-09-06  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: Don't allow the default toolbar to be
    configurable.

2001-09-06  Anna Marie Dirks  <anna@ximian.com> 

    * evolution-contact-editor.xml: Changed "Save" to "Save and Close"
    
2001-09-05  Ettore Perazzoli  <ettore@ximian.com>

    [Fix #5503, Edit menu is empty and should be removed.]

    * evolution-addressbook.xml: Put the Edit menu in the
    EditPlaceholder.
    * evolution-calendar.xml: Likewise.
    * evolution-mail-list.xml: Likewise.
    * evolution-mail-global.xml: Likewise.
    * evolution-mail-message.xml: Likewise.
    * evolution-mail-messagedisplay.xml: Likewise.
    * evolution-tasks.xml: Likewise.

    * evolution.xml: Don't put an Edit menu here.  Instead, put a
    EditPlaceholder instead.

2001-09-05  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: s/Evolution/Ximian Evolution/.

2001-09-04  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-mail-message.xml: Change "Copy to Folder" to be
    Ctrl-Shift-Y so we are more like O* and don't get in the way of
    the Ctrl-Shift-C for "New Contact".

2001-09-04  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-mail-global.xml: Add an F9 accelerator for the
    "Send/Receive" item.

2001-09-04  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-mail-message.xml: Add an accel for Search Message.

2001-08-29  Peter Williams  <peterw@ximian.com>

    * evolution-mail-message.xml: Add a pixtype to 
    /Commands/MessageUndelete so that people can see the icon.

2001-08-23  Larry Ewing  <lewing@ximian.com>

    * evolution-mail-message.xml: added ... to Search Message to
    indicate that it pops up a dialog.

2001-08-21  Damon Chaplin  <damon@ximian.com>

    * evolution-calendar.xml: 'All-Day' -> 'All Day' to be consistent
    everywhere.
    Added tip for 'New Task'.
    
2001-08-20  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-mail-list.xml: Move the ChangeFolderProperties into
    the ComponentPlaceholder.  Add a separator on the top.

    * evolution.xml: Remove the separator above the component
    placeholder here.

2001-08-20  JP Rosevear  <jpr@ximian.com>

    * evolution-comp-editor.xml: control-return for save and close
    
2001-08-20  JP Rosevear  <jpr@ximian.com>

    * evolution-comp-editor.xml: remove print preview from toolbar

2001-08-20  JP Rosevear  <jpr@ximian.com>

    * evolution-comp-editor.xml: remove print setup option for
    consistency

2001-08-20  Damon Chaplin  <damon@ximian.com>

    * evolution-mail-message.xml: set MessageDelete pixtype to pixbuf.

    * evolution-contact-editor.xml: use bigger Save icon for toolbar.
    set Delete pixtype to pixbuf.

    * evolution-comp-editor.xml: used Delete icon for menu.

    * evolution-tasks.xml: changed 'Tasks Settings' to 'Tasks Settings...'.

2001-08-20  Damon Chaplin  <damon@ximian.com>

    * evolution-calendar.xml: changed Goto icon to pixbuf.

2001-08-20  Damon Chaplin  <damon@ximian.com>

    * evolution-addressbook.xml: use new Delete icon for menu.

2001-08-20  Damon Chaplin  <damon@ximian.com>

    * evolution-calendar.xml: added Delete command to menu and toolbar.

2001-08-20  Damon Chaplin  <damon@ximian.com>

    * evolution-tasks.xml: added Cut/Copy/Paste items to toolbar, though
    I'm not sure they are very useful.

2001-08-20  Damon Chaplin  <damon@ximian.com>

    * evolution-tasks.xml: use new delete icons in menu & toolbar.

2001-08-20  Damon Chaplin  <damon@ximian.com>

    * evolution-mail-list.xml: use Cut/Copy/Paste icons.

2001-08-20  Damon Chaplin  <damon@ximian.com>

    * evolution-comp-editor.xml: don't use old stock icon for the menu,
    to be consistent with other components. Use new delete icon for
    toolbar.

2001-08-19  Damon Chaplin  <damon@ximian.com>

    * evolution-addressbook.xml: use new Cut/Copy/Paste/Save/Search icons.

2001-08-19  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-mail-list.xml: Added Cut/Copy/Paste underline
    thingies.

2001-08-18  Damon Chaplin  <damon@ximian.com>

    * evolution-tasks.xml: used the new Cut/Copy/Paste icons.
    Removed the Save As/Print/Print Preview commands as they do nothing.

    * evolution-comp-editor.xml: used the new Save/Save As icons.

    * evolution-calendar.xml: used the new Cut/Copy/Paste icons.

2001-08-18  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-addressbook.xml: Set the pixtype for
    "ContactEditorDelete" to "pixbuf".
    * evolution-contact-editor.xml: Likewise.
    * evolution-contact-list-editor.xml: Likewise.

2001-08-18  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: Remove "Control-W" accelerator for closing the
    window.

2001-08-18  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-mail-message.xml: Change pixtype of "MessageDelete" to
    "pixbuf".

2001-08-18  Damon Chaplin  <damon@ximian.com>

    * evolution-calendar.xml: changed goto icon from stock icon to pixbuf
    for the toolbar. Note that the menu still uses the stock icon. Yuck!
    Added 'New Task' command to toolbar and menus.

2001-08-17  Damon Chaplin  <damon@ximian.com>

    * evolution-addressbook.xml: changed print icon types to pixbuf.

2001-08-17  Damon Chaplin  <damon@ximian.com>

    * evolution-addressbook.xml: changed 'Search for Contacts'.

2001-08-17  Damon Chaplin  <damon@ximian.com>

    * evolution-contact-editor.xml: changed 'Send contact to other'
    to 'Forward Contact' and capitalized 'Send message to Contact' to
    be consistent with address book.

    * evolution-addressbook.xml: added '...' to 'Forward Contact' and
    'Send Message to Contact' to be consistent with contact editor.

2001-08-17  Anna Marie Dirks  <anna@ximian.com>

    * evolution-mail-global.xml : Changed the order of the toolbar icons
    (moved "New Message" (formerly "Compose") to be the left-most item).

    * evolution-addressbook.xml: Changed Send Contact to Other to Forward
    Contact.


2001-08-16  Anna Marie Dirks  <anna@ximian.com> 

    * evolution.xml : Changed "Import file..." to "Import File..."
    * evolution-addressbook.xml : Fixed a few lack of capitalization 
    issues.

2001-08-16  Peter Williams  <peterw@ximian.com>

    * evolution-mail-message.xml: Stop search message from conflicting
    with expunge.

2001-08-16  JP Rosevear  <jpr@ximian.com>

    * evolution-comp-editor.xml: add save menu item

    * evolution-task-editor.xml: rename menu item to Assign Task and
    tidy

    
2001-08-16  Anna Marie Dirks  <anna@ximian.com>

    * evolution-mail-message.xml : removed the Print Setup menu
    item, and changed Print Message to Print for consistency's sake.

2001-08-16  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: Add a "BuiltMenuItems" placeholder in the "Help"
    menu so we can do the fancy Bonobo help stuff.

2001-08-15  Anna Marie Dirks  <anna@ximian.com> 

    *evolution-calendar.xml : Changed "print calendar" to "print".
 

2001-08-15  Iain Holmes  <iain@ximian.com>

    * my-evolution.xml: s/My Evolution/Summary/

2001-08-14  Federico Mena Quintero  <federico@ximian.com>

    * evolution-calendar.xml: Add Tigert's new icons for Prev and Next.


2001-08-14  Christopher James Lahey  <clahey@ximian.com>

    * evolution-addressbook.xml: Rearranged this Edit menu to fit the
    standards.

2001-08-14  Christopher James Lahey  <clahey@ximian.com>

    * evolution-contact-editor.xml, evolution-contact-list-editor.xml:
    Added accelerators here.

2001-08-13  Anna Marie Dirks  <anna@ximian.com>

    * evolution-calendar.xml: removed the redundant view-switching
    menu items from the bottom of the view menu. 

2001-08-13  Iain Holmes  <iain@ximian.com>

    * my-evolution.xml: Add the reload button and fix the print button.

2001-08-13 Anna Marie Dirks  <anna@ximian.com>

    * evolution-calendar.xml : applied Neil Conway's 
    <nconway@klamath.dyndns.org> menu-improvement patch.

    * evolution-tasks.xml : same as above.

2001-08-13  Iain Holmes  <iain@ximian.com>

    * my-evolution.xml: Set the label for Print to be shown on priority.

2001-08-13  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-mail-global.xml: Remove a separator after the
    "Subscribe to Folders" item.

2001-08-13  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-calendar.xml: Add labels for the ShowDayView,
    ShowWorkWeekView, ShowWeekView, ShowMonthView buttons.

2001-08-13  Anna Marie Dirks  <anna@ximian.com>

    * evolution-calendar.xml: Changed the tooltips for several toolbar
    icons to make all tooltips consistent (in terms of capitalization
    and language). Also changed "Go to the present time" to "Go to
    today".

2001-08-12  Kjartan Maraas  <kmaraas@gnome.org>

    [Fix #7069, New - Missing name for "Tools" menu.]
    
    * my-evolution.xml: Put the Tools menu in the
    ComponentToolsPlaceholder.
    
2001-08-11  Jason Leach  <jleach@ximian.com>

    * evolution-mail-message.xml: Make the label for the resending
    menu item read "Edit as New Message...", bug #6838.

2001-08-11  Ettore Perazzoli  <ettore@ximian.com>

    [Fix #7608, New - Phantom menu entry in Tasks.]

    * evolution-tasks.xml: Put the Tools menu in the
    ComponentToolsPlaceholder.

2001-08-10  Jason Leach  <jleach@ximian.com>

    * evolution-addressbook.xml: End a placeholder block with
    </placeholder> instead of <placeholder/>

2001-08-09  Peter Williams  <peterw@ximian.com>

    * evolution-mail-global.xml: Give the (pre)view pane toggle
    an accelerator of 'q', like we were implementing the hard
    manual way before.

2001-08-09  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: Remove all the "New ... FIXME" items.

2001-08-09  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-addressbook.xml: Put the "Tools" and "Actions" menus
    in the "ComponentToolsPlaceholder" and
    "ComponentActionsPlaceholder", respectively.
    * evolution-calendar.xml: Likewise.
    * evolution-contact-editor.xml: Likewise.
    * evolution-mail-global.xml: Likewise.
    * evolution-mail-message.xml: Likewise.

    * evolution.xml: Remove "Tools" and "Actions" menus.  Create a
    "ComponentActionsPlaceholder" and a "ComponentToolsPlaceholder"
    instead.
    * evolution-mail-messagedisplay.xml: Likewise, put "Tools" and
    "Actions" in placeholders.

2001-08-08  Anna Marie Dirks <anna@ximian.com>

    * evolution-mail-list.xml: Changed the "Show All" menu item
    to be "Show Hidden Messages". 

2001-08-08  Chris Toshok  <toshok@ximian.com>

    * evolution-contact-list-editor.xml: improvements, make it look
    more like the event editor.

    * evolution-contact-editor.xml: same.

    * evolution-addressbook.xml: Contact Group => Contact List.

2001-08-08  Nat Friedman  <nat@ximian.com>

    * evolution-contact-editor.xml: Removed Print Envelope since it's
    disabled for Evolution 1.0.

2001-08-07  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-mail-messagedisplay.xml: Remove "Customize toolbar"
    item.
    * evolution.xml: Here too.
    * evolution-message-composer.xml: Here too.

2001-08-03  Peter Williams  <peterw@ximian.com>

    * evolution-mail-global.xml: Rename "Manage Subscriptons" to
    "Subscribe to Folders" as per Aaron's suggestion. Hopefully a little
    more intuitive.

2001-08-02  Jason Leach  <jleach@ximian.com>

    * evolution-contact-editor.xml: Update the updated Save, Save As,
    and Print icons for menus and the toolbar.  Also added a Close
    button to the toolbar and some other fixes suggested in #5518.

2001-08-02  Christopher James Lahey  <clahey@ximian.com>

    * evolution-addressbook.xml: Added ContactsSaveAsVCard,
    ContactsSendContactToOther, and ContactsSendMessageToContact menu
    items.  Fixes Ximian bug #5708.

2001-08-01  Jason Leach  <jleach@ximian.com>

    * evolution-mail-message.xml: Use Jakub's new Find icon for
    Edit/Search Message menu item.

    * evolution-message-composer.xml: And the new Save and Save As
    icons for the composer.

2001-07-31  Peter Williams  <peterw@ximian.com>

    * evolution-message-composer.xml: Add "Customize Toolbars" menu item
    and command.

2001-07-31  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-mail-message.xml: Added Next/Previous menu items under
    Actions/GoTo.

2001-07-31  Federico Mena Quintero  <federico@ximian.com>

    * evolution-tasks.xml: Add a pixmap to the Tasks Settings option
    to make it consistent with the one in the calendar folder.

2001-07-31  Jason Leach  <jleach@ximian.com>

    * evolution-message-composer.xml: Use the new Send and Send Later
    icons from Jakub and Tuomas.

2001-07-29  Damon Chaplin  <damon@ximian.com>

    * evolution-tasks.xml: use the new print icons.

2001-07-30  Jason Leach  <jleach@ximian.com>

    * evolution-mail-message.xml: Correct the tooltip for the Print
    button.  Bug #5801.

2001-07-27  Damon Chaplin  <damon@ximian.com>

    * evolution-tasks.xml: renamed "Tasks Preferences" to "Tasks Settings"
    to be consistent with the other components.

2001-07-27  Damon Chaplin  <damon@ximian.com>

    * evolution-comp-editor.xml: removed Edit & Help menus. Fixes #5500.

2001-07-26  Federico Mena Quintero  <federico@ximian.com>

    * evolution-calendar.xml: Consistency fixes, and reindented the
    goddamn thing.

2001-07-27  Jason Leach  <jleach@ximian.com>

    * evolution-addressbook.xml: Removed the unused "Settings"
    submenu, because it creates an extra blank menu after the Help
    submenu.  Bug #4275.

2001-07-25  Damon Chaplin  <damon@ximian.com>

    * evolution-calendar.xml: changed "Settings" to "Calendar Settings".
    Fixes bug #5498.

2001-07-24  Peter Williams  <peterw@ximian.com>

    * evolution-message-composer.xml: Move Insert File from the File
    menu into the Insert Menu. Change the accelerators to reflect
    what's being inserted and add ellipses.

    * evolution-mail-global.xml: Add "Compose New Message" to the
    Actions menu as suggested in bug #866. Also fix it so that the
    pixmaps for the Compose menu items are displayed.

2001-07-23  Jason Leach  <jleach@ximian.com>

    * evolution-mail-message.xml: Add the "Mark as Unimportant" cmd
    and menu item to the Edit menu. Bug #5225.

2001-07-21  Jason Leach  <jleach@ximian.com>

    * evolution-mail-list.xml: Capitalize "messages" in "Hide Read
    messages" menu item label.  Bug #5091.

2001-07-20  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-mail-message.xml: Removed the "Redirect" menu since
    this is now a future feature.

2001-07-19  Damon Chaplin  <damon@ximian.com>

    * evolution-calendar.xml: 
    * evolution-comp-editor.xml: update to use new print icon.

2001-07-16  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-mail-message.xml: Add closing dots to the "Filter
    on..." items for consistency with the "VFolder on..." ones.

2001-07-10  Chris Toshok  <toshok@ximian.com>

    * evolution-contact-list-editor.xml: Remove Print commands and
    toolbar/menu items.  Also, use "list" instead of "group".

2001-07-09  Larry Ewing  <lewing@ximian.com>

    * evolution-message-composer.xml: remove FileSaveInFolder menu
    item. rename Insert->File to Insert->Attachment.

2001-07-05  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: Remove "ChangeFolderProperties" item.

    * evolution-mail-list.xml: Add the folder properties item back in;
    use the "ChangeFolderProperties" verb instead.

    * evolution.xml: Removed "Folder Properties" item from the "File"
    menu.

2001-07-04  Gediminas Paulauskas <menesis@delfi.lt>

    * evolution-mail-message.xml: MessageApplyFilters now has an icon.

2001-07-03  Jason Leach  <jleach@ximian.com>

    [Bug #3612: Accelerator for attach file in composer]

    * evolution-message-composer.xml: Ctrl-Alt-f for attaching files
    (seemed consistent with the other insert menu items)

    [Bug #809: Mark as important bindings]
        
    * evolution-mail-message.xml: Added "Mark as Important" menu
    thingy.

2001-07-03  Iain Holmes  <iain@ximian.com>

    * Add the seperate pixbuf for the Print button

2001-07-02  JP Rosevear  <jpr@ximian.com>

    * evolution-calendar.xml: Add publish free/busy item

2001-07-02  Rodrigo Moya <rodrigo@ximian.com>

    * evolution-tasks.xml: make the 'Task Preferences' menu item appear
    as the first item in the 'Tools' menu

2001-07-02  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-message-composer.xml: Set it up to have an
    e-charset-picker bonobo-ui menu attached to the Edit menu.

2001-07-02  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: Rename "New -> Evolution bar shortcut" into "New
    -> Shortcut".

2001-07-01  Chris Toshok  <toshok@ximian.com>

    * evolution-subscribe.xml: add a separate dockitem for the search
    entry.

2001-07-01  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-message-composer.xml: Enable the label next to the
    "Attach" toolbar button, and get rid of the "Help" menu.

2001-07-01  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: Renamed "NewBarShortcut" verb into "NewShortcut".

2001-06-30  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-mail-message.xml: Change type of "MailPrevious" and
    "MailNext" buttons from "stock" to "pixbuf".

2001-06-29  Rodrigo Moya <rodrigo@ximian.com>

    * evolution-tasks.xml: fixed typos

2001-06-28  Radek Doulik  <rodo@ximian.com>

    * evolution-signature-editor.xml: new file

2001-06-28  Rodrigo Moya <rodrigo@ximian.com>

    * evolution-tasks.xml: added cut/copy/paste entries to the main menu

2001-06-27  Rodrigo Moya <rodrigo@ximian.com>

    * evolution-calendar.xml: added cut/copy/paste entries to the main
    menu

2001-06-27  Larry Ewing  <lewing@ximian.com>

    * evolution-message-composer.xml: remove FIXME from
    FileInsertFile.

2001-06-27  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-message-composer.xml: Updated to use TigerT's
    attachment icon.

    * evolution-mail-message.xml: Copy and Move to Folder now require
    the Shift key.

    * evolution-mail-list.xml: Changed the Expunge accel to ^E instead
    of ^X since ^X is Cut and reveresed the order of the
    Cut/Copy/Paste and Select* menu item groups.

2001-06-26  Peter Williams  <peterw@ximian.com>

    * evolution-mail-global.xml:
    * evolution-mail-list.xml:
    * evolution-mail-message.xml: New files. These are the result
    of splitting evolution-mail.xml into three pieces: one for the
    global mailer operations, one for the operations on a messagelist,
    and one for the operations on one or more messages.

    * evolution-mail-messagedisplay: New file. UI for the standalone
    message browser that you get when you double-click. Very skeleton.
    
    * evolution-mail.xml: Removed.

    * Makefile.am: Updated to install new files.
    
2001-06-25  jacob berkman  <jacob@ximian.com>

    * evolution-mail.xml: add a preview toggle item

2001-06-25  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-mail.xml: Added Cut/Copy/Paste menu items.

2001-06-24  Chris Toshok  <toshok@ximian.com>

    * evolution-addressbook.xml: add cmd for ContactNewList and
    ContactsPrintPreview.  Also, correct the tip for Select All and
    add the accelerator.  Add menu/tool items for ContactNewList, and
    remove the tool item for ContactViewAll.

    * Makefile.am (XML_FILES): add evolution-contact-list-editor.xml.

2001-06-23  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: Get rid of the status bar.

2001-06-22  JP Rosevear  <jpr@ximian.com>

    * evolution-task-editor.xml: new commands

2001-06-21  JP Rosevear  <jpr@ximian.com>

    * evolution-comp-editor.xml: add toolbar

2001-06-20  JP Rosevear  <jpr@ximian.com>

    * evolution-comp-editor.xml: collapse print commands here

2001-06-20  Kjartan Maraas  <kmaraas@gnome.org>

    * evolution-event-editor.xml: Fix typo. s/Cancel then meeting/
    Cancel the meeting/.
    
2001-06-19  Chris Toshok  <toshok@ximian.com>

    * evolution-contact-editor.xml: split out commands from
    toolitems/menuitems.

2001-06-19  JP Rosevear  <jpr@ximian.com>

    * evolution-task-editor.xml: ui xml for task editor

    * Makefile.am: install new file
    
2001-06-19  JP Rosevear  <jpr@ximian.com>

    * evolution-event-editor.xml: change to event specific operations

    * evolution-comp-editor.xml: split non-specific operations out
    here

    * Makefile.am: install new file

2001-06-14  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-mail.xml: Added a Reply-to-list menu item.

2001-06-08  Iain Holmes  <iain@ximian.com>

    * evolution-executive-summary.xml: Change for the new stuff.

2001-06-05  Jason Leach  <jleach@ximian.com>

    * evolution.xml: Fix a little thing where it was actually saying
    "_Delete this folder" in the statusbar.

2001-05-31  Chris Toshok  <toshok@ximian.com>

    * evolution-addressbook.xml: change Print Preview's name to
    ContactsPrintPreview.

2001-05-30  Chris Toshok  <toshok@ximian.com>

    * evolution-addressbook.xml: add commands/menu items for
    Cut/Copy/Paste/Select All.

2001-05-28  Dan Winship  <danw@ximian.com>

    * evolution-mail.xml: Undo Jeff's View menu changes, as they
    resulted in the normal/fullheaders/source radio group being split
    across two levels of hiearchy, and grouped "Hide Deleted" with
    the unrelated other Hide/Show commands.

2001-05-25  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-mail.xml: Added MailNextUnread, MailNextFlagged,
    MailPreviousUnread, and MailPreviousFlagged commands. Also
    rearranged the View menu to be a bit more user-friendly.

    Now where should we put the next/previous menu items?

2001-05-25  Christopher James Lahey  <clahey@ximian.com>

    * evolution-addressbook.xml: Changed the tooltips here based on
    Taylor's work.

2001-05-24  Radek Doulik  <rodo@ximian.com>

    * evolution-message-composer.xml: added delete all to edit menu
    added placeholders for all edit menu parts

2001-05-22  Chris Toshok  <toshok@ximian.com>

    * evolution-addressbook.xml: make the name of menuitem/toolitem's
    the same as the verb to save us from having to specify both, and
    move some more accels into the <commands>.

2001-05-21  Chris Toshok  <toshok@ximian.com>

    * evolution-addressbook.xml: remove ViewAsTable menu item.

2001-05-21  Federico Mena Quintero  <federico@ximian.com>

    * evolution-tasks.xml: Added a Delete button on the toolbar.

2001-05-20  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: Add a control placeholder named "OfflineToggle"
    to the status bar.

2001-05-19  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: Removed verb "NewView"; use
    "OpenFolderInNewWindow" instead.

2001-05-18  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: Add commands for the Folder submenu in the File
    menu.

2001-05-17  Chris Toshok  <toshok@ximian.com>

    * evolution-addressbook.xml: add <commands> for the toolbar/menu
    items we set the sensitivity on.

2001-05-17  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: Added a "FolderPopup" element and reformatted
    lots of it.

2001-05-16  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-message-composer.xml: Added S/MIME menu items.

2001-05-15  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: Add an "Evolution FAQ" entry to the "Help" menu.

2001-05-15  Dan Winship  <danw@ximian.com>

    * evolution-mail.xml: Create a "Message Display" submenu in View,
    move source/full headers/normal there and make it a radio group.
    Add "Load Images" there.

2001-05-15  Dan Winship  <danw@ximian.com>

    * evolution-mail.xml: Clean this up A LOT. In addition to cosmetic
    changes, now every command appears in the <commands> section, and
    has a tooltip. Also, move "Search" to the "Edit" menu for
    consistency with other apps.

2001-05-14  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-message-composer.xml: Remove Help->About.

2001-05-14  Dan Winship  <danw@ximian.com>

    * evolution-mail.xml: Redo forwarding stuff so there's "Forward",
    "ForwardAttached", "ForwardInline" (not "inlined"), and
    "ForwardQuoted", where the first uses a default style. Make
    Actions->Forward and the toolbar Forward button use the default
    style.

2001-05-12  Gediminas Paulauskas <menesis@delfi.lt>

    * evolution-mail.xml: add pixmaps for MessageCopy and
    MessageForwardAttached. Thanks Wayne Davis <wfdavis@seas.upenn.edu>
    for a patch.

2001-05-07  Jon Trowbridge  <trow@ximian.com>

    * evolution.xml: Added command entry for 'ToggleOffline'.

2001-05-03  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: Renamed `WorkOffline' to `ToggleOffline'.

2001-05-03  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: Renamed `WorkOffLine' to `WorkOffline'.

2001-04-26  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-mail.xml: Added Next/Previous toolbar buttons.

2001-04-26  Jon Trowbridge  <trow@ximian.com>

    * evolution-mail.xml: Added "Search Message" to "View" menu.

2001-04-16  Ettore Perazzoli  <ettore@ximian.com>

    * evolution.xml: Rename "New View" to "New Window" as suggested in
    #2124.  Also remove the stock pixmap [a piece of paper doesn't
    mean much anyway].  Also rename "New Evolution Bar Shortcut" into
    "New Evolution Shortcut" as we never really refer to it as the
    "Evolution bar", but rather as the "shortcut bar".  Finally, bind
    "New Folder" to `Control-Shift-F'.

2001-04-16  Gediminas Paulauskas <menesis@delfi.lt>

    * evolution-calendar.xml: toolitems which have non-default pixmaps, must
    have "pixtype=pixbuf" arg. Now *View buttons show up again.

2001-04-14  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-mail.xml: Added Filter/VFolder on mailing list. Yay. I
    also figured I'd expand this like MessageFilterSubj to
    MessageFilterSubject, what's with the abreviation? It makes no
    sense when the verb is that long anyway...

2001-03-13  Michael Meeks  <michael@ximian.com>

    * evolution-mail.xml: Add a load of commands, sigh, people do this
    so brokenly.

2001-04-02  Anders Carlsson  <andersca@codefactory.se>

    * evolution-mail.xml: Added a space after an attribute to make
    libxml happy.

2001-04-01  Gediminas Paulauskas <menesis@delfi.lt>

    * evolution-addressbook.xml, evolution-calendar.xml,
    evolution-mail.xml, evolution-tasks.xml, evolution.xml: as Jacub
    suggested, added some icons, replaced stock Print with ours, etc.

2001-03-29  Not Zed  <NotZed@Ximian.com>

    * evolution-mail.xml: Move the 'hide deleted' to the option list
    under the view menu.

2001-03-28  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-mail.xml: Bind "MessageMarkAsRead" to `Control-k'
    instead of `Control-q'.

2001-03-20  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-mail.xml: Change "Send and Receive" to "Send /
    Receive".

2001-03-20  Miguel de Icaza  <miguel@ximian.com>

    * evolution-addressbook.xml: Added artwork from Jakub.

2001-03-19  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-mail.xml: Add Resend Message under the File menu.

2001-03-17  Miguel de Icaza  <miguel@ximian.com>

    * evolution-calendar.xml: Added ShowWeekView, ShowMonthView,
    ShowDay, ShowWorkWeek to the View menu.

    * evolution.xml, evolution-mail.xml: Provide "Actions" in the
    toplevel evolution.  Fill in Actions/Component in Evolution-mail
    (no visual changes, just internal changes).

    * evolution-calendar.xml: Added Actions menu.  Added New Verb
    EditNewEvent. 

2001-03-16  Miguel de Icaza  <miguel@ximian.com>

    * evolution-mail.xml: Added accelerator to elements missing
    accelerators (Reply, Inline, Quoted, Attachments, Empty Trash,
    Full Headers).

    * evolution.xml: Added a placeholder for the beginning of the
    view. 

2001-03-12  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-message-composer.xml: Added Reply-To field.

2001-03-11  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-mail.xml: Add an ActionsEmptyTrash menu item.

2001-03-08  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-mail.xml: Took out the "IMPLEMENT ME"'s from the
    forward menu items since I've coded them now.

2001-03-08  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-mail.xml: Renamed the "Get Mail" button to "Send and
    Receive" for consistency with the command in the "Actions" menu.

2001-03-06  Miguel de Icaza  <miguel@ximian.com>

    * evolution-message-composer.xml: Reorder menus to be File, Edit,
    View, Insert, Format (instead of File, Edit, Format, View, Insert).

    Add View/From Field and View/From BCC

    Add Insert/File.

    Add File/Send menu item.

    Change the look to follow the "mailer" look (thiner display).

2001-03-06  Miguel de Icaza  <miguel@ximian.com>

    * evolution-tasks.xml: Added "File/New/Task" as well.

    * evolution-mail.xml: Added "File/New/Mail Message" at the top
    with binding C-n.  

    * evolution-calendar.xml: Set the binding for New Appointment to C-n

    * evolution-contact-editor.xml: Set the toolbar to hlook=text
    vlook=icon;  Set all icons priority-text to 1. 

    * evolution-addressbook.xml: Added "Contact" to the New menu.

    * evolution.xml: Provide an entry point to put "New" items on the
    first level. 

    We are going to need some Bonobo support to "hide" objects when
    other objects appear (like, having Mail Message bound to C-S-X in
    the global space, and when we switch to Mail, we only show the
    entry that has C-n as the binding).

2001-02-28  Miguel de Icaza  <miguel@ximian.com>

    * evolution.xml: Moved Importer after the Folder operations per
    Dan's proposal.

    * evolution-addressbook.xml: Renamed Settings/AddressBook
    Configuration to Tools/Settings.

    Make all the items have "Print" items that use the same icon
    instead of a collection of icons.

    * evolution-calendar.xml: Moved "Calendar Preferences" from
    "Settings" to "Tools/Settings".

    * evolution-mail.xml: Settings menu is fully gone.  All things
    that run a dialog now end up in "Tools" while actions end up in
    "Actions".  Hence I am right.

    Renamed "Mail Configuration..." to "Identieies and Servers"

    Move MessageMarkAsRead, MessageMarkAsUnRead
    to Edit menu.  Add MessageMarkAllAsRead.

    Remove "Print Message" from Message menu.  Remove "Print Preview
    Message" from Message menu.  Leave them on the "File" menu.

    Renamed "Reply to Sender" to "Reply" (awaiting Ettore's
    permission). 

    Renamed "Messages" to "Actions".

    Open Message renamed to "Open Selected Items" (as this is what it
    actually does). 

    Moved "Save Message As" to "File" menu.

    Added "Properties" to the File/Folder submenu.

    Edit menu now looks like this: Message Move, Message Copy, Select
    All, Invert Selection, Delete, Undelete, Mark as Read, Mark as
    Unread.  Some of them were moved from the "Messages" menu.

    "Forward message" shortcut changed to C-f

    Tools menu created.
    
    Create Rule From message moved to "Tools".

    * evolution.xml: Added Tools menu.  Moved Edit/Customize to
    Tools/Customize Toolbar.

    Added File/Folder submenu.  Duplicate "New Folder" in here. 

2001-03-04  Damon Chaplin  <damon@ximian.com>

    * evolution-tasks.xml: "New" -> "New Task".

    * evolution-calendar.xml: "New appointment" -> "New Appointment",
    "Go to" -> "Go To".

2001-02-21  Not Zed  <NotZed@Ximian.com>

    * evolution-mail.xml: Setup a command for MailStop.

2001-02-05  Iain Holmes  <iain@ximian.com>

    * evolution-executive-summary.xml: Add a priority.

2001-02-02  Michael Meeks  <michael@helixcode.com>

    * evolution-calendar.xml: cmd / widgetify.

2001-01-30  Michael Meeks  <michael@helixcode.com>

    * evolution.xml: Use hlook and vlook so by default we get
    no text in vertical mode, and priority only in horizontal
    mode.

2001-01-27  JP Rosevear  <jpr@ximian.com>

    * evolution-event-editor.xml: Menu cleanups

    * evolution-task-editor-dialog.xml: ditto

2001-01-25  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-addressbook.xml, evolution-calendar.xml,
    evolution-mail.xml, evolution-tasks.xml, evolution.xml: Change the
    toolbars to only show some of the labels, a la Outlook.

2001-01-25  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-mail.xml: Set the `pixtype' of the "PrintMessage" and
    "PrintPreviewMessage" items to "pixbuf".  Likewise for
    "MessageSaveAs", "MessageEdit", "MessagePrint", "MessageMove", "MessageReplySndr"
    and "MessageReplyAll".

2001-01-25  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-mail.xml: Set the `pixtype' of the "Configure Folder"
    and "Mail Configuration" items to "pixbuf".

2001-01-25  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-addressbook.xml: Change the type of the "Find a
    contact" item to "pixbuf".  Also set the type to "pixbuf" for
    "Addressbook Configuration", and "Print Contacts".

2001-01-25  Ettore Perazzoli  <ettore@ximian.com>

    * evolution-addressbook.xml: Change the type of the "View All"
    button to "pixbuf".

2001-01-24  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-message-composer.xml: Change Security* to SecurityPGP*
    as we may someday have S/MIME sign/encrypt.

2001-01-24  Jason Leach  <jasonleach@usa.net>

    (Fix #1252: Need a File->Close way to close a view)
    
    * evolution.xml: new File->Close menu item and associated command.

2001-01-22  Not Zed  <NotZed@Ximian.com>

    * evolution-mail.xml: Removed the temporary get mail button.

2001-01-19  Not Zed  <NotZed@Ximian.com>

    * evolution-mail.xml: Added a temporary button to test new receive
    code.

2001-01-18  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-mail.xml: Added Next/Previous toolbar buttons.

2001-01-15  Michael Meeks  <michael@helixcode.com>

    * evolution.xml: progressive cmd/widgetization and
    add the 'Customize' entry.

2001-01-16  Not Zed  <NotZed@Ximian.com>

    * evolution-mail.xml: Add a stop button to the toolbar.

2001-01-15  Jason Leach  <jasonleach@usa.net>

    (Bug #1143: Add elipses to more menu items that lead to dialogs)
    
    * evolution-mail.xml: "Folder/Configure Folder..."
    * evolution.xml: "File/Import file..."
    
2001-01-10  Miguel de Icaza  <miguel@helixcode.com>

    * evolution.xml: Remove fixme from NewMailMessage.

2001-01-11  Jeffrey Stedfast  <fejj@helixcode.com>

    * evolution-message-composer.xml: Added SaveDraft bonobo menu verb
    thingy.

2001-01-08  Damon Chaplin  <damon@helixcode.com>

    * evolution-tasks.xml: new file for the Tasks controls.

    * Makefile.am (XML_FILES): added the above file.

2001-01-02  Federico Mena Quintero  <federico@helixcode.com>

    * evolution-event-editor.xml:
    * evolution-task-editor-dialog.xml: Make the ordering of the
    toolbar items consistent.

2001-01-01  Michael Meeks  <michael@helixcode.com>

    * Makefile.am: remove evolution-addressbook-ldap.xml so we
    build again.

2000-12-29  Chris Toshok  <toshok@helixcode.com>

    * evolution-addressbook.xml: add "Settings/Addressbook
    Configuration..."  Analogous to "Settings/Mail Configuration..." in
    evolution-mail.

    * evolution-addressbook-ldap.xml: removed.
    
2000-12-23  Jason Leach  <jasonleach@usa.net>

    * evolution-mail.xml: Added ellipsis to Settings menu entries that
      bring up dialogs.  Bug #1019.

2000-12-23  Michael Meeks  <michael@helixcode.com>

    * evolution-mail.xml: s/<menuitem\/>/<separator\/>/

    * evolution.xml: ditto.

2000-12-21  Michael Meeks  <michael@helixcode.com>

    * evolution.xml: remove wierd extraneous '>'

2000-12-14  Michael Meeks  <michael@helixcode.com>

    * evolution-executive-summary.xml: stop executive summary
    making the UI flicker when switching to / from it.

2000-12-19  JP Rosevear  <jpr@helixcode.com>

    * evolution-calendar.xml: Fix bug #635

2000-12-18  Chris Toshok  <toshok@helixcode.com>

    * evolution-addressbook.xml: give View->As Table its verb back so
    it works.

2000-12-14  Not Zed  <NotZed@HelixCode.com>

    * evolution-mail.xml: Added message hiding items.

2000-12-15  Jeffrey Stedfast  <fejj@helixcode.com>

    * evolution-message-composer.xml: Added Security menu

2000-12-13  Ettore Perazzoli  <ettore@helixcode.com>

    * evolution-mail.xml: Make the forward button in the toolbar
    forward as an attachment.

2000-12-13  Radek Doulik  <rodo@helixcode.com>

    * evolution-message-composer.xml: redone shortcuts

2000-12-12  Radek Doulik  <rodo@helixcode.com>

    * evolution-message-composer.xml: removed Bold item from toolbar

2000-12-04  Dan Winship  <danw@helixcode.com>

    * evolution-mail.xml: Fix typo

2000-12-04  Ettore Perazzoli  <ettore@helixcode.com>

    * evolution-mail.xml: Renamed "MessageForward" to
    "MessageForwardInlined" and "MessageForwardAttach" to
    "MessageForwardAttached".  Make the attached forward the default,
    and the one advertised on the toolbar as well.

2000-12-01  Anna Marie Dirks  <anna@helixcode.com>

    * evolution.xml: Redid all the keyboard shortcuts to comply with GNOME
    standards. Removed unnecessary shortcuts from less commonly used menu 
    items, changed all references to "alt", etc. 
    * evolution-addressbook.xml: see above
    * evolution-mail.xml: see above
    * evolution-calendar.xml: Same as above, but I also reorganized menus slightly by moving "new appointment" from the edit menu to the file menu.   

2000-11-28  Jeffrey Stedfast  <fejj@helixcode.com>

    * evolution-mail.xml: Added Save As...

2000-11-25  Ettore Perazzoli  <ettore@helixcode.com>

    * evolution-message-composer.xml: Make "Toolbar"'s behavior
    "exclusive".
    * evolution-task-editor-dialog.xml: Likewise.

2000-11-21  Jeffrey Stedfast  <fejj@helixcode.com>

    * evolution-mail.xml: Moved ViewSource to the View menu and made
    it a toggle menu.

2000-11-16  Jeffrey Stedfast  <fejj@helixcode.com>

    * evolution-mail.xml: Added View Message Source.

2000-11-15  Jeffrey Stedfast  <fejj@helixcode.com>

    * evolution-mail.xml: Added Forward as Attachment.

2000-11-11  Christopher James Lahey  <clahey@helixcode.com>

    * evolution-contact-editor.xml: Added Send contact as attachment
    and Send to contact to menus.

2000-11-09  Anna Marie Dirks <anna@helixcode.com>
    * evolution-calendar.xml: Added (and cleaned up) keyboard shortcuts.
    * evolution-addressbook.xml: Added keyboard shortcuts.  

2000-11-08  Anna Marie Dirks <anna@helixcode.com>
    * evolution.xml: Added keyboard shortcuts to all shell menus.
    * evolution-mail.xml: Added keyboard shortcuts to all shell menus.

2000-11-08  Anna Marie Dirks <anna@helixcode.com>
        * evolution-message-composer.xml: Added keyboard shortcuts
    to all of the composer menus.

2000-11-07  Jesse Pavel   <jpavel@helixcode.com>

    * evolution-event-editor.xml: removed ``FIXME'' from the
    ``Schedule Meeting'' menu.

2000-11-06  Jeffrey Stedfast  <fejj@helixcode.com>

    * evolution-mail.xml: Updated Message menu.

2000-11-05  Christopher James Lahey  <clahey@helixcode.com>

    * evolution-contact-editor.xml: Added print envelope menus.  Added
    ...s.

2000-11-05  Michael Meeks  <michael@helixcode.com>

    * Makefile.am (uidir): kill all the bonob-ui-extract crud.

2000-11-02  Christopher James Lahey  <clahey@helixcode.com>

    * evolution-addressbook.xml: Removed QuickSearch widget.

2000-11-01  Radek Doulik  <rodo@helixcode.com>

    * evolution-message-composer.xml: added accel="*Control*Return" to
    FileSend
    replace FileSendNow with FileSend as FileSendNow wasn't defined
    
2000-10-25  Jeffrey Stedfast  <fejj@helixcode.com>

    * evolution-mail.xml: Added a MessageApplyFilters menu item.

    * evolution-subscribe.xml: Don't have a Unselect All, use Invert
    Selection instead.

2000-10-19  Ettore Perazzoli  <ettore@helixcode.com>

    * Makefile.am (H_FILES): New.
    (EXTRA_DIST): Add `$(H_FILES)'.

2000-10-19  Michael Meeks  <michael@helixcode.com>

    * evolution-message-composer.xml: add.

    * checking all generated .h files ( sim. to glade ) to make
    translator's lives easier.

2000-10-19  Michael Meeks  <michael@helixcode.com>

    * evolution-event-editor.xml: added.

2000-10-18  Michael Meeks  <michael@helixcode.com>

    * evolution-task-editor-dialog.xml: added.

2000-10-14  Michael Meeks  <michael@helixcode.com>

    * Makefile.am: Add rule to use bonobo-ui-extract to build
    translatable files.

2000-10-14  Michael Meeks  <michael@helixcode.com>

    * evolution-addressbook-ldap.xml: drasticaly shrink to just the
    new features available with ldap; don't duplicate stuff.

    * evolution-addressbook.xml: fix tooltips.

    * *.xml: remove redundant attributes causing toolber rebuilds.

2000-10-14  Michael Meeks  <michael@helixcode.com>

    * *.xml: add translation '_'s to some labels.

2000-10-12  Damon Chaplin  <damon@helixcode.com>

    * evolution-calendar.xml: Added toolbar buttons to switch views.
    We'll use plain buttons for the view buttons for now, until Bonobo
    toolbars support radio buttons.

2000-10-11  Ettore Perazzoli  <ettore@helixcode.com>

    * evolution-addressbook-ldap.xml: Apply behavior "exclusive" to
    "Toolbar".
    * evolution.xml: Likewise.
    * evolution-addressbook.xml: Likewise.
    * evolution-mail.xml: Likewise.
    * evolution-contact-editor.xml: Likewise.
    * evolution-subscribe.xml: Likewise.

2000-10-08  Damon Chaplin  <damon@helixcode.com>

    * evolution-calendar.xml: moved the calendar settings menu item to the
    Settings menu and renamed it to "Calendar Preferences".

2000-10-09  Michael Meeks  <michael@helixcode.com>

    * *.xml: s/Menu_//

2000-10-09  Michael Meeks  <michael@helixcode.com>

    * *.xml fix the mess with separators.

2000-10-09  Michael Meeks  <michael@helixcode.com>

    * evolution-subscribe.xml: s/descr/tip/

2000-10-05  Michael Meeks  <michael@helixcode.com>

    * evolution-mail.xml: remove redundant separator.

    * *.xml: Remove replicated attributes from structural elements.

2000-10-05  Michael Meeks  <michael@helixcode.com>

    * evolution.xml: fix from Darin toolbar -> dockitem.

2000-10-04  Jeffrey Stedfast  <fejj@helixcode.com>

    * evolution-mail.xml: Add Invert Selection

2000-10-04  Michael Meeks  <michael@helixcode.com>

    * evolution-mail.xml: bind 'D' to MessageDelete; a proto binding.

2000-10-04  Michael Meeks  <michael@helixcode.com>

    * evolution-calendar.xml: move Open, Save into FileOps

    * evolution.xml: add FileOps placeholder.

2000-09-15  Michael Meeks  <michael@helixcode.com>

    * *.xml: Update to new keybinding syntax.

2000-09-14  Michael Meeks  <michael@helixcode.com>

    * evolution-mail.xml: remove stock icons on toolbar.
    add back 2 stocks I lost somewhere.

    * ui/evolution.xml: Add status bar