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
|
2010-07-30 Morten Welinder <terra@gnome.org>
* Release 1.10.8
2010-06-28 Morten Welinder <terra@gnome.org>
* Release 1.10.7
2010-06-16 Morten Welinder <terra@gnome.org>
* Release 1.10.6
2010-05-30 Morten Welinder <terra@gnome.org>
* Release 1.10.5
2010-05-20 Morten Welinder <terra@gnome.org>
* Release 1.10.4
2010-05-07 Morten Welinder <terra@gnome.org>
* Release 1.10.3
2010-04-16 Morten Welinder <terra@gnome.org>
* Release 1.10.2
2010-03-08 Morten Welinder <terra@gnome.org>
* Release 1.10.1
2010-02-13 Morten Welinder <terra@gnome.org>
* Release 1.10.0
2010-01-19 Morten Welinder <terra@gnome.org>
* Release 1.9.18
2009-12-15 Morten Welinder <terra@gnome.org>
* Release 1.9.17
2009-11-29 Morten Welinder <terra@gnome.org>
* Release 1.9.16
2009-11-01 Morten Welinder <terra@gnome.org>
* Release 1.9.15
2009-10-11 Morten Welinder <terra@gnome.org>
* Release 1.9.14
2009-09-21 Jean Brefort <jean.brefort@normalesup.org>
* plugin.xml.in: translate ui labels. [#159806]
2009-09-20 Morten Welinder <terra@gnome.org>
* Release 1.9.13
2009-09-05 Morten Welinder <terra@gnome.org>
* Release 1.9.12
2009-08-30 Morten Welinder <terra@gnome.org>
* Release 1.9.11
2009-08-15 Morten Welinder <terra@gnome.org>
* Release 1.9.10
2009-06-20 Morten Welinder <terra@gnome.org>
* Release 1.9.9
2009-05-23 Morten Welinder <terra@gnome.org>
* Release 1.9.8
2009-05-06 Morten Welinder <terra@gnome.org>
* Release 1.9.7
2009-04-25 Morten Welinder <terra@gnome.org>
* Release 1.9.6
2009-03-22 Morten Welinder <terra@gnome.org>
* Release 1.9.5
2009-02-22 Morten Welinder <terra@gnome.org>
* Release 1.9.4
2009-01-29 Jon K Hellan <hellan@acm.org>
* gnm-py-interpreter.c (gnm_py_interpreter_new): Work around
security vulnerability in Python by making argv start with
"/dev/null". #569648.
2008-12-30 Jean Brefort <jean.brefort@normalesup.org>
* python-loader.c: (gplp_func_file_probe): add a format string to
a g_warning call.
2008-10-18 Jody Goldberg <jody@gnome.org>
* Release 1.9.3
2008-08-29 Jody Goldberg <jody@gnome.org>
* Release 1.9.2
2008-06-25 Jody Goldberg <jody@gnome.org>
* Release 1.9.1
2008-05-26 Jody Goldberg <jody@gnome.org>
* python-loader.c : remove NO_IMPORT_PYGOBJECT. We need one of them.
2008-05-04 Jody Goldberg <jody@gnome.org>
* Release 1.9.0
2008-03-02 Jody Goldberg <jody@gnome.org>
From David Reiser:
* gnm-python.c : Add NO_IMPORT_PYGOBJECT. #510059
* py-gnumeric.c : ditto.
* python-loader.c : ditto.
2007-12-21 Jody Goldberg <jody@gnome.org>
* Release 1.8.0
2007-12-03 Jody Goldberg <jody@gnome.org>
* Release 1.7.91
2007-11-19 Jody Goldberg <jody@gnome.org>
* Release 1.7.90
2007-11-04 Morten Welinder <terra@gnome.org>
* Release 1.7.14
2007-10-21 Morten Welinder <terra@gnome.org>
* Release 1.7.13
2007-09-09 Jon K Hellan <hellan@acm.org>
* python-loader.c (gplp_func_file_probe): Fix potential crash.
(gplp_load_service_file_opener): Fix crash. [#461845]
2007-09-04 Jody Goldberg <jody@gnome.org>
* Release 1.7.12
2007-07-24 Jody Goldberg <jody@gnome.org>
* Release 1.7.11
2007-07-18 Jody Goldberg <jody@gnome.org>
Patch from Nils Kanning
* python-loader.c (python_function_get_gnumeric_help) : support the
new help api. [#412804]
2007-05-03 Morten Welinder <terra@gnome.org>
* Release 1.7.10
2007-04-21 Morten Welinder <terra@gnome.org>
* Release 1.7.9
2007-03-04 Morten Welinder <terra@gnome.org>
* Release 1.7.8
2007-03-02 Jody Goldberg <jody@gnome.org>
* python-loader.c (gplp_load_base) : compiler warning.
2007-02-16 Morten Welinder <terra@gnome.org>
* Release 1.7.7
2006-12-17 Jody Goldberg <jody@gnome.org>
* Release 1.7.6
2006-12-04 Jody Goldberg <jody@gnome.org>
* Release 1.7.5
2006-11-20 Jody Goldberg <jody@gnome.org>
* Release 1.7.4
2006-11-19 Morten Welinder <terra@gnome.org>
* Release 1.7.3
2006-10-22 Jon K Hellan <hellan@acm.org>
* py-interpreter-selector.c (cb_selector_changed,
cb_destroyed_interpreter): Check that tree model iterator is
valid.
2006-10-17 Jody Goldberg <jody@gnome.org>
* Release 1.7.2
2006-10-02 Jody Goldberg <jody@gnome.org>
* Release 1.7.1
2006-05-25 Jean Brefort <jean.brefort@normalesup.org>
* plugins/python-loader/gnm-py-interpreter.c: replaced gi18n.h by
gi18n-lib.h.
* plugins/python-loader/gnm-python.c: ditto.
* plugins/python-loader/py-console.c: ditto.
* plugins/python-loader/py-gnumeric.c: ditto.
* plugins/python-loader/python-loader.c: ditto.
2006-05-08 Jody Goldberg <jody@gnome.org>
* Release 1.7.0
2006-04-01 Jean Brefort <jean.brefort@normalesup.org>
* py-interpreter-selector.c: add missing header.
2006-03-31 Jody Goldberg <jody@gnome.org>
* py-gnumeric.c (py_initgnumeric) : remove deleted std error
2005-11-14 Jody Goldberg <jody@gnome.org>
* Release 1.6.1
2005-10-20 Jody Goldberg <jody@gnome.org>
Noted by Lukasz Stelmach <steelman@post.pl>
* py-gnumeric.c (py_RangeRef_object_getattr) : actually return the
end.
2005-10-10 Jody Goldberg <jody@gnome.org>
* Release 1.6.0
2005-09-08 Jody Goldberg <jody@gnome.org>
* Release 1.5.90
2005-08-28 Morten Welinder <terra@gnome.org>
* Release 1.5.5
2005-08-28 Morten Welinder <terra@gnome.org>
* Release 1.5.4
2005-08-15 Morten Welinder <terra@gnome.org>
* Release 1.5.3
2005-06-25 Jon K Hellan <hellan@acm.org>
* py-gnumeric.c (py_Cell_set_text_method): Fix redisplay problem.
2005-06-13 Jody Goldberg <jody@gnome.org>
* Release 1.5.2
2005-05-10 Jody Goldberg <jody@gnome.org>
* Release 1.5.1
2005-04-18 Stepan Kasal <kasal@ucw.cz>
* python-loader.c (gplp_func_desc_load): Don't try to set up help
until the code is adapted for struct GnmFuncHelp.
2005-03-23 Morten Welinder <terra@gnome.org>
* python-loader.c (gnumeric_fopen_error_info): Use g_fopen, not
fopen.
2005-03-04 Jody Goldberg <jody@gnome.org>
* boot.c (go_plugin_init) : register types dynamicly using the plugin
we pass in
2005-02-08 Jody Goldberg <jody@gnome.org>
* Release 1.5.0
2005-01-17 Jody Goldberg <jody@gnome.org>
* Release 1.4.2
2004-12-09 Jody Goldberg <jody@gnome.org>
* Release 1.4.1
2004-11-28 Jody Goldberg <jody@gnome.org>
* Release 1.4.0
2004-11-07 Jody Goldberg <jody@gnome.org>
* Release 1.3.93
2004-10-31 Jody Goldberg <jody@gnome.org>
* Release 1.3.92
2004-11-01 Jon K Hellan <hellan@acm.org>
* python-loader.c (gplp_load_service_ui): Rename
<plugin_name>_ui_verbs to <plugin_name>_ui_actions.
2004-10-29 Jon K Hellan <hellan@acm.org>
* python-loader.c (gplp_func_exec_action): Fix order of arguments.
2004-10-29 Jon K Hellan <hellan@acm.org>
* plugin.xml.in: Enable UI service.
* ui-console-menu.xml: Adapt to GtkAction
2004-10-05 Jody Goldberg <jody@gnome.org>
* Release 1.3.91
2004-09-08 Jody Goldberg <jody@gnome.org>
* Release 1.3.90
2004-08-30 Jon K Hellan <hellan@acm.org>
* py-gnumeric.c (py_CellRef_object_getattr): Implement col, row,
sheet, col_relative, row_relative attributes.
(py_RangeRef_get_tuple_method): New. Return a Python tuple of
CellRefs.
(py_RangeRef_object_getattr): Implement start and end attributes.
CellRef, RangeRef, Cell: Note that lifecycle is broken.
2004-08-29 Jody Goldberg <jody@gnome.org>
* Release 1.3.2
2004-08-30 Jon K Hellan <hellan@acm.org>
* py-gnumeric.c (py_Sheet_object_dealloc): Unref sheet.
(py_new_Sheet_object): Ref sheet.
(py_Workbook_gui_add): Return gui.
(py_Workbook_object_dealloc): Unref workbook.
(py_new_Workbook_object): Ref workbook.
(py_Gui_object_dealloc): Unref gui.
(py_new_Gui_object): Ref gui.
(py_GnmPlugin_object_dealloc): Unref pinfo.
(py_new_GnmPlugin_object): Ref pinfo.
(py_gnumeric_MStyle_method): Unref mstyle.
(py_gnumeric_workbook_new): Unref workbook.
2004-08-27 Jon K Hellan <hellan@acm.org>
* gnm-python.c, gnm-py-interpreter.c, py-gnumeric.c,
python-loader.c: Move Python.h include just after gnumeric-config,
to shut up redefinition warnings. Working around Python project
bug 107450 at sourceforge.
2004-07-19 Jody Goldberg <jody@gnome.org>
* Release 1.3.1
2004-05-26 Jean Brefort <jean.brefort@ac-dijon.fr>
* py-interpreter-selector.c: (cb_selector_changed),
(find_item_with_interpreter), (menu_add_item_with_interpreter),
(cb_created_interpreter), (cb_destroyed_interpreter),
(gnm_py_interpreter_selector_init),
(gnm_py_interpreter_selector_new): replaced GtkOptionMenu by GtkComboBox
2004-03-28 Jody Goldberg <jody@gnome.org>
* Release 1.3.0
2004-01-05 Jon K Hellan <hellan@acm.org>
* py-gnumeric.c (py_Boolean_object_dealloc,
py_CellPos_object_dealloc, py_Range_object_dealloc,
py_CellRef_object_dealloc, py_RangeRef_object_dealloc,
py_MStyle_object_dealloc, py_Cell_object_dealloc,
py_Sheet_object_dealloc, py_Workbook_object_dealloc,
py_Gui_object_dealloc, py_GnumericFunc_object_dealloc,
py_GnumericFuncDict_object_dealloc, py_GnmPlugin_object_dealloc):
Call PyObject_Del instead of free to avoid segfault.
(py_Gui_object_getattr, py_Gui_object_dealloc): Fix type of self
argument from py_Workbook_object to py_Gui_object.
2003-12-23 Jody Goldberg <jody@gnome.org>
* Release 1.2.3
2003-11-26 Jody Goldberg <jody@gnome.org>
* Release 1.2.2
2003-10-08 Jody Goldberg <jody@gnome.org>
* Release 1.2.1
2003-09-15 Jody Goldberg <jody@gnome.org>
* Release 1.2.0
2003-09-10 Jody Goldberg <jody@gnome.org>
* Release 1.1.90
2003-08-21 Jody Goldberg <jody@gnome.org>
* Release 1.1.20
2003-08-04 Jon K Hellan <hellan@acm.org>
* python-loader.c: Rename all
gnumeric_plugin_loader_python_blah_blah functions to
gplp_blah_blah.
(gplp_load_base): Check for errors from gnm_python_object_get.
(gplp_loader_data_opener_free, gplp_loader_data_saver_free,
gplp_loader_data_fngroup_free, gplp_loader_data_ui_free): New
functions to free loader data.
(gplp_load_service_file_opener, gplp_load_service_file_saver)
(gplp_load_service_function_group): Ref PyObjects in loader data,
and replace g_object_set_data with g_object_set_data_full to make
sure that they are unrefed when loader data is destroyed.
(gplp_func_exec_verb): New function. Invoke a python function when
a verb is executed.
(gplp_load_service_ui): New function. Load UI service.
(gplp_func_file_probe, gplp_func_file_open, gplp_func_file_save):
Remove #ifndef WITH_PYGTK branch. Plugin now depends on Pygtk.
* py-interpreter-selector.c (gnm_py_interpreter_selector_init):
Move meat to gnm_py_interpreter_selector_new so that errors can be
reported.
(gnm_py_interpreter_selector_finalize): Check that py_object !=
NULL.
(gnm_py_interpreter_selector_new): Check for errors from
gnm_python_object_get and report them.
* py-interpreter-selector.[ch] (gnm_py_interpreter_selector_new):
Report errors.
* py-gnumeric.h (py_new_Gui_object): New function. Export it.
* py-gnumeric.c (py_CellPos_object_str): New function. Wraps
cellpos_as_string. Returns e.g. B7.
(py_Cell_get_entered_text_method): Fix typo.
(py_Workbook_gui_add): New function. Add a GUI to workbook.
(py_Workbook_object_getattr): Add gui_add method.
(struct _py_Gui_object, py_Gui_get_workbook, py_Gui_get_window,
py_Gui_object_getattr, py_Gui_object_dealloc, py_new_Gui_object,
py_Gui_object_type): New struct/functions/variable to wrap
WorkbookControlGUI.
(py_gnumeric_workbook_new): Fix typo.
(py_initgnumeric): Set plugin_info to None when C
counterpart is NULL. Add Gui object type.
* py-console.c (show_python_console): Report errors from
gnm_py_interpreter_selector_new.
* gnm-python.[ch] (gnm_python_object_get): Report errors.
* gnm-python.c (gnm_init_pygobject): Resurrect. This time ask for
the gtk2 version of gobject and report errors.
(gnm_python_object_get): Remove Python 1.5 compatibility code. Call
gnm_init_pygobject.
2003-07-26 Jon K Hellan <hellan@acm.org>
* py-gnumeric.c (py_Workbook_object_getattr): Reverse accidental
commit.
2003-07-25 Jon K Hellan <hellan@acm.org>
* py-gnumeric.[ch]: Make most stuff static.
* py-gnumeric.c: Rename convert_python_exception_to_gnumeric_value
py_exc_to_gnm_value, convert_python_exception_to_string to
py_exc_to_string, convert_python_to_gnumeric_value, to
py_obj_to_gnm_value, convert_gnumeric_value_to_python to
gnm_value_to_py_obj.
(call_python_function): Use renamed py_exc_to_gnm_value.
(py_exc_to_gnm_value): Kill duplicated implementation and make it
a wrapper around py_exc_to_string.
(python_call_gnumeric_function, call_python_function,
py_obj_to_gnm_value): Use renamed py_obj_to_gnm_value.
(python_call_gnumeric_function, call_python_function,
gnm_value_to_py_obj, py_Cell_get_value_method): Use renamed
gnm_value_to_py_obj.
(python_call_gnumeric_function): Make static.
* python-loader.c (gnumeric_plugin_loader_python_func_file_probe,
gnumeric_plugin_loader_python_func_file_open,
gnumeric_plugin_loader_python_func_file_save): Use renamed
py_exc_to_string.
* py-console.c (cb_key_event): New event handler: Close window on
Ctrl+W.
(show_python_console): Connect it.
* gnm-py-interpreter.c (gnm_py_interpreter_run_string): Check for
errors and clear Python exceptions when necessary.
2003-07-23 Jon K Hellan <hellan@acm.org>
* py-gnumeric.c (EVAL_POS): Recode as new function get_eval_pos
and handle case when Gnumeric.Gnumeric_eval_pos has not yet been
set.
(python_call_gnumeric_function, call_python_function): Use
get_eval_pos.
* gnm-py-interpreter.c (read_file): Remove.
2003-07-23 Jon K Hellan <hellan@acm.org>
* py-console.c (app_cline_entered): Don't interpret empty string.
(app_run_string): New. Factored out of app_cline_entered.
(show_python_console): Raise window if it already exists.
* gnm-py-interpreter.c (struct _GnmPyInterpreter): Add
stringio_class member.
(gnm_py_interpreter_init): Initialize stringio_class member.
(gnm_py_interpreter_finalize): Unref stringio_class member.
(run_print_string): Use PyFile_WriteObject instead of
PyObject_Print.
(gnm_py_interpreter_run_string): Use Python StringIO class instead
of temp files. It's tidier, and Python would try to write to the
temp files after they were closed.
2003-07-22 Morten Welinder <terra@gnome.org>
* gnm-py-interpreter.c (run_print_string): Add braces around
Py_DECREF call. (Why don't the python guys code macros like
everyone else do?)
2003-07-21 Jon K Hellan <hellan@acm.org>
* py-gnumeric.c (py_initgnumeric): Initialize PyTypeObjects
properly.
* boot.c: Fix typo.
2003-07-10 Jon K Hellan <hellan@acm.org>
* py-gnumeric.c (py_gnumeric_workbook_new): New.
Implements Gnumeric.workbook_new()
* py-console.c (show_python_console): Make console window
resizable.
2003-07-09 Jody Goldberg <jody@gnome.org>
* py-gnumeric.c (py_Workbook_sheet_add_method) : new.
2003-06-20 Jon K Hellan <hellan@acm.org>
* py-interpreter-selector.c (menu_find_item_with_interpreter):
return NULL, not FALSE if no interpreter found.
(gnm_py_interpreter_selector_new): Replace gtk_type_new with
g_object_new.
2003-06-15 Jon K Hellan <hellan@acm.org>
* gnm-py-interpreter.c (run_print_string): New. Run a python
string, and print result.
(gnm_py_interpreter_run_string): Use it.
* py-console.c (struct app): Add text_view and text_end.
(app_text_print): Always keep end of text visible.
(show_python_console): Create marker at end of text. Set focus to
command line.
* python-loader.c (gnumeric_plugin_loader_python_func_file_probe)
(gnumeric_plugin_loader_python_func_file_open)
(gnumeric_plugin_loader_python_func_file_save): Unref - wrapping
the gsf stream as a Python object added a reference.
* gnm-python.c (gnm_init_pygobject): Remove.
(gnm_python_object_get): Don't call gnm_init_pygobject. pygtk.gobject
based plugins do this for us, and if we aren't using any of those,
it isn't necessary.
2003-06-07 Jody Goldberg <jody@gnome.org>
* Release 1.1.19
2003-06-07 Jody Goldberg <jody@gnome.org>
* Release 1.1.18
2003-06-05 Jon K Hellan <hellan@acm.org>
* py-gnumeric.c (py_initgnumeric): Fix typo. Should be
"GnumericErrorVALUE", not "GnumericErrorVALUEL".
2003-05-11 Jody Goldberg <jody@gnome.org>
* Release 1.1.17
2003-03-14 Jody Goldberg <jody@gnome.org>
* gnm-py-interpreter.c (gnm_py_interpreter_new) : Use G_N_ELEMENTS.
2003-03-04 Jon K Hellan <hellan@acm.org>
* gnm-python.c (gnm_init_pygobject): New function. Try to import
gobject, and don't crash Gnumeric if it fails.
(gnm_python_object_get): Use gnm_init_pygobject.
* python-loader.c (gnumeric_plugin_loader_python_func_file_probe,
gnumeric_plugin_loader_python_func_file_open,
gnumeric_plugin_loader_python_func_file_save): Check that we
managed to import gobject before calling pygobject_new.
2003-01-28 Jody Goldberg <jody@gnome.org>
* Release 1.1.16
2002-12-31 Jody Goldberg <jody@gnome.org>
* Release 1.1.15
2002-12-30 Jon K Hellan <hellan@acm.org>
* py-interpreter-selector.c (menu_find_item_with_interpreter):
Make it return a value also when compiled with debugging turned off.
2002-12-22 Jody Goldberg <jody@gnome.org>
* Release 1.1.14
2002-12-22 Jody Goldberg <jody@gnome.org>
* Release 1.1.13
2002-11-29 Jody Goldberg <jody@gnome.org>
* python-loader.c (gnumeric_plugin_loader_python_func_file_save) :
const the view.
2002-11-28 Jon K Hellan <hellan@acm.org>
* python-loader.c (gnumeric_plugin_loader_python_func_file_save):
Port to gsf output.
2002-11-15 Jody Goldberg <jody@gnome.org>
* Release 1.1.12
2002-11-01 Jody Goldberg <jody@gnome.org>
* Release 1.1.11
2002-10-27 Jody Goldberg <jody@gnome.org>
* Release 1.1.10
2002-10-18 Morten Welinder <terra@diku.dk>
* gnm-py-interpreter.c (gnm_py_interpreter_compare): Make UTF-8
safe.
2002-10-11 Jon K Hellan <hellan@acm.org>
* gnm-python.c: Include stdlib.h for setenv
(gnm_python_object_get): Only call PyEval_InitThreads if
WITH_THREAD defined in Python headers.
2002-09-30 Jody Goldberg <jody@gnome.org>
* Release 1.1.9
2002-08-26 Jon K Hellan <hellan@acm.org>
* gnm-python.c (gnm_python_new_interpreter): Fix warning.
2002-08-25 Jody Goldberg <jody@gnome.org>
* Release 1.1.8
2002-08-21 Zbigniew Chyla <cyba@gnome.pl>
* gnm-python.c
Conditionally include "pygobject.h" (patch from Jon K)
2002-08-21 Zbigniew Chyla <cyba@gnome.pl>
* Makefile.am (gnumeric_plugin_python_loader_DATA):
Removed py-console-ui.xml
* py-console-ui.xml: Removed
* py-console.c (show_python_console): Don't use bonobo-ui, build
UI manually (fixes crash at exit)
* gnm-python.[ch]: Cleaner memory management - gnm_python_object_get()
always returns new reference, all functions get GnmPython argument.
* python-loader.c
Cleaned up includes
(gnumeric_plugin_loader_python_load_base,
gnumeric_plugin_loader_python_unload_base):
Don't keep the number of loaded plugins, GnmPython takes care of this.
ref/unref GnmPython object where needed
* py-interpreter-selector.c: Keep reference to GnmPython, not to the
default interpreter, unref on finalization
* gnm-py-interpreter.c: Cleaned up includes
* py-command-line.c (gnm_py_command_line_keypress):
Don't store empty lines in the history
* py-gnumeric.c: Don't use gnm_python*, only Python API
2002-08-20 Zbigniew Chyla <cyba@gnome.pl>
* py-console.c
#include <stdlib.h>
(app_cline_entered) s/stdout/stdout_str/, s/stderr/stderr_str/
(show_python_console): Connect to "interpreter_changed" with
g_signal_connect_object (using the window as an object), not
g_signal_connect.
2002-08-20 Zbigniew Chyla <cyba@gnome.pl>
* Makefile.am
(INCLUDES): Define PLUGIN_ID
(gnumeric_plugin_python_loader_DATA):
Set to "ui-console-menu.xml py-console-ui.xml"
(python_loader_la_SOURCES): Added python-loader.h, gnm-python.h,
gnm-python.c, gnm-py-interpreter.h, gnm-py-interpreter.c,
py-interpreter-selector.c, py-interpreter-selector.h,
py-command-line.c, py-command-line.h, py-console.c, py-console.h,
boot.c.
(EXTRA_DIST): Added $(gnumeric_plugin_python_loader_DATA)
* plugin.xml.in: Added Python console using "ui" service
* python-loader.c:
Adjusted to plugin-loader.h (conversion from GtkObject to GObject).
Register GnumericPluginLoader as dynamic class (using PLUGIN_CLASS)
to allow unloading the plugin.
(initialize_python_if_needed): Moved to gnum-python.c and renamed
(python_get_loader_type): Moved to boot.c
* py-gnumeric.h
(struct InterpreterInfo, create_python_interpreter,
destroy_python_interpreter, switch_python_interpreter_if_needed,
clear_python_error_if_needed): Moved to gnum-python.c and renamed.
* py-gnumeric.c
(create_python_interpreter, destroy_python_interpreter,
switch_python_interpreter_if_needed, clear_python_error_if_needed):
Moved to gnum-python.c and renamed.
(py_gnumeric_Workbooks_method): New.
(py_initgnumeric): Made non-static.
* python-loader.h, gnm-python.h, gnm-python.c, gnm-py-interpreter.h,
gnm-py-interpreter.c, py-interpreter-selector.c,
py-interpreter-selector.h, py-command-line.c, py-command-line.h,
py-console.c, py-console.h, boot.c: New
2002-08-12 Jody Goldberg <jody@gnome.org>
* Release 1.1.7
2002-08-09 Zbigniew Chyla <cyba@gnome.pl>
* python-loader.c
(gnumeric_plugin_loader_python_info_get_extra_info_list): Removed
2002-08-06 Zbigniew Chyla <cyba@gnome.pl>
* python-loader.c
(gnumeric_plugin_loader_python_func_get_full_function_info):
Always set *link and *unlink to NULL.
2002-08-04 Jon K Hellan <hellan@acm.org>
* python-loader.c (gnumeric_plugin_loader_python_func_file_open):
SWITCH_TO_PLUGIN (plugin_service_get_plugin (service)).
2002-07-27 Zbigniew Chyla <cyba@gnome.pl>
* python-loader.c (initialize_python_if_needed,
gnumeric_plugin_loader_python_set_attributes,
gnumeric_plugin_loader_python_load_base,
gnumeric_plugin_loader_python_unload_base,
gnumeric_plugin_loader_python_init,
gnumeric_plugin_loader_python_func_file_probe,
gnumeric_plugin_loader_python_func_file_open,
gnumeric_plugin_loader_python_load_service_file_opener,
gnumeric_plugin_loader_python_func_file_saver,
gnumeric_plugin_loader_python_load_service_file_saver,
call_python_function_args, call_python_function_nodes,
gnumeric_plugin_loader_python_func_get_full_function_info,
gnumeric_plugin_loader_python_load_service_function_group,
gnumeric_plugin_loader_python_unload_service_function_group,
python_get_loader_type):
Less assertions, GNM_INIT_RET_ERROR_INFO macro.
Use g_object data instead of plugin_service_get_loader_data.
"has_probe" field has been removed, always get a pointer to
*_file_probe pointer function if it's available.
Use g_object data instead of plugin_service_[gs]et_loader_data.
Set callbacks using plugin_service_get_cbs and PluginService*Callbacks
structs, instead of settings PluginService* fields directly (they are
private now).
2002-07-22 Zbigniew Chyla <cyba@gnome.pl>
* plugin.xml.in: Set loader type to "Gnumeric_Builtin:module".
* py-gnumeric.[ch]:
s/PluginInfo/GnmPlugin/
Adjusted to plugin.c
* python-loader.c:
(gnumeric_plugin_loader_python_set_attributes):
Adjusted to plugin-loader.c (read attributes from GHashTable).
s/..._load/..._load_base/
s/..._unload/..._unload_base/
Adjusted to plugin.c
2002-07-21 Jody Goldberg <jody@gnome.org>
* Release 1.1.6
2002-07-20 Jon K Hellan <hellan@acm.org>
* python-loader.c (BROKEN_PY_INITIALIZE): Test for this condition
is now autoconfiscated.
2002-06-20 Jon K Hellan <hellan@acm.org>
* python-loader.c: Include pygobject.h if Pygtk is installed.
(initialize_python_if_needed): Add init_pygobject if Pygtk is
installed.
(gnumeric_plugin_loader_python_func_file_probe): Replace file name
argument with GsfInput. Try to wrap GsfInput in Python object if
Pygtk is installed. Otherwise give up with warning.
(gnumeric_plugin_loader_python_func_file_open): Ditto.
* Makefile.am: Add PYGTK_CFLAGS to includes.
2002-05-29 Jody Goldberg <jody@gnome.org>
* Release 1.1.4
2002-05-06 Jon K Hellan <hellan@acm.org>
* python-loader.c (gnumeric_plugin_loader_python_set_attributes)
(gnumeric_plugin_loader_python_info_get_extra_info_list): Change
from GList to GSList, as the prototypes in
GnumericPluginLoaderClass already did a while ago. This silences
warnings.
2002-04-29 Jody Goldberg <jody@gnome.org>
* Release 1.1.3
2002-03-25 Jody Goldberg <jody@gnome.org>
* Release 1.1.2
2002-03-22 Jon K Hellan <hellan@acm.org>
* python-loader.c: Include expr-impl.h
2002-03-11 Jon K Hellan <hellan@acm.org>
* py-gnumeric.c (create_python_interpreter,
py_CellPos_get_tuple_method, py_CellPos_object_getattr,
py_Range_get_tuple_method, py_mstyle_set_font_bold_method,
py_mstyle_get_font_bold_method, py_mstyle_set_font_italic_method,
py_mstyle_get_font_italic_method,
py_mstyle_set_font_strike_method,
py_mstyle_get_font_strike_method, py_mstyle_set_font_size_method,
py_mstyle_get_font_size_method, py_mstyle_set_wrap_text_method,
py_mstyle_get_wrap_text_method, py_Cell_set_text_method,
py_Cell_get_mstyle_method, py_Cell_get_value_method,
py_Cell_get_value_as_string_method,
py_Cell_get_rendered_text_method, py_Cell_get_entered_text_method,
py_sheet_cell_fetch_method, py_sheet_style_get_method,
py_sheet_style_apply_range_method,
py_sheet_style_set_range_method, py_sheet_style_set_pos_method,
py_sheet_get_extent_method, py_sheet_rename_method,
py_sheet_get_name_unquoted_method, py_sheet_subscript,
py_Workbook_get_sheets_method, py_GnumericFuncDict_subscript,
py_PluginInfo_get_dir_name_method, py_PluginInfo_get_id_method,
py_PluginInfo_get_name_method,
py_PluginInfo_get_description_method, py_gnumeric_Boolean_method,
py_gnumeric_CellPos_method, py_gnumeric_Range_method,
py_gnumeric_MStyle_method, py_initgnumeric):
* python-loader.c (gnumeric_plugin_loader_python_load,
gnumeric_plugin_loader_python_func_file_probe,
gnumeric_plugin_loader_python_func_file_open,
gnumeric_plugin_loader_python_func_file_save,
(gnumeric_plugin_loader_python_func_get_full_function_info):
Python API doesn't expect arguments to be declared const. So cast
constants to non-const to silence warning.
(python_function_get_gnumeric_help) Return const gchar **.
(gnumeric_plugin_loader_python_func_get_full_function_info):
Change signature to match
PluginServiceFunctionGroup::plugin_func_get_full_function_info
prototype
2002-03-10 Jody Goldberg <jody@gnome.org>
* Release 1.1.1
2002-03-09 Jon K Hellan <hellan@acm.org>
* python-loader.c (gnumeric_plugin_loader_python_load): Add final
NULL to g_build_filename.
2002-03-07 Jon K Hellan <hellan@acm.org>
* python-loader.c (call_python_function_args,
call_python_function_nodes): Substitute ei->func_call->func for
ei->func_def and adapt pointer checks accordingly.
2002-02-18 Jody Goldberg <jody@gnome.org>
* Release 1.1.0
2002-01-23 Jody Goldberg <jody@gnome.org>
* python-loader.c (gnumeric_plugin_loader_python_load) : Use the new
glib2 style file tests.
2002-01-21 Jody Goldberg <jody@gnome.org>
* Release 1.0.3
2002-01-15 Jody Goldberg <jody@gnome.org>
* Release 1.0.2
2002-01-06 Jody Goldberg <jody@gnome.org>
* Release 1.0.1
2001-12-31 Jody Goldberg <jody@gnome.org>
* Release 1.0.0
2001-12-24 Jody Goldberg <jody@gnome.org>
* Release 0.99.1
2001-12-15 Jody Goldberg <jody@gnome.org>
* Release 0.99.0
2001-12-12 Jody Goldberg <jody@gnome.org>
* python-loader.c (call_python_function_nodes) : Use ExprList.
2001-11-05 Jody Goldberg <jgoldberg@home,com>
* Release 0.75
2001-10-29 Jody Goldberg <jgoldberg@home.com>
* Release 0.74
2001-10-29 Jody Goldberg <jgoldberg@home.com>
* Release 0.73
2001-10-23 Jody Goldberg <jgoldberg@home.com>
* python-loader.c (call_python_function_nodes) :
s/eval_expr/expr_eval/
2001-10-18 Jody Goldberg <jgoldberg@home.com>
* Release 0.72
2001-10-10 Jody Goldberg <jgoldberg@home.com>
* py-gnumeric.c (py_mstyle_merge_method) : delete.
(py_MStyle_object_methods) : remove mstyle_merge.
2001-10-07 Jody Goldberg <jgoldberg@home.com>
* Release 0.71
2001-09-25 Jon K Hellan <hellan@acm.org>
* .cvsignore: Add plugin.xml
2001-08-28 Morten Welinder <terra@diku.dk>
* python-loader.c (initialize_python_if_needed): Avoid segfaults
with buggy pythons.
2001-08-21 Zbigniew Chyla <cyba@gnome.pl>
* plugin.xml: Removed
* plugin.xml.in: Copied from plugin.xml, prepared for localization.
* Makefile.am: Use xml-i18n-tools to create plugin.xml (with
translations merged from .po file).
2001-08-20 Jody Goldberg <jgoldberg@home.com>
* Release 0.70
2001-08-11 Jody Goldberg <jgoldberg@home.com>
* Release 0.69
2001-07-17 Jody Goldberg <jgoldberg@home.com>
* Release 0.68
2001-07-14 Zbigniew Chyla <cyba@gnome.pl>
* python-loader.c (gnumeric_plugin_loader_python_func_file_open,
gnumeric_plugin_loader_python_func_file_save): Use gnumeric_io_error_string.
2001-06-29 Zbigniew Chyla <cyba@gnome.pl>
* py-gnumeric.c (create_python_interpreter): Call PySys_SetArgv after
creating new interpreter (some modules assume that sys.argv is always
set).
* python-loader.c (gnumeric_plugin_loader_python_load): Marked two
strings for translation.
2001-06-28 Jody Goldberg <jgoldberg@home>
* Release 0.67
2001-06-28 Jody Goldberg <jgoldberg@home.com>
* py-gnumeric.c (py_sheet_get_extent_method) : changes to
sheet_get_extent.
2001-06-27 Jody Goldberg <jgoldberg@home.com>
* Release 0.66
2001-05-29 Zbigniew Chyla <cyba@gnome.pl>
* python-loader.c (gnumeric_plugin_loader_python_func_file_probe): Added
FileProbeLevel argument.
2001-05-21 Zbigniew Chyla <cyba@gnome.pl>
* python-loader.c (gnumeric_plugin_loader_python_func_file_probe,
gnumeric_plugin_loader_python_func_file_probe,
gnumeric_plugin_loader_python_func_file_save):
s/FileOpener/GnumFileOpener/
s/FileSaver/GnumFileSaver/
2001-05-20 Jody Goldberg <jgoldberg@home.com>
* Release 0.65
2001-05-17 Jody Goldberg <jgoldberg@home.com>
* py-gnumeric.c (py_Cell_render_value_method) : delete. This should
not be wrapped.
2001-04-19 Jody Goldberg <jgoldberg@home.com>
* py-gnumeric.c (py_Workbook_get_sheets_method) : free the list of
sheets.
2001-03-31 Zbigniew Chyla <cyba@gnome.pl>
* py-gnumeric.c (destroy_python_interpreter): Fixed typo.
2001-03-31 Zbigniew Chyla <cyba@gnome.pl>
Patch from drk@sgi.com
* py-gnumeric.c: Added function declarations for object methods
to avoid declaring forward references for an unsized PyMethodDef
arrays.
2001-03-17 Jody Goldberg <jgoldberg@home.com>
* Makefile.am (SOURCES) : Add missing header.
2001-03-06 Zbigniew Chyla <cyba@gnome.pl>
* py-gnumeric.[ch], python-loader.c:
Replaced #include "Python.h" with #include <Python.h>.
2001-03-06 Jon K Hellan <hellan@acm.org>
* py-gnumeric.c, py-gnumeric.h, python-loader.c: Fix include path
for Python.h.
* .cvsignore: Add it.
2001-03-05 Zbigniew Chyla <cyba@gnome.pl>
* Makefile.am, plugin.xml, py-gnumeric.c, py-gnumeric.h,
python-loader.c, README-IMPORTANT:
New plugin, loader for Python plugins.
|