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
|
2007-12-28 Dave Beckett <dave@dajobe.org>
* NEWS.html, RELEASE.html, configure.ac,
librdf/win32_rdf_config.h: Bump version to 1.0.8.
Require rasqal 0.9.16
2007-12-24 Dave Beckett <dave@dajobe.org>
* Snapshotted redland_1_0_7 for 1.0.7 release (SVN 13317)
2007-12-23 Dave Beckett <dave@dajobe.org>
* docs/Makefile.am, docs/redland-chapter-storage-modules.xml,
docs/redland-chapter-storage.xml, docs/redland-docs.xml: Renamed
redland-chapter-storage.xml
* docs/Makefile.am, docs/redland-chapter-storage.xml,
docs/redland-docs.xml: Added redland-chapter-storage.xml
* docs/storage.html: xhtml
* docs/Makefile.am: Update CLEANFILES
* docs/tmpl/concepts.sgml, docs/tmpl/parser.sgml,
docs/tmpl/storage.sgml, docs/tmpl/uri.sgml: docs
2007-12-21 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_stream.c: (librdf_stream_add_map) Clarified map
function docs.
2007-12-20 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_storage_sqlite.c: (librdf_storage_sqlite_get_next_common,
librdf_storage_sqlite_get_next_context_common): Make stream
finished on alloc failure.
* librdf/rdf_storage_sqlite.c:
(librdf_storage_sqlite_context_add_statement):
Fix stringbuffer-related leaks introduced in a previous commit.
* librdf/rdf_storage_sqlite.c: (librdf_storage_sqlite_serialise,
librdf_storage_sqlite_find_statements,
librdf_storage_sqlite_context_serialise,
librdf_storage_sqlite_get_contexts): Make sure sqlite is not passed
in NULL sql string. Refactor freeing sql stringbuffers.
* librdf/rdf_storage_sqlite.c: (librdf_storage_sqlite_add_statements,
librdf_storage_sqlite_contains_statement,
librdf_storage_sqlite_serialise,
librdf_storage_sqlite_context_add_statement,
librdf_storage_sqlite_context_remove_statement,
librdf_storage_sqlite_context_remove_statements,
librdf_storage_sqlite_context_serialise): Check for stringbuffer
alloc failures.
* librdf/rdf_storage_sqlite.c: (librdf_storage_sqlite_open): Check
for errors/alloc failures and clean up as needed.
* librdf/rdf_storage_sqlite.c: (librdf_storage_sqlite_set_helper,
librdf_storage_sqlite_get_helper,
librdf_storage_sqlite_uri_helper,
librdf_storage_sqlite_blank_helper,
librdf_storage_sqlite_literal_helper): Resiliency fixes: check for
alloc failures and clean up on error.
* librdf/rdf_storage_sqlite.c: (librdf_storage_sqlite_exec):
Resiliency fixes:
- Don't close the sqlite db on error, we are probably going to
need it later and we don't want sqlite to segfault on NULL db.
- Return an error if passed in a NULL request.
- Memory leak fix: free the dynamically allocated error message
string (if any) from v2 sqlite_exec() or v3 legacy support
sqlite3_exec().
- Check for alloc failures.
(- Fixed indent.)
* librdf/rdf_storage_sqlite.c: (sqlite_string_escape) Check for
alloc failure
* librdf/rdf_storage_sqlite.c: (librdf_storage_sqlite_init) Make
sure options hash is always freed.
* librdf/rdf_hash.c, librdf/rdf_iterator.c, librdf/rdf_list.c,
librdf/rdf_node.c, librdf/rdf_storage.c,
librdf/rdf_storage_hashes.c, librdf/rdf_storage_list.c,
librdf/rdf_storage_mysql.c, librdf/rdf_storage_postgresql.c,
librdf/rdf_storage_sqlite.c: Reverted librdf_new_iterator()
context ownership changes from r12988 and r12989. Do not call
finished method in librdf_new_iterator() if iterator allocation
fails. Caller should discard the memory.
Motivation: Make the API contract similar to librdf_new_stream()
and do not break old code.
2007-12-18 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_query_internal.h: Use RASQAL_H and not RASQAL_API to
check whether rasqal.h has been included. RASQAL_API may be
defined outside rasqal.h.
2007-12-17 Dave Beckett <dave@dajobe.org>
* librdf/redland.spec.in: updates to rpm config
2007-12-16 Dave Beckett <dave@dajobe.org>
* librdf/redland.spec.in: rasqal-devel fixes
* configure.ac: sh
* configure.ac, librdf/redland.pc.in, librdf/redland.spec.in:
Added RASQAL_MAX_VERSION with 0.9.15 since rasqal API will change
next time
* librdf/rdf_parser.c: autodoc
* librdf/rdf_concepts.c: autodoc
* docs/redland-sections.txt: Add 11 funcs/handlers
* docs/redland-sections.txt: Remove
librdf_concept_ms_namespace_uri
librdf_concept_schema_namespace_uri
* librdf/rdf_iterator.h, librdf/rdf_stream.h: autodocs
* librdf/Makefile.am: tweak cleanfiles
* docs/tmpl/redland-unused.sgml, docs/tmpl/unused.sgml: docs
* librdf/rdf_storage.c: (main): Just warn if a storage cannot be
created - databases may not be running.
* librdf/Makefile.am: Try using librdf_la_LDFLAGS rather than AM_LDFLAGS
* configure.ac: Do not apply modular storage params to LIBRDF_LIBS twice
* librdf/rdf_query_internal.h: Make this include work when
rasqal.h has been included first - conditionalise defining
rasqal_query_results_formatter typedef.
2007-12-12 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_storage_sqlite.c:
(librdf_storage_sqlite_contains_statement): Added FIXME note about
inserting new data when just testing for statement existence.
* librdf/rdf_storage_sqlite.c: Added transaction support to sqlite
storage. Run sqlite operations in a transaction unless one is
already active.
(librdf_storage_sqlite_context): Added in_transaction flag.
(librdf_storage_sqlite_open,
librdf_storage_sqlite_contains_statement,
librdf_storage_sqlite_context_add_statement,
librdf_storage_sqlite_query_flush): Use
librdf_storage_sqlite_transaction_* functions for
transactions. Roll back on errors, do not commit.
(librdf_storage_sqlite_add_statements): Wrap operation in a
transaction unless one is already active.
(librdf_storage_sqlite_transaction_start,
librdf_storage_sqlite_transaction_commit,
librdf_storage_sqlite_transaction_rollback): Added new storage API
implementation functions.
(librdf_storage_sqlite_register_factory): Register transaction
callbacks.
* librdf/rdf_storage_sqlite.c:
(librdf_storage_sqlite_contains_statement):
Bug fix: contains_statement() should also find statements with
blank subject node.
2007-12-03 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_storage_sqlite.c: (librdf_storage_sqlite_serialise,
librdf_storage_sqlite_find_statements,
librdf_storage_sqlite_context_serialise): Fix crashes e.g. if sql
compilation fails. scontext->storage needs to be initialized
before calling librdf_storage_sqlite_*_finished().
2007-11-29 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_storage_sqlite.c:
(librdf_storage_sqlite_get_1int_callback): Avoid atoi(NULL) crashes.
* librdf/rdf_query_internal.h: Declare
rasqal_query_results_formatter - can now include librdf.h with
LIBRDF_INTERNAL without including redland.h/rasqal.h.
2007-11-26 Dave Beckett <dave@dajobe.org>
* autogen.sh: fix to handle OSX using glibtoolize for libtoolize
2007-11-23 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_storage_sqlite.c: Removed writable static data.
* librdf/rdf_storage_sqlite.c: (librdf_storage_sqlite_init):
Removed unused variable is_new.
(librdf_storage_sqlite_open): On error, do not leave dangling
context->db.
2007-11-22 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_stream.c: indent tabs->spaces
* librdf/rdf_query_internal.h: Revert r13241 - was not portable
* librdf/rdf_query_internal.h: Forward declare
rasqal_query_results_formatter - can now include librdf.h with
LIBRDF_INTERNAL without including redland.h/rasqal.h.
2007-11-20 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_digest.c: (librdf_get_digest_factory): Remove
redundant code. Style & indent fixes.
2007-11-19 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_log.h: comment punctuation
* librdf/rdf_storage_list.c: (librdf_storage_list_find_statements):
Lowmem leak fix: clean up and return NULL if
librdf_stream_add_map() fails.
* librdf/rdf_stream.c: (librdf_stream_update_current_statement):
Lowmem leak fix: return end-of-stream if map iterator alloc fails.
2007-11-14 Dave Beckett <dave@dajobe.org>
* configure.ac: Require raptor 1.4.16 rasqal 0.9.15
2007-11-12 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_parser_raptor.c: Make raptor_uri_handlers const.
* librdf/rdf_concepts.c, librdf/rdf_concepts.h,
librdf/rdf_init_internal.h, librdf/rdf_node.c: Remove writable
static data from rdf_concepts - move variables to librdf_world
struct.
SOURCE COMPATIBILITY BREAK: rdf_concepts.h public API node/uri
macros now require a librdf_world* parameter.
(librdf_get_concept_resource_by_index,
librdf_get_concept_resource_by_index): Added two new API functions
required by rdf_concepts.h public API macros.
(librdf_init_concepts_init, librdf_finish_concepts): Remove
librdf_concepts_usage reference counting workaround - no longer
needed.
(librdf_new_node_from_literal,
librdf_node_get_literal_value_is_wf_xml, librdf_node_decode): Pass
world object pointer to rdf concepts macros.
2007-11-07 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_concepts.c: Remove writable static data. Make const
namespace strings const.
2007-11-06 Lauri Aalto <laalto@iki.fi>
* librdf/librdf.h: Allow REDLAND_API to be externally defined
e.g. in a static config.h. Remove __SYMBIAN32__ case.
* librdf/rdf_init.c: Remove writable static data. Allow flagging
out old RDF_World stuff with NO_STATIC_DATA.
* librdf/rdf_parser_raptor.c: Remove writable static bss. Make
raptor_uri_handler const
* librdf/rdf_parser_raptor.c, librdf/rdf_query_rasqal.c,
librdf/rdf_serializer_raptor.c: Remove writable static bss. Make
buffers stack-based.
* librdf/rdf_statement.c: Remove writable static data. Make
null_string pointer const.
* librdf/rdf_log.c: Remove writable static data. Make
log_level_names array const.
2007-10-31 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_storage_internal.h: Remove duplicate declaration of
librdf_init_storage_sqlite()
* librdf/rdf_storage.c, librdf/rdf_storage.h,
librdf/rdf_storage_internal.h: Make librdf_storage_add_reference()
and librdf_storage_remove_reference() LIBRDF_API functions to
enable calling from external storage modules on systems that
require explicit function exports.
2007-10-25 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_query_results.c: (librdf_query_results_to_counted_string):
Do not leak string on errors.
2007-10-23 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_node.c: (librdf_new_node_from_typed_counted_literal):
Free xml_language copy on buffer alloc failure
* librdf/rdf_node.c: (librdf_new_node_from_blank_identifier): On
error, free identifier generated with librdf_world_get_genid(). No
need to copy generated id.
* librdf/rdf_parser_raptor.c:
(librdf_parser_raptor_generate_id_handler):
Fix lowmem leaks - always free user_bnodeid, return NULL if
hash_put fails.
* librdf/rdf_parser_raptor.c:
(librdf_parser_raptor_generate_id_handler):
Fix lowmem crash - do not put NULL value into hash
* librdf/rdf_parser_raptor.c: (librdf_parser_raptor_init): Check
for bnode_hash alloc failure
* librdf/rdf_parser_raptor.c: (librdf_parser_raptor_namespace_handler):
Check for alloc failure
* librdf/rdf_parser_raptor.c: (librdf_parser_raptor_context):
Lowmem leak fix. Store pointer to the stream context to enable
cleaning it up through the parser object.
* librdf/rdf_parser_raptor.c:
(librdf_parser_raptor_parse_as_stream_common):
Lowmem leak fixes. Store raptor_www pointer to parser context to
allow resource cleanup from client code in case
raptor_parse_chunk() fails in a lexer.
* librdf/rdf_parser_raptor.c: (librdf_parser_raptor_stream_context):
base_uri is not needed for anything - raptor copies and stores
base_uri as needed.
* librdf/rdf_parser.c: (librdf_parser_guess_name): Do not call
strlen() with NULL arg.
* librdf/rdf_parser_raptor.c: (librdf_parser_raptor_stream_context):
source_uri is not needed for anything.
* librdf/rdf_parser.c: indent tabs->spaces
* librdf/rdf_parser_raptor.c:
(librdf_parser_raptor_parse_file_handle_as_stream,
librdf_parser_raptor_parse_as_stream_common,
librdf_parser_raptor_parse_into_model_common): Check for alloc
failures
2007-10-22 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_uri.c: (librdf_new_uri_from_uri_local_name): No need
to calloc strings, use malloc instead.
* librdf/rdf_digest.c, librdf/rdf_hash.c, librdf/rdf_model.c,
librdf/rdf_parser.c, librdf/rdf_query.c, librdf/rdf_serializer.c,
librdf/rdf_storage.c: (librdf_digest_register_factory,
librdf_hash_register_factory, librdf_model_register_factory,
librdf_parser_register_factory, librdf_query_register_factory,
librdf_serializer_register_factory,
librdf_storage_register_factory): No need to calloc strings, use
malloc instead.
* librdf/rdf_concepts.c: (librdf_finish_concepts): Prevent calling
librdf_free_node() with NULL node.
* librdf/rdf_digest.c, librdf/rdf_hash.c, librdf/rdf_model.c,
librdf/rdf_parser.c, librdf/rdf_query.c, librdf/rdf_serializer.c,
librdf/rdf_storage.c: (librdf_storage_register_factory,
librdf_parser_register_factory, librdf_model_register_factory):
Low-memory fixes: prevent calling the factory method on a stale
factory if raptor_sequence_push() failed.
(librdf_digest_register_factory, librdf_hash_register_factory,
librdf_model_register_factory, librdf_parser_register_factory,
librdf_query_register_factory, librdf_serializer_register_factory,
librdf_storage_register_factory): Refactor all
librdf_*_register_factory() functions to same style:
- fail fast if factory already registered, alloc only if necessary
- associate with librdf_world before calling the factory function
to allow proper cleanup on factory failures
- on error, use goto label for cleanup + oom reporting to make the
code clearer and smaller
- do not use intermediate local variables if they have no benefit
* librdf/rdf_iterator.c, librdf/rdf_list.c, librdf/rdf_node.c,
librdf/rdf_storage.c, librdf/rdf_storage_hashes.c,
librdf/rdf_storage_list.c, librdf/rdf_storage_mysql.c,
librdf/rdf_storage_postgresql.c, librdf/rdf_storage_sqlite.c:
Prevent double deleting iterator context on error after r12988.
(librdf_new_iterator): Document that ownership of context is taken.
* librdf/rdf_iterator.c: (librdf_new_iterator): Free passed in
context on alloc failure. Indent tabs->spaces.
* utils/rdfproc.c: (commands): Fix warning about missing initializer
* librdf/rdf_storage_file.c: (librdf_storage_file_init): Make sure
options hash is always freed.
* configure.ac: Set eol-style from native to LF - toolchain does
not work with CRLF files.
2007-10-21 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_init.c: Require ltdl.h only with MODULAR_LIBRDF.
* librdf/rdf_hash.c: (librdf_hash_get_all_iterator_finished): Fix
low memory crash - check for NULL context->key.
2007-10-20 Dave Beckett <dave@dajobe.org>
* librdf/rdf_init.c: 2007
* librdf/rdf_init_internal.h: (struct librdf_world_s): Add
storage_modules and ltdl_opened always. Pad structure when not
WITH_THREADS. Thus structure is always the same size.
* librdf/rdf_storage.c: (librdf_storage_load_module): Renamed from
librdf_load_storage_module
* autogen.sh: Only add --ltdl to libtoolize_args if a configure
program contains an AC_LIBLTDL_ macro. Allows this script to
shared between librdf, raptor and rasqal.
2007-10-19 Dave Robillard <dave@drobilla.net>
* autogen.sh, configure.ac, librdf/Makefile.am, librdf/rdf_init.c,
librdf/rdf_init_internal.h, librdf/rdf_storage.c,
librdf/rdf_storage_sql_test.c: Modular (ie separate library)
storage backends.
(configure.ac): added --enable-modular.
(librdf_load_storage_module): created.
(librdf_init_storage): load modules, if --enable-modular is set.
(librdf_finish_storage): close module if necessary.
(rdf_storage_test): test all available storage backends.
(librdf_new_world): initialise libltdl.
(rdf_storage_sql_test): fix warning on 64-bit.
2007-10-19 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_hash.c: (librdf_new_hash_from_hash): Do not use hash
after deleting it. No need to free NULL identifier.
* librdf/rdf_model.c: indent tab -> spaces
* librdf/rdf_log.c, librdf/rdf_node.c: (librdf_free_node) Roll
back NULL check change from r12427 - the code is no longer trying
to free NULL nodes. Makes the function consistent with other
librdf_free_* functions.
2007-10-18 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_uri.c: (librdf_new_uri): Annotate uri string allocs as
cstring and not librdf_uri.
* librdf/rdf_storage_list.c: (librdf_storage_list_close): Remove
unused variable.
* librdf/rdf_storage_list.c: (librdf_storage_list_close):
Low-memory memory leak fix. Freeing list items should not depend
on being able to allocate an iterator. Replace list iterator with
a pop loop.
2007-10-04 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_parser_raptor.c:
(librdf_parser_raptor_new_statement_handler): Check for failures
and log a fatal error if needed. Free statement if librdf_list_add
fails.
2007-10-03 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_stream.c: (librdf_stream_add_map): Free context
immediately on error.
* librdf/rdf_storage_list.c: (librdf_storage_list_find_statements):
Free query statement if it is not added to the stream map.
* librdf/rdf_storage_list.c: (librdf_storage_list_serialise) Free
allocated stream context if returning an empty stream with no
context.
* librdf/rdf_list.c: (librdf_list_get_iterator): Free iterator
context if librdf_new_iterator() fails.
2007-10-01 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_model.c: (librdf_new_model_with_options): Use calloc
instead of malloc for context.
(main): rdf_model tests: Always run test_model_cloning (now it
passes).
(test_model_cloning): Fix copy-paste artifact when cloning a
cloned model.
* librdf/rdf_storage.c: (librdf_new_storage_from_storage): Set
storage usage flag early to allow cleanup with
librdf_free_storage().
* librdf/rdf_storage_hashes.c: (librdf_storage_hashes_init_common):
Store name to context and take ownership.
(librdf_storage_hashes_terminate): Free owned name string.
(librdf_storage_hashes_init): Create a copy of the name string -
init_common takes ownership of it.
(librdf_storage_hashes_clone): Remove unused variable + fix
comments.
Fixes Issue #0000229 http://bugs.librdf.org/mantis/view.php?id=229 .
2007-09-29 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_model.c: Added tests for
librdf_new_model_from_model(). Tests fail and they are disabled by
default. Related to
Issue #0000229 http://bugs.librdf.org/mantis/view.php?id=229
* librdf/rdf_storage_hashes.c: (librdf_storage_hashes_clone) Only
copy old context name if it is non-NULL. Store options hash in
new_context so that clone of a clone could also be possible.
Fixes Issue #0000229 http://bugs.librdf.org/mantis/view.php?id=229
but not all the additional issue in bug report notes.
(librdf_storage_hashes_open): Do not destroy the options hash - it
can be needed later if cloning the storage.
* librdf/rdf_model.c: (librdf_new_model_from_model): Check factory
clone() return value. Related to
Issue #0000229 http://bugs.librdf.org/mantis/view.php?id=229
* librdf/rdf_heuristics.c: (librdf_heuristic_gen_name): Defensive
code: assert non-NULL name parameter.
2007-09-27 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_parser.c: (librdf_parser_register_factory): Check
parsers sequence alloc failure. Push new parser to sequence before
calling factory init - parser is cleaned up if factory init fails.
(librdf_new_parser_from_factory): Check factory init return value
and clean up on error.
* librdf/rdf_list.c: (librdf_list_iterator_finished): No-op if
iterator is NULL.
* librdf/rdf_parser_raptor.c: (librdf_raptor_new_uri_for_rdf_concept):
Check librdf_get_concept_by_name() return value.
2007-09-26 Dave Beckett <dave@dajobe.org>
* autogen.sh: autogen.sh with perl version grep script
2007-09-26 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_serializer_raptor.c:
(librdf_serializer_raptor_serialize_stream_to_counted_string,
librdf_serializer_raptor_serialize_stream_to_iostream):
Check librdf_serializer_raptor_serialize_statement() return value.
* librdf, utils: Props: ignore .exes
2007-09-25 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_serializer_raptor.c:
(librdf_serializer_raptor_serialize_statement):
Check for serialize_statement return code. Fix log messages: print
-> serialize.
2007-09-24 Lauri Aalto <laalto@iki.fi>
* autogen.sh: Do not compare versions as decimal, e.g. automake
1.10 should be treated newer than 1.7.
(update_prog_version) Convert [z.]x.y version strings to 100x+y.
2007-09-21 Lauri Aalto <laalto@iki.fi>
* librdf/rdf_concepts.c: librdf_concepts: Check for alloc failures
and clean up on errors. Workaround for
Issue #0000213 http://bugs.librdf.org/mantis/view.php?id=213
* librdf/rdf_serializer_raptor.c:
(librdf_serializer_raptor_serialize_stream_to_file_handle):
Clean up allocated resources on failure.
* librdf/rdf_storage.c: rdf_storage: Check for alloc failures and
clean up properly on failure.
* librdf/rdf_serializer.c: rdf_serializer: Check for alloc
failures and clean up properly on failure.
* librdf/rdf_query_results.c: (librdf_query_results_to_counted_string):
Fix compiler warning about type punning.
* librdf/rdf_query_rasqal.c: rdf_query_rasqal: Check for alloc
failures / return codes and clean up properly on failure.
* librdf/rdf_query.c: rdf_query: Check for alloc failures and
clean up properly on failure.
* librdf/rdf_model.c: rdf_model: Check for alloc failures and
clean up properly on failure.
* librdf/rdf_node.c: (librdf_free_node) Hash deletion failure is
not a fatal error.
* librdf/rdf_serializer_raptor.c:
(librdf_serializer_raptor_serialize_stream_to_counted_string)
Fix compiler warning about type punning.
* librdf/rdf_uri.c: (librdf_free_uri) Hash deletion failure is not
a fatal error.
(librdf_uri_compare) Fix typos in comments.
* librdf/rdf_uri.c: (librdf_new_uri_from_uri_local_name) Indirect
old_uri pointer only after making sure it's not NULL.
* librdf/rdf_uri.c: (librdf_init_uri) Store uris_hash allocation
status before potentially failing opening it.
* librdf/rdf_hash.c: (librdf_new_hash_datum) Check for alloc
failures.
(librdf_new_hash_from_factory) Delete hash if factory init returns
an error.
* librdf/rdf_log.c: (librdf_log_simple) Do not abort() on fatal
messages - leave it up to librdf_fatal() so it can free its
buffers.
(librdf_fatal) Ensure function never returns, even on alloc failure.
* librdf/rdf_internal.h: rdf_internal.h: Allow LIBRDF_ASSERT_DIE
to be externally defined e.g. in a makefile.
* librdf/rdf_init.c: (librdf_new_world) Check for alloc failures
* librdf/rdf_model_storage.c, librdf/rdf_stream.c: Fix typos in
comments
* librdf/rdf_hash_memory.c: Fix indent
* Makefile.am, acinclude.m4, autogen.sh, data/Makefile.am,
demos/Makefile.am, docs/Makefile.am, examples/Makefile.am,
librdf/Makefile.am, librdf/win32/Makefile.am, utils/Makefile.am:
Fix EOL issues when building svn version on cygwin.
Partial fix to
Issue #0000236 http://bugs.librdf.org/mantis/view.php?id=236
* librdf/Makefile.am: Added $(EXEEXT)s to Makefiles to fix "make
clean" on cygwin. Partial fix to
Issue #0000235 http://bugs.librdf.org/mantis/view.php?id=235
* autogen.sh: librdf autogen.sh $dir quoting. Partial fix to
Issue #0000234 http://bugs.librdf.org/mantis/view.php?id=234
2007-09-16 Dave Beckett <dave@dajobe.org>
* Redland.i, librdf/rdf_parser_raptor.c, librdf/rdf_uri.c,
librdf/rdf_uri.h: (librdf_uri_compare): Added. Used to implement
librdf_raptor_uri_compare
* librdf/rdf_parser_raptor.c: (struct librdf_raptor_uri_handler):
Set URI Interface version to 2.
2007-09-15 Dave Robillard <dave@drobilla.net>
* librdf/rdf_parser_raptor.c: (librdf_raptor_uri_handler): Move
raptor_uri_compare to end of struct to match raptor_uri_handler.
* librdf/rdf_parser_raptor.c: (librdf_raptor_uri_compare): Avoid
strcmp if URIs are equal. Fix string signedness warnings.
* librdf/rdf_parser_raptor.c: (librdf_raptor_uri_compare):
Overload raptor_uri_compare for librdf URIs.
2007-09-07 Dave Beckett <dave@dajobe.org>
* librdf/rdf_init_internal.h: Include pthread.h for use by struct
Fixes Issue#0000230 http://bugs.librdf.org/mantis/view.php?id=230
2007-09-03 Dave Beckett <dave@dajobe.org>
* examples/rss2ical.c: Use \r\n line endings like the spec
says. Hello 1998!
2007-08-26 Dave Beckett <dave@dajobe.org>
* docs/redland-docs.xml: add more boilerplate, copyrights
2007-08-24 Dave Beckett <dave@dajobe.org>
* librdf/rdf_query.c: (librdf_query_execute): Fix asset for model
param.
Fixes Issue#0000218 http://bugs.librdf.org/mantis/view.php?id=218
2007-08-22 Dave Beckett <dave@dajobe.org>
* librdf/rdf_parser_raptor.c: (librdf_parser_raptor_relay_filter):
Added to use in filtering URIs during a parse operation.
(librdf_parser_raptor_parse_file_handle_as_stream,
librdf_parser_raptor_parse_as_stream_common,
librdf_parser_raptor_parse_into_model_common): Check URIs using
raptor_parser_set_uri_filter to set a filter function.
* librdf/rdf_parser.c: (librdf_parser_set_uri_filter): Added for
setting a handler function to check URIs being parsed.
(librdf_parser_get_uri_filter): Added for returning the current
handler/data.
* librdf/rdf_uri.h: Define librdf_uri_filter_func
* librdf/rdf_parser.h: Added librdf_parser_set_uri_filter and
librdf_parser_get_uri_filter
* librdf/rdf_parser_internal.h: struct librdf_parser_s gains
uri_filter_user_data and uri_filter
2007-08-18 Dave Beckett <dave@dajobe.org>
* librdf/rdf_node.c: (librdf_new_node_from_typed_counted_literal):
Handle input value, xml_languge that are not necessarily NUL
terminated, although they should be since they are C strings.
Fixes Issue#0000215 http://bugs.librdf.org/mantis/view.php?id=215
* configure.ac: BDB is up to 4.6 now
* librdf/Makefile.am, librdf/rdf_init.c, librdf/rdf_model.c,
librdf/rdf_node.c, librdf/rdf_parser.c, librdf/rdf_serializer.c,
librdf/rdf_storage.c, librdf/rdf_uri.c: Fix setup/cleanup issues
if library is initialised and then closed. Added rdf_init_test
test to run it.
Fixes Issue#0000209 http://bugs.librdf.org/mantis/view.php?id=209
2007-08-17 Dave Beckett <dave@dajobe.org>
* librdf/rdf_query_rasqal.c: (librdf_query_rasqal_free_results_formatter):
Free the librdf_query_results_formatter
Fixes Issue#0000205 http://bugs.librdf.org/mantis/view.php?id=205
* librdf/librdf.h: Applied librdf part of symbian portability fix
for Issue#0000203
http://bugs.librdf.org/mantis/view.php?id=203
2007-07-19 Dave Beckett <dave@dajobe.org>
* librdf/rdf_serializer.c: (librdf_serializer_set_namespace): Now
with less typos
* librdf/rdf_serializer.c: (librdf_serializer_set_namespace):
Allow NULL uri and prefix to be given
2007-06-08 Dave Beckett <dave@dajobe.org>
* librdf/rdf_storage_mysql.c:
(librdf_storage_mysql_transaction_commit): Run
librdf_storage_mysql_transaction_terminate if there is nothing to
do.
2007-05-26 Dave Beckett <dave@dajobe.org>
* librdf/rdf_uri.c: (librdf_uri_is_file_uri): Correct return value
docs.
Fixes Issue#0000189 http://bugs.librdf.org/mantis/view.php?id=189
* librdf/librdf.h: Allow _declspec and __declspec
Fixes Issue#0000188 http://bugs.librdf.org/mantis/view.php?id=188
2007-05-21 Dave Beckett <dave@dajobe.org>
* configure.ac: Add -Wformat-security
2007-05-09 Dave Beckett <dave@dajobe.org>
* librdf/rdf_query_results.c: (librdf_free_query_results_formatter):
Do not try to return a value.
Fixes Issue#0000187 http://bugs.librdf.org/mantis/view.php?id=187
* configure.ac: mysql_cflags - make sure -O match is after
whitespace. Ditch trying to rip out linker junk from mysql_cflags
2007-05-06 Dave Beckett <dave@dajobe.org>
* librdf/rdf_hash.c: (librdf_hash_print, librdf_hash_print_keys,
librdf_hash_print_values): Look at fwrite return value, it makes
gcc happier.
* NEWS.html, configure.ac, librdf/win32_rdf_config.h: Bump version
to 1.0.7
2007-05-05 Dave Beckett <dave@dajobe.org>
* Snapshotted redland_1_0_6 for 1.0.6 release (SVN 12231)
* librdf/redland.spec.in: Add /usr/share/redland/mysql-v1.ttl and
/usr/share/redland/mysql-v2.ttl to redland package
* librdf/rdf_parser_raptor.c:
(librdf_parser_raptor_namespace_handler): Do not store namespaces
with null URIs.
* Redland.i: Add librdf_parser_get_namespaces_seen_prefix,
librdf_parser_get_namespaces_seen_uri and
librdf_parser_get_namespaces_seen_count
* librdf/rdf_parser_raptor.c: (librdf_parser_raptor_namespace_handler):
Handle NULL prefix, URIs
2007-05-04 Dave Beckett <dave@dajobe.org>
* librdf/rdf_parser_raptor.c: cast for C++
* librdf/rdf_parser_raptor.c: librdf_parser_raptor_stream_context
gains nspace_prefixes and nspace_uris sequences for storing
namespaces seen.
(librdf_parser_raptor_terminate): Free sequences.
(librdf_parser_raptor_namespace_handler): Save namespaces prefixes
and URIs seen in the new sequences.
(librdf_parser_raptor_parse_file_handle_as_stream,
librdf_parser_raptor_parse_as_stream_common,
librdf_parser_raptor_parse_into_model_common): Reset/initialise
namespace prefix/uri sequences before starting parsing.
(librdf_parser_raptor_get_namespaces_seen_prefix,
librdf_parser_raptor_get_namespaces_seen_uri,
librdf_parser_raptor_get_namespaces_seen_count): Added to get the
namespaces returned during a parsing.
(librdf_parser_raptor_register_factory): Register new functions
above.
* librdf/rdf_parser.c: (librdf_parser_get_namespaces_seen_prefix,
librdf_parser_get_namespaces_seen_uri,
librdf_parser_get_namespaces_seen_count): Added to get the
namespaces returned during a parsing.
* librdf/rdf_parser.h: Added prototypes for
librdf_parser_get_namespaces_seen_prefix,
librdf_parser_get_namespaces_seen_uri and
librdf_parser_get_namespaces_seen_count
* librdf/rdf_parser_internal.h: struct librdf_parser_factory_s
gains factory methods
const char* (*get_namespaces_seen_prefix)(void* context, int offset);
librdf_uri* (*get_namespaces_seen_uri)(void* context, int offset);
int (*get_namespaces_seen_count)(void* context);
to get the namespaces seen during a parsing.
* librdf/rdf_storage_mysql.c:
(librdf_storage_mysql_transaction_commit): Commit statements in
the sorted order, not reversed. Fix off-by-1.
* librdf/rdf_storage_mysql.c: pending_row now has a set strings
with lengths.
(librdf_storage_mysql_context): pending_inserts is now an array of
raptor_sequence* of pending_rows.
(compare_pending_rows): Compare using ints not memcmp for
human understandable order. Could go back to memcmp which would
do different things based on the storage of u64 in memory (big,
little endian)
(free_pending-row): Added, now freeing strings too.
(format_pending_row_sequence): Turn a sequence of pending rows for a
table into the appropriate REPLACE INTO query.
(librdf_storage_mysql_node_hash_common): Do not make query here, use
new format_pending_row_sequence for immediate use, or queue it if in
a transaction.
(librdf_storage_mysql_transaction_start): init pending_inserts
sequences.
(librdf_storage_mysql_transaction_terminate): Free pending_inserts
sequences.
(librdf_storage_mysql_transaction_commit): Count pending_inserts
sequences. sort the pending nodes rows before formatting with
format_pending_row_sequence.
2007-05-02 Dave Beckett <dave@dajobe.org>
* librdf/rdf_storage_mysql.c: Batch up INSERTS to be 1 per table type.
Replace INSERT INTO with REPLACE INTO for Resources, Literals,
BNodes.
Do nothing if there is no work to commit, not even start/commit.
Table mysql_tables added to declare table names and fields.
Lose all the SELECT HIGH_PRIORITY.
(librdf_storage_mysql_node_hash_common): Renamed from
librdf_storage_mysql_node_hash.
(librdf_storage_mysql_get_node_hash,
librdf_storage_mysql_store_node): Added as wrappers around the above.
(librdf_storage_mysql_node_hash_common): Split into 'get hash' and
'add hash' sections. All queries are constructed with
raptor_stringbuffer. When in transaction, save for later, otherwise
execute here as before. Do not insert the same node twice in
the same transaction. LATER: Need to remember this is inserted
outside a transaction too to prevent un-necessary SELECTs.
(librdf_storage_mysql_context_add_statement_helper): Use new function
names. When in transactions, save away statements hash u64 arrays
a raptor_sequence of pending_row objects otherwise execute as before.
(librdf_storage_mysql_transaction_start): Initialise the new hashes
for nodes, pending_inserts stringbuffers, pending_statements sequence.
(librdf_storage_mysql_transaction_terminate): Added to tidy up the
new fields added above when a transaction is done.
(librdf_storage_mysql_transaction_commit): If there is no pending
node or statement to add, end without connecting.
Otherwise for each node table, do one REPLACE INTO and for the
statement table, do one INSERT INTO.
(librdf_storage_mysql_transaction_rollback): use new
librdf_storage_mysql_transaction_terminate to tidy up.
* configure.ac: Move mysql flag munging to one place
* utils/Makefile.am: (AM_CPPFLAGS): Put internal flags first
2007-05-01 Dave Beckett <dave@dajobe.org>
* librdf/rdf_hash.c: casts for C++
* librdf/rdf_parser.c, librdf/rdf_parser_raptor.c,
librdf/rdf_query_rasqal.c, librdf/rdf_storage_mysql.c,
librdf/rdf_storage_sql.c: casts for C++
* librdf/rdf_hash.c: Casts for C++
* librdf/rdf_hash.c, librdf/rdf_hash.h:
(librdf_hash_interpret_template): Do not use template as a
function parameter name for C++
* FAQS.html, INSTALL.html, LICENSE.html, NEWS.html, README.html,
RELEASE.html, TODO.html: HTML hello UTF-8
* redland-config.1: Document --private-libs and explain what it is
under --libs too.
* redland-config.in: Add --private-libs and move private libs to
that from --libs
* librdf/redland.pc.in: Use Libs.private for internal dynamically
linked libraries
2007-04-30 Dave Beckett <dave@dajobe.org>
* librdf/rdf_model.c: (librdf_model_add_submodel): Invert test
Fixes Issue#0000175 http://bugs.librdf.org/mantis/view.php?id=175
* librdf/rdf_iterator.c, librdf/rdf_statement.c,
librdf/rdf_storage.c, librdf/rdf_stream.c, librdf/rdf_uri.c:
(main): Init library with world only, not librdf_init_CLASS
* librdf/rdf_concepts.c: (main): Self contained test.
* librdf/rdf_digest.c, librdf/rdf_hash.c, librdf/rdf_node.c:
(main): Init library with world only, not librdf_init_CLASS
* docs/redland-docs.xml: sgml IDs
* Makefile.am: touch-mtime.pl
* docs/redland-sections.txt: Add librdf_parser_guess_name add
librdf_query_results_is_syntax
* Makefile.am, RELEASE.html, configure.ac, utils/Makefile.am,
utils/touch-mtime.c, utils/touch-mtime.pl: Remove touch-mtime
program, use perl touch-mtime.pl
2007-04-23 Dave Beckett <dave@dajobe.org>
* configure.ac: min raptor 1.4.15
* utils/rdfproc.c: Revert add_stream_count() and heuristics changes
* librdf/rdf_model.c, librdf/rdf_serializer.c: Updates for rdf/xml
output adding xml:base
* NEWS.html, configure.ac, librdf/win32_rdf_config.h: Bump version
to 1.0.6
* librdf/rdf_utf8.c: (main): Run quietly when successful
2007-04-22 Dave Beckett <dave@dajobe.org>
* librdf/rdf_query_triples.c: (librdf_query_triples_init): Init
context->statement.
* autogen.sh: Update autogen.sh
2007-03-20 Dave Beckett <dave@dajobe.org>
* librdf/rdf_parser.c: (librdf_parser_guess_name): Guess a parser
name from content using raptor_guess_parser_name.
* librdf/rdf_parser.h: Added librdf_parser_guess_name
* Redland.i: Added librdf_parser_guess_name
2007-03-14 Dave Beckett <dave@dajobe.org>
* librdf/rdf_parser_raptor.c:
(librdf_parser_raptor_parse_as_stream_common): Send the accept
header appropriate for the raptor parser.
2007-02-25 Dave Beckett <dave@dajobe.org>
* librdf/rdf_init.c: (librdf_new_world): Document how you should
call librdf_world_open after, although the library will now do it
for you.
* librdf/rdf_concepts.c, librdf/rdf_digest.c, librdf/rdf_hash.c,
librdf/rdf_init.c, librdf/rdf_init_internal.h,
librdf/rdf_iterator.c, librdf/rdf_list.c, librdf/rdf_model.c,
librdf/rdf_model_storage.c, librdf/rdf_node.c,
librdf/rdf_parser.c, librdf/rdf_parser_raptor.c,
librdf/rdf_query.c, librdf/rdf_query_results.c,
librdf/rdf_serializer.c, librdf/rdf_serializer_raptor.c,
librdf/rdf_statement.c, librdf/rdf_storage.c,
librdf/rdf_storage_file.c, librdf/rdf_storage_hashes.c,
librdf/rdf_storage_list.c, librdf/rdf_storage_mysql.c,
librdf/rdf_storage_postgresql.c, librdf/rdf_storage_sql.c,
librdf/rdf_storage_sqlite.c, librdf/rdf_storage_tstore.c,
librdf/rdf_stream.c, librdf/rdf_uri.c: Add librdf_world_open() for
every public API constructor or function that mentions
librdf_world* and could have failed to run librdf_world_open()
after librdf_new_world(). Fixes Issue#0000173
http://bugs.librdf.org/mantis/view.php?id=173
* librdf/rdf_query.h: Added librdf_query_results_is_syntax prototype.
2007-02-17 Dave Beckett <dave@dajobe.org>
* utils/rdfproc.1: Document -r/--results for query results formatting.
* utils/rdfproc.c: Added -r/--results option to set query results
formatter name.
* docs/tmpl/hash.sgml, docs/tmpl/model.sgml,
docs/tmpl/query_results.sgml, docs/tmpl/storage.sgml: Update for
new transactions functions
* librdf/rdf_parser.c, librdf/rdf_parser_internal.h,
librdf/win32_rdf_config.h: Remove HAVE_RAPTOR_RDF_PARSER - always
present now
* librdf/Makefile.am: rdf_parser_raptor.c is always compiled
* configure.ac: Remove --enable-parsers - raptor is always
required and always used, whatever this setting is. It is now
passed onto raptor, if built internally, which *will* use it to
configure the library contents.
2007-02-16 Dave Beckett <dave@dajobe.org>
* librdf/rdf_query_rasqal.c: (librdf_query_rasqal_results_to_counted_string,
librdf_query_rasqal_results_to_file_handle): Removed old factory
method impls
(librdf_query_rasqal_results_is_syntax,
librdf_query_rasqal_new_results_formatter,
librdf_query_rasqal_new_results_formatter_by_mime_type,
librdf_query_rasqal_free_results_formatter,
librdf_query_rasqal_results_formatter_write): Added to implement
new factory methods using rasqal_query_results_formatter
(librdf_query_rasqal_constructor): Register all rasqal query
results formats to be handled by this.
* librdf/rdf_query_results.c: (librdf_query_results_to_counted_string,
librdf_query_results_to_file_handle): Use query results formatter.
(librdf_query_results_is_syntax): Added
(librdf_new_query_results_formatter,
librdf_new_query_results_formatter_by_mime_type,
librdf_free_query_results_formatter,
librdf_query_results_formatter_write): Added, based on new factory
methods. 9librdf_query_results_formats_check,
librdf_query_results_formats_enumerate): Added, calling rasqal
directly.
* librdf/rdf_query.h: Added prototypes for
librdf_new_query_results_formatter,
librdf_new_query_results_formatter_by_mime_type,
librdf_free_query_results_formatter,
librdf_query_results_formatter_write,
librdf_query_results_formats_check and
librdf_query_results_formats_enumerate
* librdf/rdf_query_internal.h: Added
librdf_query_results_formatter librdf_query_factory_s gains
factory methods new_results_formatter,
new_results_formatter_by_mime_type, free_results_formatter and
results_formatter_write, results_is_syntax. lose factory methods
results_to_counted_string and results_to_file_handle
* librdf/librdf.h: Added librdf_query_results_formatter
* librdf/rdf_query_rasqal.c: (rasqal_redland_bind_match): Allow
binding a NULL graph
2007-02-09 Dave Beckett <dave@dajobe.org>
* librdf/rdf_serializer.c: (librdf_get_serializer_factory):
Default to serializer named "rdfxml" if nothing given to ensure we
don't get another rdfxml serializer such as XMP.
* librdf/rdf_serializer.c: (librdf_get_serializer_factory): Fix
negative test for uri inequality.
* librdf/rdf_parser.c: (librdf_get_parser_factory): Fix negative
test for uri inequality.
2007-01-26 Dave Beckett <dave@dajobe.org>
* Makefile.am: Revert touch -r change as it just creates a file
called '-r' (reopen http://bugs.librdf.org/mantis/view.php?id=159)
* Makefile.am: Reverse use of touch -r since it seems to fail on
Solaris. Fixes http://bugs.librdf.org/mantis/view.php?id=159
2007-01-23 Dave Beckett <dave@dajobe.org>
* configure.ac: RASQAL_MIN_VERSION 0.9.14
* librdf/rdf_storage.c: (librdf_storage_node_stream_to_node_create):
Allow copying NULL node1 and node2.
|