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 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
|
2010-05-02 Neil Williams <linux@codehelp.co.uk>
* configure.ac: Bump version
* perl/dfical-datebook:
* perl/dfxml-invoice:
* perl/gtk-invoice: Fix l10n support.
* perl/po/ChangeLog:
* perl/po/LINGUAS: Add Vietnamese
2009-11-04 Neil Williams <linux@codehelp.co.uk>
* doc/xml/Makefile.am: Add the XML sources.
* perl/Makefile.am: Add dfpilottodo-gtodo but do
not install it.
* xsl/Makefile.am: Add vcard4.xsl.
* perl/dfinvoice-future: Handle an empty category.
* perl/dfinvoice-month: Handle an empty category.
* pilot-qof.doap: Support file for moap (svn).
2009-10-25 Neil Williams <linux@codehelp.co.uk>
* Makefile.am: Tweak
* configure.ac: Add a .bz2 dist tarball.
2009-10-19 Neil Williams <linux@codehelp.co.uk>
* perl/Makefile.am: Move dfinvoice-month and
dfinvoice-future to /usr/bin/
* perl/dfinvoice-list.pl: Simple check script
for /usr/share/
2009-10-16 Neil Williams <linux@codehelp.co.uk>
* Makefile.am: add main POT file
* configure.ac: Create a POT file for the perl scripts.
* doc/Makefile.am: tweak to build HTML
* perl/Makefile.am: Create POT file.
* perl/dfical-datebook: Markup output for translation.
* perl/dfinvoice-future: New script
* perl/dfinvoice-month: New script
* perl/dfxml-invoice: Markup output for translation.
* perl/gtk-invoice: Markup output for translation.
* perl/po/.cvsignore:
* perl/po/Makefile.in.in:
* perl/po/Makevars:
* perl/po/POTFILES.in: Translation support.
2009-07-14 Neil Williams <linux@codehelp.co.uk>
* src/palm.c: Separate handling for gpe_expenses and
pilot_expenses when both are enabled to allow correct
unpacking from Palm. Finalise 0.1.9 release.
2009-07-06 Neil Williams <linux@codehelp.co.uk>
* configure.ac: Require at least libpisock 0.12.4 due to
backwards compatibility issues.
2009-05-24 Neil Williams <linux@codehelp.co.uk>
* 0.1.8 release.
2009-05-17 Neil Williams <linux@codehelp.co.uk>
* configure.ac, doc/.cvsignore, doc/Makefile.am,
* doc/doxygen.cfg.in, doc/doxygen_to_devhelp.xsl,
* doc/html/.cvsignore, doc/html/Makefile.am: Add
the doxygen files to the package along with devhelp
support.
2009-05-03 Neil Williams <linux@codehelp.co.uk>
* .cvsignore:
* configure.ac: Support looking for libqofexpensesobjects
to provide access to other expense objects.
* src/Makefile.am: Support build with and without
libqofexpensesobjects.
* src/pilot-expenses-p.h, src/pilot-expenses.c,
* src/pilot-expenses.h: Renamed versions of the old
qof-expenses from pilot-qof.
* src/pilot-qof.c: Register the objects from libqofexpensesobjects,
when available.
* src/palm.c, src/qof-invoice.c: Use the libqofexpensesobjects
expenses - this still needs some work because if compiled with
libqofexpensesobjects, --invoice-city needs data from gpe-expenses.
2009-05-01 Neil Williams <linux@codehelp.co.uk>
* Makefile.am, configure.ac, doc/man/Makefile.am:
* doc/xml/pilot-qof.docbook, libpilotobjects.symbols.in:
* po/POTFILES.in, po/POTFILES.skip src/libpilotobjects.ver:
Drop pilotinvoice, the codebase is not ready for release.
Backdate version to 0.1.8 instead of 0.2.0.
* po/de.po, po/fr.po, po/pt.po, po/pt_BR.po:
* po/ru.po, po/sv.po, po/vi.po: Backdate translations.
2009-05-01 Neil Williams <linux@codehelp.co.uk>
* src/palm.c: Fix typo in todo_unpack that caused a crash
on sync. Add debug output to each unpack routine.
* src/pilot-qof.h, src/pilot-qof.c: wrap pref_creator
as non-const for compatibility with makelong.
2009-05-01 Neil Williams <linux@codehelp.co.uk>
* Makefile.am, configure.ac, .cvsignore: Add support
for m4/ and refresh autotools.
* doc/xml/pilot-qof1.xml: Mention the need for the usb:
user to be in the dialout group.
2009-03-15 Neil Williams <linux@codehelp.co.uk>
* invoice/invoice-gtk.c (delete_invoice), (open_new_invoice),
(import_invoice_data), (set_toolbar): Add delete functionality
and convert New into Open with a note if the import will take
some time.
* invoice/pilotinvoice.c (invoice_populate): convert to temp
session.
* invoice/pilotinvoice.h: use temp session.
2009-03-12 Neil Williams <linux@codehelp.co.uk>
* .cvsignore: Ignore the generated symbols file.
* Makefile.am: Add global symbols versioning script
* configure.ac: generate the symbols file and linker script rule.
* libpilotobjects.symbols.in: Implement symbols support (not expected
to change).
* src/Makefile.am: Add symbols support.
* src/libpilotobjects.ver: Symbols versioning script.
2009-03-11 Neil Williams <linux@codehelp.co.uk>
* invoice/invoice-gtk.c (edit_invoice), (open_about_dialog),
(inv_show_entities), (button_press_event), (raise_calendar),
(change_reference), (pay_date_compare), (set_list_view),
(set_toolbar), (open_invoice_window): Outline support for
only changing date entries within the Properties window.
* invoice/pilotinvoice.h: Only setup the icon once.
2009-01-11 Neil Williams <linux@codehelp.co.uk>
* invoice/invoice-gtk.c (inv_show_entities), (change_date),
(date_compare): Fix wrong use of QOF_DATE_FORMAT_LOCALE
instead of a format that can be reliably parsed. Switch to
QOF_DATE_FORMAT_CE as a temporary measure. Compare dates using
reliable data from the entity itself.
2008-12-25 Neil Williams <linux@codehelp.co.uk>
* invoice/invoice-gtk.c (edit_ok_clicked), (edit_invoice),
(open_about_dialog), (inv_show_entities), (change_date),
(change_amount), (type_compare), (date_compare), (amount_compare),
(set_list_view), (open_new_invoice), (set_toolbar),
(open_invoice_window): Omit known blank fields and use the currency
symbol.
* invoice/pilotinvoice.c (inv_cb), src/qof-invoice.c (invoice_create),
(inv_getCurrency): Invalid values for pq_code are negative one,
not zero.
* Makefile.am, configure.ac, desktop/.cvsignore, desktop/Makefile.am:
* desktop/pilotinvoice.desktop.in.in, desktop/pilotinvoice.xpm: Add
desktop file support
* invoice/.cvsignore: ignore test xml files
* invoice/Makefile.am:
* invoice/invoice-gtk.c (edit_invoice), (open_about_dialog):
* make-potfiles.in: Dropped.
* test/catalog_gen.pl.in.in: Adapt for build changes
* test/pq_xsl_test.in: Adapted for build changes.
* invoice/Makefile.am: set the pilotinvoice name
* invoice/invoice-gtk.c (compare_cache), (edit_ok_clicked),
(create_currency_list), (edit_invoice), (open_about_dialog),
(inv_show_entities), (button_press_event), (change_date),
(change_amount), (type_compare), (date_compare), (amount_compare),
(set_list_view), (inv_refresh_list), (open_new_invoice),
(set_toolbar), (open_invoice_window): Enable a first-attempt GUI
* invoice/pilotinvoice.c (create_groups), (parse_groups),
(invoice_gui_start), (main): GUI support
* invoice/pilotinvoice.h: Tweak.
* src/qof-invoice.h: remove unwanted defines
2008-12-23 Neil Williams <linux@codehelp.co.uk>
* configure.ac: Add extra compiler warnings: -Wshadow,
-Wredundant-decls, -Wwrite-strings, -Wformat-security, -Wswitch-enum,
-Winit-self and -Wmissing-include-dirs.
* invoice/pilotinvoice.c (create_groups), (parse_groups), (main):
* invoice/qof-main.c (qof_mod_sql_file), src/pilot-qof.c
(pilot_database_open), (main), src/pilot-qof.h, src/qof-expenses.c
(expense_create), (qof_exp_distanceAsString), (qof_exp_paymentAsString),
(qof_exp_typeAsString), src/qof-main.c (qof_mod_sql_file):
Fix up errors from new warnings.
2008-12-21 Neil Williams <linux@codehelp.co.uk>
* invoice/pilotinvoice.c (invoice_prepare), (invoice_add_expense),
(exp_cb), (invoice_populate): Add expense handling to invoices,
including mileage rates.
* src/qof-invoice.c, src/qof-invoice.h: Remove unneeded function
* invoice/pilotinvoice.c (create_groups), (parse_groups), (inv_cb),
(exp_cb), (invoice_populate): Add default currency handling to key
file and use when no expenses are listed in the invoice.
* invoice/pilotinvoice.h: support default mnemonic
* src/qof-expenses.h, src/qof-expenses.c (currency_cb),
(pq_set_currency): Add one public function to convert a mnemonic
to a currency.
2008-12-11 Neil Williams <linux@codehelp.co.uk>
xsl/pilotinvoice-xhtml.xsl, doc/xml/manual.docbook,
doc/xml/pilot-qof.docbook, doc/xml/pilot-qof1.xml:
Initial XSL for pilotinvoice.
2008-11-24 Neil Williams <linux@codehelp.co.uk>
* invoice/pilotinvoice.c (create_groups), (parse_groups),
(load_currency_keyfile), (datebook_cb), (addr_cb),
(invoice_populate), (main): Add datebook and address data
to invoices.
* invoice/pilotinvoice.h: New QOF_TYPE_COLLECT parameters.
* src/qof-invoice.c (invoice_create), (inv_getAmount),
(inv_setAmount), (inv_getDates), (inv_getAddresses),
(inv_getExpenses), (inv_add_date_cb), (inv_add_addr_cb),
(inv_add_exp_cb), (inv_setDates), (inv_setAddresses),
(inv_setExpenses), (invoice_prepare), (invoice_add_expense),
(InvoiceRegister): Generate and retrieve lists of datebooks
addresses and expenses for each QOF_TYPE_COLLECT in invoice.
2008-11-23 Neil Williams <linux@codehelp.co.uk>
* src/palm.c (datebook_unpack): Implement repeater clones
within the library and add a single routine to call from the
unpack.
* src/pilot-qof.c (main): Harmonise command line options
so that -i is supported alongside -x.
Remove qof_main_make_utf8 and use the qof_util version
instead.
* src/pilotobjects.c, src/pilotobjects.h: Removed.
* src/Makefile.am: remove references to removed files.
* src/pilot-todo.c (todo_setDescription), (todo_setNote),
(todo_setCategory):
* src/qof-address.c (addr_setLastname), (addr_setFirstname),
(addr_setCompany), (addr_setPhoneOne), (addr_setPhoneTwo),
(addr_setPhoneThree), (addr_setPhoneFour), (addr_setPhoneFive),
(addr_setAddress), (addr_setCity), (addr_setState), (addr_setZip),
(addr_setCountry), (addr_setTitle), (addr_setCustomOne),
(addr_setCustomTwo), (addr_setCustomThree), (addr_setCustomFour),
(addr_setNote), (addr_setCategory):
* src/qof-datebook.c (datebook_setDescription), (datebook_setNote),
(datebook_setCategory), (datebook_repeater_clone):
* src/qof-datebook.h:
* src/qof-expenses.c (pq_currency_lookup), (exp_setVendor),
(exp_setCity), (exp_setAttendees), (exp_setNote),
(exp_setCategory):
* src/qof-invoice.c (inv_setVendor), (inv_setCity), (inv_setNote),
(inv_setCategory):
* src/qof-main.h:
2008-11-23 Neil Williams <linux@codehelp.co.uk>
* Makefile.am, configure.ac, bash: Add bash completion.
* invoice/pilotinvoice.c (invoice_init), (invoice_gui_start),
(main): Add multiple database support for pilotinvoice.
2008-11-23 Neil Williams <linux@codehelp.co.uk>
Splitting out objects into a library and adding an
QofInvoice object and start work on a pilotinvoice
binary (with gui).
* Makefile.am: Add invoice/ directory
* configure.ac: Add Gtk dependency for new GUI and increment
version.
* invoice/Makefile.am:
* invoice/invoice-gtk.c (compare_cache), (edit_ok_clicked),
(edit_cancel_clicked), (edit_delete_clicked),
(create_currency_list), (set_selected_category), (edit_invoice),
(open_about_dialog), (inv_show_entities), (button_press_event),
(change_date), (change_amount), (rounding_func), (type_compare),
(date_compare), (amount_compare), (set_list_view),
(inv_refresh_list), (open_new_invoice), (set_toolbar),
(open_invoice_window): Based on gpe-expenses but not working yet.
* invoice/invoice-gtk.h: Based on gpe-expenses but not working yet.
* invoice/pilotinvoice.c (invoice_init), (invoice_close),
(invoice_error), (invoice_gui_start), (main): test binary.
* invoice/pilotinvoice.h: new file.
* invoice/qof-main.c (qof_main_wrap_line), (qof_main_run_sql),
(qof_main_run_query), (qof_main_free), (find_param_cb),
(build_database_list), (select_cb), (qof_main_moderate_query),
(option_cb), (qof_mod_compression), (qof_mod_encoding),
(qof_mod_convert_deprecated), (qof_cmd_xmlfile), (qof_main_list),
(qof_main_select), (qof_cmd_list), (explain_cb), (qof_cmd_explain),
(qof_mod_category), (qof_mod_get_local_offset), (qof_mod_database),
(qof_mod_time), (qof_mod_exclude), (qof_mod_sql),
(qof_mod_sql_file), (qof_mod_write), (qof_main_show_error): Need to
do something about qof-main - keep on needing to repeat it.
* src/Makefile.am: Add library for QOF objects.
* src/palm.c (exp_unpack), (exp_pack), (exp_pref_unpack),
(exp_appinfo_unpack), (qof_exp_free), (qof_todo_free),
(todo_unpack), (todo_pack), (todo_appinfo_unpack), (address_pack),
(address_unpack), (addr_appinfo_unpack), (qof_address_free),
(datebook_unpack), (datebook_pack), (datebook_appinfo_unpack),
(qof_datebook_free), (packing_registration): Migrate pilot support
out of objects to make a library possible.
* src/pilot-qof.c (pilot_qof_init): Call the new packing support
from palm.c
* src/pilot-todo.c (todo_get_pilot), (ToDoRegister):
* src/pilot-todo.h:
* src/pilotobjects.c (qof_main_make_utf8): Temporary home, probably
needs to be in QOF.
* src/pilotobjects.h:
* src/qof-address.c (address_get_pilot), (AddressRegister):
* src/qof-address.h:
* src/qof-datebook.c (datebook_get_pilot), (DateBookRegister):
* src/qof-datebook.h:
* src/qof-expenses-p.h:
* src/qof-expenses.c (populate_currencies), (expense_get_pilot),
(exp_getAmount), (ExpensesRegister):
* src/qof-expenses.h:
* src/qof-invoice.c (invoice_create), (inv_getTime), (pay_getTime),
(inv_getCurrency), (inv_getReference), (inv_getDescription),
(inv_getAmount), (inv_getVendor), (inv_getCity), (inv_getNote),
(inv_getCategory), (inv_setTime), (pay_setTime),
(inv_setReference), (inv_setCurrency), (inv_setDescription),
(inv_setAmount), (inv_setVendor), (inv_setCity), (inv_setNote),
(inv_setCategory), (invoicePrintable), (InvoiceRegister): New
QOF object for invoices. Needs more work.
* src/qof-main.c: Migrate qof_main_make_utf8 into the library.
2008-03-13 Neil Williams <linux@codehelp.co.uk>
* perl/dfxml-homebank : New script for 0.1.8
that can add CSV invoice data to homebank.
2007-12-10 Neil Williams <linux@codehelp.co.uk>
* src/qof-address.c : Prevent write to entry
array beyond array bounds. (gcc-4.3 error).
2007-08-26 Neil Williams <linux@codehelp.co.uk>
* configure.ac : Prepare new version, 0.1.6.
* po/LINGUAS : New Russian translation.
2007-08-25 Neil Williams <linux@codehelp.co.uk>
* COPYING,
debian/copyright,
src/*.c,
src/*.h : Migrate to GPL v3.
2007-08-09 Neil Williams <linux@codehelp.co.uk>
* configure.ac : Remove ALL_LINGUAS in preference
for po/LINGUAS to remove the need to edit
configure.ac for translation additions.
* po/LINGUAS : new file.
2007-07-11 Neil Williams <linux@codehelp.co.uk>
* src/qof-main.h: translate the Help
output from popt
2007-05-16 Neil Williams <linux@codehelp.co.uk>
* perl/Makefile.am : fix 'make distcheck'
and fix Debian bug #424333 in the process.
* configure.ac : Bump to 0.1.4
* doc/manual/gnucash.jpg,
doc/manual/Makefile.am,
doc/xml/manual.docbook : Extend manual to cover
an example of working with gnucash - include
screenshot.
2007-03-15 Neil Williams <linux@codehelp.co.uk>
* perl/Makefile.am : Incorporate patch needed
by Debian to render a sane make clean target.
* doc/manual/Makefile.am : Fix docbook generation
to output UTF-8 pages because the current output
contains UTF-8 characters in an iso8859-1 file.
2007-02-27 Neil Williams <linux@codehelp.co.uk>
* src/pilot-qof.c : Remove error
message handler - prevents use with
other access methods.
2007-02-22 Neil Williams <linux@codehelp.co.uk>
* src/pilot-qof.c,
src/qof-main.c : Handle trying to open
a non-existent file with a sensible error
message. (Re-uses existing translated string).
2007-02-21 Neil Williams <linux@codehelp.co.uk>
* autogen.sh,
configure.ac,
Makefile.am : replace intltoolize.
2007-02-20 Neil Williams <linux@codehelp.co.uk>
* xsl/Makefile.am : Auto-generate the xslt directory
in the XSL scripts.
2007-02-18 Neil Williams <linux@codehelp.co.uk>
* autogen.sh : intltoolize no longer used,
glib-gettextize replaces functionality.
* configure.ac : Add pt translation.
* Makefile.am : Remove intltool files from
distribution.
* perl/Makefile.am : Add new gtk-invoice script
for /usr/share
* po/ : Updated translations.
* src/qof-main.h : Add a comment for translators
that the doxygen content in the POT file should be
ignored. Gettext insists on including it. :-(
2007-02-17 Neil Williams <linux@codehelp.co.uk>
* perl/dfxml-invoice : Match weekend rate by
number, not a translatable string.
2007-02-15 Neil Williams <linux@codehelp.co.uk>
* make-potfiles.in : Ensure qof-main standard
messages are translated. Thanks to
"Jean-Luc Coulon (f5ibh)" <jean-luc.coulon@wanadoo.fr>
for the catch.
* src/pilot-qof.c : Ensure the usage text is
available for translation. Thanks to
"Jean-Luc Coulon (f5ibh)" <jean-luc.coulon@wanadoo.fr>
for the catch.
2007-02-15 Neil Williams <linux@codehelp.co.uk>
* doc/xml/pilot-qof1.xml : Document the split
into datafreedom packages.
2007-02-13 Neil Williams <linux@codehelp.co.uk>
* xsl/dfexport-all.in : New "export all" script
for xsl that checks for suggested applications.
Can use 'zenity' if it is installed.
2007-02-11 Neil Williams <linux@codehelp.co.uk>
* configure.ac : New Version, 0.1.3
* doc/xml/pilot-qof1.xml : amplify the
explanations of which databases are supported.
* perl/ : New directory for the expanding perl
scripts.
* xsl/ : Migrate perl scripts into perl/
* debian/ : Create two new packages, one for
xsl and one for perl to reduce size of pilot-qof
itself.
2006-12-26 Neil Williams <linux@codehelp.co.uk>
* configure.ac : New version, 0.1.2
* doc/man/Makefile.am : clean manpage to ensure
it is updated regularly.
* doc/xml/manual.docbook : Note support for
gpe-calendar.
* doc/xml/pilot-qof.docbook : New version.
* doc/xml/pilot-qof1.xml : Fix long lines
(prevents lintian warning in Debian).
* xsl/pilot-qof-calcurse-apts.xsl : Fix start date
and end date (for calcurse) so that start is always
before end. Unfortunately, neither calcurse nor Palm
currently support overnight events cleanly.
2006-12-24 Neil Williams <linux@codehelp.co.uk>
* xsl/pilot-qof-icalendar.xsl : Use normalizespace()
to collapse newlines in incoming Notes fields - allows
import by gpe-calendar.
2006-12-08 Neil Williams <linux@codehelp.co.uk>
* doc/xml/manual.docbook : Update iCalendar content.
* xsl/pilot-qof-icalendar.xsl : Adapt to work with
dates, an evolution-data-server client.
2006-12-05 Neil Williams <linux@codehelp.co.uk>
* xsl/pilot-qof-address-dlume.xsl : first draft
of dlume stylesheet
* doc/xml/manual.docbook : Document new stylesheet.
* xsl/Makefile.am : Add new stylesheet to installation.
* website/index.html : New Ubuntu versions.
* doc/xml/pilot-qof1.xml : Document new pilot-link
USB port value - usb: instead of /dev/ttyUSB1.
2006-11-19 Neil Williams <linux@codehelp.co.uk>
* src/pilot-qof.c : Update copyright notice for
code from pilot-link/src/userland.c.
2006-10-29 Neil Williams <linux@codehelp.co.uk>
* configure.ac : No need for maintainer mode.
2006-10-15 Neil Williams <linux@codehelp.co.uk>
* doc/xml/manual.docbook : Document new stylesheets
and reorganise chapters for clarity.
* xsl/Makefile.am : New stylesheets.
* xsl/pilot-qof-todo-vtodo.xsl : Convert pilot_todo
to vToDo format.
2006-10-10 Neil Williams <linux@codehelp.co.uk>
* xsl/Makefile.am,
gpe-expenses-pilot-qof.xsl,
pilot-qof-gpe-expenses.xsl : Simple conversion
of gpe-expenses QSF XML to pilot-qof expenses XML.
2006-10-01 Neil Williams <linux@codehelp.co.uk>
* configure.ac : Move to depend on QOF 0.7.2
to use QofError.
2006-09-13 Neil Williams <linux@codehelp.co.uk>
* debian/changelog : Moving from experimental
to unstable with libpisock9.
* debian/control : Depend on QSF directly.
* src/pilot-qof.c : Remove empty file hack.
* src/qof-main.c : Retrieve session errors
if possible (adds support for QofError until
pilot-qof migrates to QOF 0.8.0).
* website/index.html : Repository change.
2006-09-06 Neil Williams <linux@codehelp.co.uk>
* test/Makefile.am,
test/pq_xsl_test.in : Fix make distcheck
* src/bridge.c,
src/bridge.h : Remove 0.11.8 bridging code.
* src/Makefile.am : Remove bridge.h
2006-08-28 Neil Williams <linux@codehelp.co.uk>
* Makefile.am :
* doc/man/Makefile.am :
* doc/manual/Makefile.am :
* doc/xml/Makefile.am :
* test/Makefile.am : Only build the manpage,
manual and POTFILES.in when new or modified.
* doc/xml/manual.docbook : Update time.
* doc/xml/pilot-qof1.xml : Tweak, fix "
issue and spacing. Update version and time.
2006-08-28 Neil Williams <linux@codehelp.co.uk>
* Makefile.am : Add test directory
for 'make check'. Tests SQL and XSL
operation.
* test/README,
test/address.xml
test/complete.xml
test/datebook.xml
test/expenses.xml
test/pq_xsl_test
test/pq_xsl_test.in
test/select.sql
test/todo.xml : Test suite.
* configure.ac : At long last, building
against pilot-link 0.12 and libpisock9.
Merging 0.1 branch back into HEAD.
* NEWS,
README
README.cvs
configure.ac
debian/control
debian/rules
doc/doxygen_main_page.c
doc/xml/Makefile.am
doc/xml/pilot-qof.docbook
rpm/pilotqof.spec
src/.cvsignore
src/Makefile.am
src/pilot-qof.c
src/pilot-qof.h
src/pilot-todo.c
src/qof-address.c
src/qof-main.c
src/qof-main.h
website/index.html
xsl/date-time.xsl
xsl/string.xsl
* po/en_GB.po : Update for 0.1.1
* po/sv.po : Update for 0.1.1
* po/vi.po : Update for 0.1.1
2006-08-24 Neil Williams <linux@codehelp.co.uk>
* xsl/pilot-qof-2-invoice : New file; prototype
shorthand script to generate HTML invoices from
--invoice-city and --invoice-vendor output.
* TODO : Note problem with transient repeats
in qof-datebook.
* debian/control : Ensure XML_CATALOG is always
completed by build depending on xml-core.
* doc/xml/Makefile.am : Correct use of XML_CATALOG
to enable use of URI's instead of fixed filesystem
locations.
* doc/xml/catalog.xml.in : Uncomment URI locations
to be used by build system.
* doc/xml/docbook.xsl.in : docbook-xsl updated,
use new linkages.
* doc/xml/manual.docbook : Extra content to match
updated docbook-xsl.
* doc/xml/pilot-qof.docbook : Tweak.
* doc/xml/pilot-qof.xml : Specify product name for
updated docbook-xsl.
* xsl/invoice.css : Add a little highlighting.
* xsl/pilot-qof-invoice-xhtml.xsl : Phase1 of a fix
for invoices involving multiple datebook events.
2006-08-19 Neil Williams <linux@codehelp.co.uk>
* doc/xml/pilot-qof.xml : Add missing content to use
nwalsh XSL for manpage generation.
* doc/xml/manual.docbook : Fixing XSL errors with
upgraded docbook package.
* doc/xml/docbook.xsl.in : Removed - unnecessary with
upgraded docbook.
2006-08-11 Neil Williams <linux@codehelp.co.uk>
* src/qof-expenses.c : Improve expense time handler
to use datebook code.
* src/qof-main.c : Implement new function to handle
user specified localtime date conversion to UTC
query matches.
* src/qof-main.h : Document new function.
* doc/xml/manual.docbook : Document need for
xml-core package to use catalog.xml.
* xsl/Makefile.am : Add missing XSL file, vcard2.
2006-08-06 Neil Williams <linux@codehelp.co.uk>
* xsl/pilot-qof-icalendar.xsl : convert pilot_datebook
into an iCalendar file.
* xsl/Makefile.am : Package and catalogue new stylesheet.
* doc/xml/manual.docbook : Document usage.
2006-07-27 Neil Williams <linux@codehelp.co.uk>
* pilot-qof.c : Enhance debug logs to show
the functions specified in the logged run.
* pilot-todo.c : Ensure Palm record can cope
with the QofTime value.
* qof-datebook.c : Fix recursive loop in unpack and
enhance debug logs.
* qof-main.c : Enhance the UTF-8 / locale handling
to better support users who actually use UTF-8 as
their locale.
* doc/xml/manual.docbook : Expand the preface to give
a more detailed introduction.
2006-07-25 Neil Williams <linux@codehelp.co.uk>
* src/qof-expenses.c : pre-release tweak.
* src/qof-datebook.c : pre-release tweak.
* src/pilot-todo.c : pre-release tweak.
* src/pilot-qof.c : Catch error if -t option is
invalid. Code tidy-up.
* src/qof-main.c : Only run a query on all entities
when other options are not specified.
* configure.ac : Ensure the next catalog is locatable
even when using pre-built XML.
* website/index.html : pre-release tweak.
* xsl/Makefile.am : Only reference top-level stylesheets
in the catalog.
* xsl/README : Document use of XML_CATALOG
* xsl/pilot-qof-calcurse-apts.xsl : Move to QOF_TYPE_TIME
from QOF_TYPE_DATE
* xsl/pilot-qof-calcurse-todo.xsl : Move to QOF_TYPE_TIME
from QOF_TYPE_DATE
* xsl/pilot-qof-invoice-xhtml.xsl : Move to QOF_TYPE_TIME
from QOF_TYPE_DATE
* doc/xml/manual.docbook : expand preface to link to homepage
and reformat with xmllint.
2006-07-24 Neil Williams <linux@codehelp.co.uk>
* website/pilotqof.png : Missing image.
* website/index.html : Tweak download information.
* debian/control : Recommend dwww for easier use
of the extensions manual.
2006-07-23 Neil Williams <linux@codehelp.co.uk>
* doc/xml/manual.docbook : Convert the Palm Default
Currency Table to an actual HTML table instead of a
list. Tweaks.
* src/qof-main.c : Fix qof_mod_time to handle shorthand
strings like '2005' and '2005-07' correctly. Fix debug
output ENTER/LEAVE mismatch. Fix fault in multiple
queries of the same type that meant records only matched
if all fields of that type matched.
* src/qof-main.h : Remove duplicative function.
* src/qof-datebook.c : Fix end time and prevent temporary
date format being added more than once.
2006-07-18 Neil Williams <linux@codehelp.co.uk>
* xsl/catalog_gen.pl.in.in : Prototype to generate
a XML_CATALOG_FILES catalog.
* xsl/pilot-qof-2-address-vcard1 : Script to make
it easier to use the XSL without the typing.
* xsl/pilot-qof-calcurse-apts.xsl : New XSL for
calcurse appointments from qof-datebook XML.
* xsl/vcard-2-pilot-qof-address : Renamed to
remove .pl extension and make the name clearer.
* configure.ac : Auto-generate the catalog.
* debian/control : Suggest calcurse.
* doc/Makefile.am : Tweak.
* doc/xml/Makefile.am : Split the manpage build
from the manual build.
* xsl/Makefile.am : Catalog generation.
2006-07-16 Neil Williams <linux@codehelp.co.uk>
* src/qof-main.h,
src/qof-main.c,
src/pilot-qof.h,
src/pilot-qof.c,
src/qof-address.c,
src/qof-expenses.c,
src/qof-datebook.c,
src/pilot-todo.c : Rationalise naming of
context structs. Move to QofTime.
2006-07-14 Neil Williams <linux@codehelp.co.uk>
* doc/xml/pilot-qof.docbook : Split man pages
3 and 5 into a more usable HTML Extensions Manual.
* doc/xml/pilot-qof.xml : xmllint format.
* doc/xml/manual.docbook : New file for the
Pilot-QOF Extensions Manual.
* doc/xml/Makefile.am : Package the manual.
* doc/doxygen.cfg.in : No more manpages from Doxygen.
* configure.ac : Depend on QOF 0.7.0 and new directory.
* debian/changelog :
* doc/doxygen.cfg.in : Prevent doxygen building manpages
* doc/man/Makefile.am : remove manpages 3 and 5 from the
build and tarball.
* src/qof-datebook.c : Begin move to QofTime and QOF 0.7.0
2006-05-31 Neil Williams <linux@codehelp.co.uk>
* README.cvs : Add indent configuration.
* debian/control : Remove libpisock9 conflict,
may need a conflict against the -dev package only.
* src/bridge.h : Indent fixes.
* src/pilot-qof.c :
* src/pilot-qof.h :
* src/pilot-todo.h :
* src/qof-datebook.c :
* src/qof-expenses.h :
* src/qof-main.c :
* src/qof-main.h :
2006-05-31 Neil Williams <linux@codehelp.co.uk>
* src/bridge.c :
* src/pilot-qof.c :
* src/pilot-todo.c :
* src/qof-address.c :
* src/qof-datebook.c :
* src/qof-expenses.c :
* src/qof-main.c : implement consistent indent format
* debian/control : standards 3.7.2 and recommend
xsltproc
* debian/changelog : Prepare for 0.0.10-1
* debian/watch : fix watch file.
2006-04-20 Neil Williams <linux@codehelp.co.uk>
* pilot-qof-invoice-xhtml.xsl : Avoid NaN in
total when there are no expenses for this invoice.
* xsl/pilot-qof-std.xsl : Add date to chunk title
so that new invoices for the same customer do not
overwrite old ones.
* src/qof-main.c : Trying to workaround non-UTC time
problems in gnc-date until QOF puts in genuine UTC
handler replacements.
2006-04-17 Neil Williams <linux@codehelp.co.uk>
* src/qof-datebook.c : Convert notes, category
and description to UTF-8.
* src/qof-address.c : Convert city to UTF-8.
* src/pilot-todo.c : Convert category to UTF-8.
* src/qof-expenses.c : Convert category to UTF-8.
2006-04-16 Neil Williams <linux@codehelp.co.uk>
* src/qof-main.c : wrapping error messages.
2006-04-13 Neil Williams <linux@codehelp.co.uk>
* src/qof-main.c :
* src/qof-main.h : Add outline support for
wrapping lines of text - from cashutil.
2006-04-04 Neil Williams <linux@codehelp.co.uk>
* src/pilot-qof.h :
* src/pilot-qof.c : get /tmp/ from glib, not macros,
using g_get_tmp_dir();
* src/qof-expenses.c :
* src/qof-expenses.h : interrelate currency_code and
expense amount in preparation for later QofLogic
handlers
* src/qof-main.c : check for utf-8 validity before
converting
2006-04-03 Neil Williams <linux@codehelp.co.uk>
* src/pilot-qof.c : Add option to encode XML to
the current locale, --use-locale.
* src/qof-main.c :
* src/qof-main.h : Add encoding support, wrap
g_locale_to_utf8 with qof-main function.
* src/qof-address.c :
* src/qof-expenses.c :
* src/qof-datebook.c :
* src/pilot-todo.c : Ensure strings from Palm
are UTF-8 for later conversion in libxml2.
2006-04-02 Neil Williams <linux@codehelp.co.uk>
* doc/xml/pilot-qof.xml : Documenting currency handling.
* src/pilot-qof.c :
* src/pilot-qof.h :
* src/qof-expenses.c :
* src/qof-expenses.h : currency handling with mnemonics and
symbols.
2006-04-01 Neil Williams <linux@codehelp.co.uk>
* src/qof-expenses.c : Begin outlining currency
handling for expenses. Add supported pilot
currency types.
* src/qof-expenses.h :
* src/pilot-qof.h : Store currency contexts for
later use.
2006-03-26 Neil Williams <linux@codehelp.co.uk>
* src/qof-main.c : Fix SQL handling.
Prevent seg fault if sql_file name is a typo.
* debian/* : fixes for 0.0.8 release.
* src/qof-main.c :
* src/qof-main.h : use gint64 for gz_level to
reflect internal KVP usage
2006-03-26 Neil Williams <linux@codehelp.co.uk>
* src/pilot-qof.c : Let -s and -f be handled
as commands (allows INSERT with no starting file.)
* doc/xml/pilot-qof.xml : Document changes to
-s and -f.
2006-03-24 Neil Williams <linux@codehelp.co.uk>
* src/qof-main.c : Fix INSERT handling.
2006-03-24 Neil Williams <linux@codehelp.co.uk>
* src/Makefile.am : removing unused linkages
* src/bridge.c : Standardise on gint and gchar
* src/bridge.h : Fix bridge definitions to use
allocated value instead of used.
* src/pilot-qof.c : Return to bridge version and ensure
category names are blank. Fix upload handler.
* src/pilot-todo.c :
* src/qof-address.c :
* src/qof-datebook.c :
* src/qof-expenses.c : Use fixed bridging code. Avoid an invalid numeric.
* pilot-todo.c : Enable upload of todo records.
* doc/xml/pilot-qof.xml : remove sterling symbol to prevent
lintian error in Debian.
* debian/control : remove unused linkages.
* src/Makefile.am : removing unnecessary dependency linkages.
2006-03-23 Neil Williams <linux@codehelp.co.uk>
* configure.ac : build manpages only in CVS
* src/qof-expenses.c :
* src/qof-datebook.c :
* src/qof-address.c :
* src/pilot-todo.c : Standardise on gint and gchar
2006-03-07 Neil Williams <linux@codehelp.co.uk>
* doc/xml/pilot-qof.xml : documenting how to
localise XSL
* xsl/pilot-qof-std.xsl :
* xsl/pilot-qof-address-vcard1.xsl :
* xsl/pilot-qof-invoice-xhtml.xsl :
* xsl/Makefile.am :
using a standard library for pilot-qof XSL
2006-02-28 Neil Williams <linux@codehelp.co.uk>
* po/POTFILES.in : leave stump of POTFILES.in
to clean up the build messages.
* src/qof-expenses.c :
* src/qof-datebook.c :
* src/qof-address.c :
* src/pilot-todo.c : Create a copy of category strings
for each database when unpacking app info.
* all source files : Standardise on gint and gchar.
2006-02-19 Neil Williams <linux@codehelp.co.uk>
* xsl/ : Sample XSL directory, including a
demo invoice XSL stylesheet and supporting
XSL templates from XSLT Standard Library.
http://xsltsl.sourceforge.net/
* Makefile.am : Fix make pilot-qof.pot rule.
* configure.ac : Add new languages.
* doc/xml/Makefile.am : Fix recursive error.
* src/qof-main.c : Fix sql_file bug. Tweak translatable
strings.
2006-01-22 Neil Williams <linux@codehelp.co.uk>
* src/qof-main.c : Fixing sql-file error.
* doc/xml/pilot-qof.xml : Remove from KNOWN_BUGS
2006-01-03 Neil Williams <linux@codehelp.co.uk>
* configure.ac : Improve QOF detection.
* fink/pilot-qof.info.in : Fix for OSX. Make sure
manpages are installed and add conflict against pilot-link
0.12.
* rpm/pilotqof.spec : Fix for FC3. Reconcile dependencies
and add conflict with pilot-link 0.12.
* src/qof-datebook.h :
* src/qof-datebook.c : Add calculated 'duration' field.
* website/index.html : Update info for 0.0.7 release.
2005-12-30 Neil Williams <linux@codehelp.co.uk>
* src/pilot-qof.c : Vendor expense records need to
be separate from city expense records in invoice generation,
replaced invoice option with invoice-city and invoice-vendor.
* src/pilot-qof.h : Added new boolean for new option.
* src/qof-main.c : Remove unneeded variable.
* src/qof-address.c :
* src/qof-address.h : Publicise parameter names.
* doc/xml/pilot-qof.xml : Document new functions.
2005-12-28 Neil Williams <linux@codehelp.co.uk>
* autogen2.sh :
* autogen.sh : replacing autogen.sh with simplified version
* README.cvs : updating for branch
* configure.ac : fix bad quoting
2005-12-24 Neil Williams <linux@codehelp.co.uk>
* configure.ac : Use --silence-errors in pkg-config,
remove unnecessary macro definition.
* README : Add some content from the manpage.
2005-12-21 Neil Williams <linux@codehelp.co.uk>
* src/Makefile.am : ensure bridge is distributed in
the tarball
2005-12-18 Neil Williams <linux.codehelp.co.uk>
* configure.in : Add extra compile warnings.
* src/qof-main.h : standardise with other qof-main
* src/pilot-qof.c : Prevent mix of declaration and
code in QOF_OP_VARS
2005-12-13 Neil Williams <linux@codehelp.co.uk>
* doc/xml/pilot-qof.xml : Updated FSF address,
removed -q option as this will be the 0.0.x series
manpage. Updated known bugs (removed USB bug specific
to 0.1.x series via pilot-link 0.12.0-pre4.)
* doc/xml/pilot-qof1.xml : New file for 0.1.x series.
* src/bridge.c :
* src/bridge.h : Updated FSF address.
2005-12-13 Neil Williams <linux@codehelp.co.uk>
Bridging 0.11.8 to 0.12
* bridge.h :
* bridge.c : Conditional code.
* plu_args.c : Removed
* userland.c : Removed.
* pi_userland.h : Removed.
* configure.ac : Downgrade to 0.11.8 and enable
compatibility mode to activate bridge.c
* pilot-qof.c : Handle bridging code. Prepare
to use QOF 0.6.1.
2005-12-07 Neil Williams <linux@codehelp.co.uk>
* doc/xml/pilot-qof.xml : repeat appointment advice.
* configure.ac : Revert to 0.0.7 for next release.
* debian/watch : new debian file.
* debian/control : adding homepage.
* debian/changelog : reverting to 0.0.7 for next release
Transient repeat events:
* src/pilot-qof.c :
* src/pilot-qof.h :
* src/qof-datebook.c :
* src/qof-datebook.h :
2005-11-29 Neil Williams <linux@codehelp.co.uk>
* src/pilot-qof.c : Use CategoryAppInfo
within the pilot-qof context to locate
and handle categories.
* src/pilot-qof.h : Standardising values
passed to dlp calls to explain purpose and
future requirements.
* src/pilot-todo.c : Fix category handling.
* src/qof-address.c :
* src/qof-datebook.c :
* src/qof-expenses.c :
2005-11-29 Neil Williams <linux@codehelp.co.uk>
* TODO : Updated.
* configure.ac : Prepare for 0.1.0 release.
* debian/changelog : Prepare for 0.1.0 release.
* doc/doxygen_main_page.c : Remove cvs build
instructions and point to packages.
* doc/xml/pilot-qof.xml : --upload option for -a,
specify known bugs and highlight translation issues
for repeat events in datebook.
* src/pilot-qof.c : Fix pack functions for --upload,
print usage for more errors, reduce debug code,
prevent double free in pi_buffer.
* src/pilot-todo.c : Fix licence, fix pack routine.
* src/pilot-todo.h : Fix licence, use debug module
name for all objects.
* src/plu_args.c : pilot-link update and change
FSF address.
* src/qof-address.c : Fix pack routine.
* src/qof-address.h : Remove unneeded \todo and C++
markers.
* src/qof-datebook.c : Fix pack routine, prevent
seg fault if note is NULL, fix licence.
* src/qof-datebook.h : Fix licence, remove done \todo
* src/qof-expenses.c : Fix gnc_numeric rendering and
fix pack routine.
* src/qof-expenses.h : warn about pack workaround.
* src/qof-main.c : Correct initliasing of results
GList in run_query and reduce debug code.
* src/qof-main.h : Typos.
* src/userland.c : update to pilot-link pre5.
2005-11-27 Neil Williams <linux@codehelp.co.uk>
* src/pilot-qof.c : Fix pack routines and
reduce amount of debugging output.
* src/pilot-todo.c : Fix pack_Todo func
* src/pilot-todo.h : Licence typo.
* src/qof-address.c : Use context pi_buf
* src/qof-address.h : Licence typo.
* src/qof-datebook.c : Use context pi_buf
instead of local.
* src/qof-datebook.h : Licence typo.
* src/qof-expenses.c : Use context pi_buf
instead of local.
* src/qof-expenses.h : Licence typo.
* src/qof-main.c : Reduce debugging output.
2005-11-27 Neil Williams <linux@codehelp.co.uk>
Standardising qof-main.c and .h
* src/pilot-qof.h :
* src/pilot-qof.c :
* src/qof-main.h :
* src/qof-main.c :
Fixing FSF address
* src/qof-address.c :
* src/qof-address.h :
* src/qof-datebook.c :
* src/qof-datebook.h :
* src/qof-expenses.c :
* src/qof-expenses.h :
* src/plu_args.c :
* src/pi-userland.h :
* src/userland.c :
* debian/control : Fix build dependency list
2005-10-24 Neil Williams <linux@codehelp.co.uk>
update for 0.0.6 release
* NEWS :
* README :
* README.cvs :
* TODO :
* src/README :
* doc/xml/pilot-qof.xml :
* configure.ac : Reinstate GOBJECT_LIBS because
Fedora Core 3 will not build without them.
* src/Makefile.am : FC3 fix.
2005-09-27 Neil Williams <linux@codehelp.co.uk>
* configure.ac: Unneeded GOBJECT_LIBS check removed.
* doc/doxygen_main_page.c: Update
* doc/xml/pilot-qof.xml: New compress and debug options
added to manpage. Tidy up of QOF page.
* po/en_GB.po: Fix Report-Msgid-Bugs-To field.
* rpm/pilotqof.spec: sample.
* src/Makefile.am: Remove GOBJECT_LIBS
* src/pilot-qof.c: New log_module support, new compress
option support, debug option support.
* src/pilot-qof.h: log_modules support.
* src/pilot-todo.c: log_modules support.
* src/pilot-todo.h: log_modules support.
* src/qof-address.c: log_modules support.
* src/qof-datebook.c: log_modules support.
* src/qof-expenses.c: log_modules support.
* src/qof-main.h: Backend compression support.
* website/index.html: update.
2005-09-17 Neil Williams <linux@codehelp.co.uk>
* configure.ac: Bump version to 0.0.5. Check for
getline. Fix typo.
* debian/.cvsignore: Add debian files only to CVS.
These files are not distributed.
* debian/changelog: Packaging changelog.
* debian/compat:
* debian/control:
* debian/copyright:
* debian/docs:
* debian/pilot-qof.dirs:
* debian/pilot-qof.install:
* debian/rules:
* doc/xml/pilot-qof.xml: Adding more examples.
* po/en_GB.po: updated with new strings.
* src/Makefile.am: Removing the remaining static
userland library - building into executable.
* src/pilot-qof.c: Fixing sql-file handling.
Add debug handler. Allowing new files to be
created upon save. Fixing bad option handling.
* src/pilot-qof.h: We don't need C++.
* src/pilot-todo.c: Converting to static functions.
* src/pilot-todo.h: Converting to static functions.
* src/qof-address.c: Converting to static functions.
* src/qof-address.h: Converting to static functions.
* src/qof-datebook.c: Converting to static functions.
* src/qof-datebook.h: Converting to static functions.
* src/qof-expenses.c: Converting to static functions.
* src/qof-expenses.h: Converting to static functions.
* src/qof-main.c: Reformatting error messages.
* src/qof-main.h: Using QOF MAX_DATE_LENGTH.
2005-09-16 Neil Williams <linux@codehelp.co.uk>
* .cvsignore: tweak.
* README.cvs: Docs.
* TODO: need a dependency on libpisync.
* autogen.sh: Use AM_GLIB_GNU_GETTEXT
* configure.ac: Lintian changes and adding
GModule libs. Correcting typo in manpage
generation and en_GB translation. Enabling
extra errors and treating warnings as errors.
* doc/Makefile.am: Distribute the xml but don't build.
* doc/man/.cvsignore: Renamed man pages.
* doc/man/Makefile.am: Renamed man pages.
* doc/xml/Makefile.am: Make conditional XML build
work cleanly.
* doc/xml/docbook.xsl.in: Fix manpage validity.
* doc/xml/pilot-qof.xml: Change to variablelist
and varlistentry for conformity.
* po/en_GB.po: Add dummy translation.
* src/Makefile.am: Add locale dir, remove
libpilotqof.so, build into executable instead.
* src/pilot-qof.c: Version output and gettext.
* src/plu_args.c: Remove unused code.
* src/qof-datebook.c: Typo and missing header.
Correct date reading.
* src/qof-main.h: Standardising headers.
2005-09-12 Neil Williams <linux@codehelp.co.uk>
* configure.ac: Check for stpcpy, use GModule,
add eng_GB translation.
* src/Makefile.am: Gettext and GModule.
* src/pilot-qof.c: Translations and fixing --version
command.
* src/plu_args.c: Remove deprecated pilot-link code.
* src/qof-datebook.c: Fix day string match logic.
* src/qof-main.h: Allow strptime and atoi in all files.
2005-07-25 Neil Williams <linux@codehelp.co.uk>
* .cvsignore:
* ChangeLog:
* Makefile.am: i18n with po
* NEWS: Updated for manpage additions.
* autogen.sh: Running intltoolize.
* configure.ac: Fixing MacOSX libtool bug and i18n
* doc/man/.cvsignore:
* doc/xml/Makefile.am: Tweak
* doc/xml/catalog.xml.in: Tweak
* make-potfiles.in: i18n
* po/.cvsignore:
* po/Makevars: i18n
* po/POTFILES.in:
* src/pilot-qof.c: Fixing double free bug when
calling qof_query_clear.
* src/pilot-todo.c: Fixing ToDoRegister bug.
* src/qof-main.c: i18n of error messages.
* src/qof-main.h: GETTEXT handling.
2005-07-05 Neil Williams <linux@codehelp.co.uk>
* NEWS
* README
* TODO: pre-release updates.
* configure.ac: Improved QOF detection and
manpage automation using xsltproc.
* doc/Makefile.am: manpage automation.
* doc/doxygen.cfg.in: Expanding new macros.
* doc/man/Makefile.am: change generation method.
* doc/xml/Makefile.am: build manpages using xsltproc.
* doc/xml/catalog.xml.in: Locate system stylesheets.
* doc/xml/docbook.xsl.in: Customised stylesheet.
* doc/xml/pilot-qof.docbook: Manpage docbook.
* doc/xml/pilot-qof.xml: Manpages.
* src/Makefile.am: Improved QOF handling.
* src/README: popt usage.
* src/pilot-qof.c: New command, query improvements.
* src/pilot-qof.h: Documenting new macros.
* src/plu_args.c: tweak.
* src/qof-datebook.c: New macros.
* src/qof-datebook.h: New macros.
* src/qof-main.c: Error handling.
* src/qof-main.h: Documentation.
* website/copying.txt: GNU FDL.
* website/index.html:
* website/pilotqof.css: website added in.
2005-04-26 Neil Williams <linux@codehelp.co.uk>
* configure.ac: Minor Version increment.
* doc/doxygen.cfg.in: Doxygen fix.
* src/pilot-qof.c: Bug fix. Don't use size_t
and then test for < 0 !
* src/pilot-todo.h: Making the description
consistent across databases.
* src/qof-datebook.c: Sensible parameter
handling, enums as strings and extra booleans.
Sensible handling of repeat parameters.
* src/qof-datebook.h: Enum as string macro.
* src/qof-main.c: removing debug code.
* src/qof-main.h: Documentation.
2005-04-19 Neil Williams <linux@codehelp.co.uk>
* doc/doxygen_main_page.c: Title page.
* src/pilot-qof.c: Regular expressions to
screen out unsupported SQL commands.
Adding one function to moderate queries.
Adding error handling.
* src/pilot-qof.h: Documenting SQL
examples.
* src/pilot-todo.c:
* src/pilot-todo.h:
* src/qof-address.c:
* src/qof-address.h:
* src/qof-datebook.c:
* src/qof-datebook.h:
* src/qof-expenses.c:
* src/qof-expenses.h:
Handling categories during unpacking.
* src/qof-main.c: Unpacking ApplicationInfo
Added error handling.
* src/qof-main.h: Moving documentation to
the doxygen main page.
2005-04-17 Neil Williams <linux@codehelp.co.uk>
* src/pilot-qof.c: Removing doxygen to .h
and building date range into QofQuery.
* src/pilot-qof.h: New file containing
the documentation from .c
* src/pilot-todo.h: Typo fix.
* src/qof-main.c: Error handler added.
* src/qof-main.h: Declaration for error
handler.
2005-04-03 Neil Williams <linux@codehelp.co.uk>
* pilot-qof.c:
* pilot-todo.c:
* pilot-todo.h:
* qof-address.c:
* qof-address.h:
* qof-datebook.c:
* qof-datebook.h:
* qof-expenses.c:
* qof-expenses.h:
* qof-main.c:
* qof-main.h: Initial creation of a separate
pilot-qof project.
|