forked from dajobe/raptor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.6
1812 lines (1271 loc) · 60.1 KB
/
ChangeLog.6
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
2005-12-21 Dave Beckett <[email protected]>
* configure.ac, raptor.spec.in, Makefile.am:
Write rpm release as 1 (with --enable-release) or SNAP otherwise.
* src/turtle_parser.y, src/raptor_general.c, utils/rapper.1:
updated urls
* docs/tmpl/section-feature.sgml:
Added @RAPTOR_FEATURE_WRITER_XML_DECLARATION
2005-12-20 Dave Beckett <[email protected]>
* utils/Makefile.am: Added rapper.html to dist
* raptor-src-config.in, LICENSE.html, Makefile.am, manifest.pl,
configure.ac: ILRT/UB link updates
2005-11-30 Dave Beckett <[email protected]>
* src/raptor_xml_writer.c (raptor_xml_writer_indent):
Fix writing an extra newline at doc start.
2005-11-26 Dave Beckett <[email protected]>
* src/raptor_xml_writer.c: Add automatic writing of the XML
declaration (dependent on the XML version).
(raptor_xml_writer_write_xml_declaration): Added, to support this.
New feature RAPTOR_FEATURE_WRITER_XML_DECLARATION can disable
this.
(main): Update the test code to expect an XML declaration in the
string.
* src/raptor_parse.c: Add do-nothing switch cases for
RAPTOR_FEATURE_WRITER_XML_DECLARATION.
* src/raptor_serialize_rdfxmla.c: Add Adobe XMP compatible output
as new serializer rdfxml-xmp based on patch from Sid Steward.
Duplicate predicates are ignored for a single subject.
* src/raptor_serialize_rdfxml.c: Defer writing xml declaration to
the xml writer.
* src/raptor_serialize.c: Add XML declaration writing feature
support
(RAPTOR_FEATURE_WRITER_XML_DECLARATION) for serializer.
2005-11-25 Dave Beckett <[email protected]>
* configure.ac: Add test X = 1 for expat and libxml tests. Fixes
Issue#0000060
2005-11-22 Dave Beckett <[email protected]>
* src/raptor_feature.c: Added
RAPTOR_FEATURE_WRITER_XML_DECLARATION feature.
* src/raptor.h: Added RAPTOR_FEATURE_WRITER_XML_DECLARATION to
control generating the XML declaration on serializers and XML
writer.
2005-11-10 Dave Beckett <[email protected]>
* raptor.spec.in: Add gtk-doc docs to rpm
2005-11-04 Dave Beckett <[email protected]>
* docs/tmpl/section-xml.sgml: new functions
* docs/tmpl/section-feature.sgml: New feature
* docs/libraptor.3: Updated for 1.4.8
2005-11-02 Dave Beckett <[email protected]>
* docs/raptor-sections.txt:
Added raptor_iostream_write_xml_any_escaped_string
raptor_xml_any_escape_string
* src/turtle_parser.y, src/raptor_internal.h, src/n3_parser.y:
Added RAPTOR_ASSERT with no return value and use it for turtle and
n3 parsers. Some compilers complain at an empty 3rd macro arg
with RAPTOR_ASSERT_RETURN.
* src/raptor_serialize_rss.c: remove ;;
* src/raptor_rdfxml.c (raptor_generate_statement): Make predicate
type fix in reifying.
* src/raptor_rdfxml.c (raptor_generate_statement): Make predicate
revert fix actually work.
* RELEASE.html: Updates for 1.4.8
* src/raptor_rdfxml.c, src/turtle_parser.y, src/raptor_rss.c,
src/raptor.h, src/ntriples_parse.c, src/n3_parser.y: Revert
RAPTOR_IDENTIFIER_TYPE_PREDICATE to
RAPTOR_IDENTIFIER_TYPE_RESOURCE change for predicates until the
next release.
2005-09-21 Dave Beckett
* src/raptor_uri.c:
(raptor_new_uri_for_xmlbase, raptor_new_uri_for_retrieval):
Set ud->path_len to 1 when adding a default path of /
Fixes bug 0000045 http://bugs.librdf.org/mantis/view.php?id=45
2005-09-20 Dave Beckett
* src/raptor_serialize_rdfxmla.c (raptor_rdfxmla_serialize_start):
Pass down xml_version to the raptor_xml_writer and write the
versioned header.
* src/raptor_serialize_rdfxml.c (raptor_rdfxml_serialize_start):
Pass down xml_version to the raptor_xml_writer and write the
versioned header.
* src/raptor_xml_writer.c: Add xml_version to raptor_xml_writer
structure.
(raptor_iostream_write_xml_element_start): Add xml_version field
and pass it down to the XML escape function.
(raptor_new_xml_writer): Init xml_version to 10.
(raptor_xml_writer_empty_element, raptor_xml_writer_start_element,
raptor_xml_writer_cdata, raptor_xml_writer_cdata_counted): Pass
down xml_version.
(raptor_xml_writer_set_feature, raptor_xml_writer_get_feature):
Handle RAPTOR_FEATURE_WRITER_XML_VERSION.
* src/raptor_xml.c (raptor_xml_any_escape_string,
raptor_iostream_write_xml_any_escaped_string): Added, handling XML
1.0 or XML 1.1 Error if writing #x1-#x1f (excluding #x9, #xA, #xD)
or #x7F for XML 1.0
* src/raptor_serialize.c (raptor_serializer_set_feature,
raptor_serializer_get_feature): Add
RAPTOR_FEATURE_WRITER_XML_VERSION
* src/raptor_parse.c: switch on enum updates for feature
RAPTOR_FEATURE_WRITER_XML_VERSION for serializer and xml writer
* src/raptor_feature.c: Added RAPTOR_FEATURE_WRITER_XML_VERSION
for serializer and xml writer with short name xmlVersion
* src/raptor.h: Added RAPTOR_FEATURE_WRITER_XML_VERSION for
serializer, xml writer. Added prototypes for
raptor_xml_any_escape_string and
raptor_iostream_write_xml_any_escaped_string
* src/raptor_internal.h: raptor_serializer_s gains an xml_version
field
* src/raptor_sax2.c (raptor_sax2_parse_chunk): Once more with
static buffer, no vsnprintf
* src/raptor_sax2.c (raptor_sax2_parse_chunk): Fix error message
with 2 args for expat using raptor_vsnprintf.
* src/raptor_namespace.c (raptor_namespaces_format): XML escape
the written namespace name URI
* tests/ex-59.rdf: correct result
* tests/ex-59.nt, tests/ex-59.rdf: Test rdfxml serializer escapes
dquote in uri attrs
* tests/Makefile.am: Added RDF_SERIALIZE_TEST_FILES,
RDF_SERIALIZE_OUT_FILES and ex-59 for testing the rdfxml
serializer
* examples/Makefile.am: fix libraptor.la dir
2005-09-18 Dave Beckett
* src/raptor_rdfxml.c (raptor_generate_statement): When reifiying,
just copy predicate_type.
* src/raptor_uri.c (raptor_uri_equals): Alter to accept NULL
pointers, which do not compare equal to a non-NULL URI. NULL does
equal NULL.
* src/raptor.h: Document that RAPTOR_IDENTIFIER_TYPE_PREDICATE is
never generated by a parser from now, replaced by
RAPTOR_IDENTIFIER_TYPE_RESOURCE and
RAPTOR_IDENTIFIER_TYPE_XML_LITERAL replaced by
RAPTOR_IDENTIFIER_TYPE_LITERAL with the rdf:XMLLiteral datatype.
* src/n3_parser.y, src/ntriples_parse.c, src/turtle_parser.y,
src/raptor_rss.c, src/raptor_rdfxml.c: Replace all
RAPTOR_IDENTIFIER_TYPE_PREDICATE with
RAPTOR_IDENTIFIER_TYPE_RESOURCE
* src/raptor_rdfxml.c: Added a new concept for rdf:XMLLiteral
Rename RAPTOR_N_CONCEPTS to RAPTOR_RDFXML_N_CONCEPTS
(raptor_rdfxml_parse_init): Init it.
(raptor_end_element_grammar): Never generate
RAPTOR_IDENTIFIER_TYPE_XML_LITERAL, instead generate a
RAPTOR_IDENTIFIER_TYPE_LITERAL with the rdf:XMLLiteral datatype.
2005-09-16 Dave Beckett
* docs/libraptor.3: Update for 1.4.8 - added
raptor_set_namespace_handler
* src/raptor_www.c, src/raptor.h:
Revert: remove raptor_www_set_source_uri,
raptor_www_set_source_file_handle, raptor_www_retrieve and
raptor_www_retrieve_to_string
2005-09-15 Dave Beckett
* src/raptor.h: delete unused raptor_www_fetch_to_string prototype
* src/raptor_www.c: autodocs
(raptor_www_set_source_uri): Added to set URI for content source
(raptor_www_set_source_file_handle): Added to set URI for content
source.
(raptor_www_file_handle_fetch): Added, with guts of
raptor_www_file_fetch.
(raptor_www_file_fetch): Modified to call
raptor_www_file_handle_fetch.
(raptor_www_retrieve): Added to retrieve from whatever source (URI
or handle).
(raptor_www_retrieve_to_string): Added to retrieve from whatever
source (URI or handle) into a string.
(raptor_www_fetch): Now a wrapper over raptor_www_retrieve.
(raptor_www_fetch_to_string): Now a wrapper over
raptor_www_retrieve_to_string.
* src/raptor.h: Added prototypes for raptor_www_set_source_uri,
raptor_www_set_source_file_handle, raptor_www_retrieve,
raptor_www_retrieve_to_string and
raptor_www_fetch_from_file_handle
* src/raptor_internal.h: (struct raptor_www_s) gains a handle
field
* src/raptor_parse.c: autodocs
* src/ntriples_parse.c: autodocs and some code style fixes
2005-09-14 Dave Beckett
* docs/tmpl/section-parser.sgml: new functions
2005-09-10 Dave Beckett
* src/raptor_expat.c: Updates to use new raptor_sax2 handler
style. The user data now points at the raptor_sax2* object, not
the parser.
(raptor_expat_init): send SAX2 events to core raptor_sax2_EVENT
routines.
(raptor_expat_update_document_locator): Moved from raptor_parser.c
* src/raptor_libxml.c: Updates to use new raptor_sax2 handler
style. The user data now points at the raptor_sax2* object, not
the parser. All raptor_parser* references are gone and
error/fatal error/warnings are returned via handler/data pairs.
(raptor_libxml_call_handler): Added to aid returning messages.
Deleted old and unused internal entity resolution code.
(raptor_libxml_init): send SAX2 events to core raptor_sax2_EVENT
routines.
* src/raptor_internal.h: Removed old and hardly tested internal
handling of libxml entities
* src/raptor_rdfxml.c: Rename raptor_xml_* to raptor_rdfxml_* in
structs and functions.
(raptor_rdfxml_start_element_handler,
raptor_rdfxml_end_element_handler, raptor_cdata_grammar): Move
expat BOM fixes to raptor_sax2.c
(raptor_rdfxml_parse_init): Use new raptor_sax2_set_EVENT_handler
methods. Use raptor_sax2_set_locator.
(raptor_get_libxml_context, raptor_set_libxml_document_locator,
raptor_get_libxml_document_locator, raptor_get_libxml_entities,
raptor_set_libxml_entities, raptor_expat_update_document_locator):
Deleted or merged into raptor_sax2.c
* src/raptor_parse.c (raptor_parser_fatal_error_message_handler,
raptor_parser_error_message_handler,
raptor_parser_warning_message_handler): Added handlers that take
location in same style as user message handler callbacks.
(raptor_stats_print): Update for raptor_rdfxml_parser
* src/raptor_locator.c (raptor_update_document_locator): Moved to
raptor_sax2.c
* src/raptor_general.c (raptor_init, raptor_finish): Call
raptor_init_sax2 and raptor_finish_sax2 respectively.
* src/raptor_internal.h: Removed several libxml/expat/rdxml
functions used to be too friendly with internals of other classes.
Renamed raptor_xml_parser to raptor_rdfxml_parser. Updated
prototype of raptor_libxml_update_document_locator. Added new
parser handler prototypes raptor_parser_error_message_handler,
raptor_parser_fatal_error_message_handler and
raptor_parser_warning_message_handler Added handlers for SAX2
events - start element, end element, characters, cdata, comment,
unparsed_entity_decl, external_entity_ref named as
raptor_sax2_EVENT_handler. raptor_sax2 gains a magic field as
this is used as the user data for libxml. raptor_sax2 uses the
handler typedefs for the event handlers. raptor_sax2 gains erorr,
fatal and warning handler and data fields. Added prototypes for
raptor_init_sax2 and raptor_finish_sax2. Updated prototype for
raptor_new_sax2. Added prototypes for
raptor_sax2_set_start_element_handler,
raptor_sax2_set_end_element_handler,
raptor_sax2_set_characters_handler, raptor_sax2_set_cdata_handler,
raptor_sax2_set_comment_handler,
raptor_sax2_set_unparsed_entity_decl_handler and
raptor_sax2_set_external_entity_ref_handler Added prototype for
raptor_sax2_set_locator. Added prototypes for:
raptor_sax2_start_element raptor_sax2_end_element,
raptor_sax2_characters, raptor_sax2_cdata, raptor_sax2_comment,
raptor_sax2_unparsed_entity_decl and
raptor_sax2_external_entity_ref.
* src/raptor_sax2.c: Now a more complete class
(raptor_init_sax2, raptor_finish_sax2): Added, calling any static
initialising/finishing.
(raptor_new_sax2): Added error, fatal_error and warning data and
handler registers. Register magic for libxml2 user_data fixups
(raptor_sax2_set_start_element_handler,
raptor_sax2_set_end_element_handler,
raptor_sax2_set_characters_handler, raptor_sax2_set_cdata_handler,
raptor_sax2_set_comment_handler,
raptor_sax2_set_unparsed_entity_decl_handler,
raptor_sax2_set_external_entity_ref_handler): Added for setting
SAX2 callback handlers.
(raptor_sax2_set_locator): Added, to set SAX2 file locator.
(raptor_sax2_parse_chunk): Update for new handlers, remove all
mention of raptor_parser. Use this object (raptor_sax2*) as the
user data now, not an external raptor_parser*.
(raptor_sax2_update_document_locator): Added, updating the current
location for the internal parser.
(raptor_sax2_start_element): Added, internal function calling the
start element handler, adding various workarounds needed.
(raptor_sax2_end_element): Added, internal function calling the
end element handler, adding various workarounds needed.
(raptor_sax2_characters, raptor_sax2_cdata, raptor_sax2_comment,
raptor_sax2_unparsed_entity_decl,
raptor_sax2_external_entity_ref): Added, internal functions
calling the same-named handler.
2005-09-09 Dave Beckett
* src/raptor_qname.c: autodocs
* docs/raptor-sections.txt: Added new functions.
* src/raptor_internal.h (raptor_parser_s): Add new fields to the
end of the struct; add unused1 to try to make old offsets work
* src/raptor_namespace.c (raptor_namespaces_init): Remove
un-necessary casts for constant namespace names.
* src/raptor_uri.c (raptor_uri_uri_string_to_filename_fragment):
For win32, only remove leading / if there is one present. (patch
from John C. Barstow)
(main): Correct test case result to match above.
* src/raptor_xslt.c (raptor_xslt_parse_chunk): If the content is
in one chunk and is_end is true, call xmlParseChunk with the
is_end flag. (patch from René Puls)
2005-09-07 Dave Beckett
* src/n3_parser.y, src/turtle_parser.y (statement):
Handle error recovery when subject is NULL
2005-09-06 Dave Beckett
* src/turtle_common.c (raptor_stringbuffer_append_turtle_string):
Do not check unsigned for <0
* src/raptor_xml.c (raptor_xml_name_check):
Do not check unsigned for <0
* src/raptor_utf8.c (raptor_utf8_check): Do not check unsigned for <0
* src/raptor_serialize.c (raptor_serializers_enumerate):
counter can never be <0
* src/raptor_rdfxml.c (raptor_element_content_type_as_string):
Do not check unsigned for <0
* src/raptor_feature.c (raptor_feature_value_type):
Do not check unsigned for <0
* src/ntriples_parse.c (raptor_ntriples_term):
Do not check unsigned for <0
* src/raptor_parse.c (raptor_syntaxes_enumerate):
counter can never be <0
2005-08-24 Dave Beckett
* src/Makefile.am: Add more conditional compiles for serializers
* src/Makefile.am: Added raptor_serialize_rdfxml.c
raptor_serialize_ntriples.c raptor_serialize_simple.c
* src/raptor_serialize.c: Moved specific serializers into separate
files - rdfxml, ntriples, simple
* src/raptor_serialize_rdfxml.c: RDF/XML serializer
* src/raptor_serialize_ntriples.c: N-Triples serializer
* src/raptor_serialize_simple.c: Simple serializer
* src/raptor-config.in, src/raptor-config.1:
s/features/options/ so not to confuse with raptor_feature
* utils/rapper.c:
Add HELP_TEXT_LONG to deal with help that has no short option.
* utils/rapper.c: fix --show-namespaces help
* utils/rapper.1: Added --show-namespaces
* utils/rapper.c: (print_namespaces) Added
Added --show-namespaces option - long options only.
* src/turtle_parser.y, src/raptor_rdfxml.c, src/n3_parser.y:
Handle raptor_new_namespace failing.
* src/turtle_parser.y, src/raptor_rdfxml.c, src/n3_parser.y:
Remove calls to raptor_namespaces_start_namespace_full and use the
three functions raptor_new_namespace,
raptor_namespaces_start_namespace and
raptor_parser_start_namespace instead.
* src/raptor_parse.c (raptor_set_namespace_handler): Added. New
user method.
(raptor_parser_start_namespace): Added. Internal function to
operate when namespaces are declared.
* src/raptor.h: Added raptor_namespace_handler typedef. Added
raptor_set_namespace_handler prototype.
* src/raptor_internal.h: raptor_parser_s gains namespace_handler
and namespace_handler_user_data fields. Added
raptor_parser_start_namespace prototype.
2005-08-24 Dave Beckett
* tests/Makefile.am: link to libxml2 bug report
* src/raptor_rss.c (raptor_rss_emit_type_triple,
raptor_rss_emit_enclosure, raptor_rss_emit_connection): Zap
literal language and datatype before setting up statement objects.
* src/ntriples_parse.c (raptor_ntriples_generate_statement): Zap
literal language and datatype before setting up statement objects.
* src/n3_parser.y (raptor_n3_generate_statement): Zap literal
language and datatype for !literals. Add assertion.
* src/raptor_internal.h (RAPTOR_ASSERT_RETURN): Remove ()s around
return to allow no-value.
* src/turtle_parser.y (raptor_turtle_generate_statement): Zap
literal language and datatype for !literals. Add assertion.
2005-08-22 Dave Beckett
* src/raptor.h: autodocs fixes
* src/raptor.h: autodocs
* docs/raptor-sections.txt: raptor_uri_init now internal
* src/raptor_parse.c: autodocs
* docs/tmpl/section-unused.sgml: raptor_uri_init now internal
* docs/tmpl/section-general.sgml, src/raptor_internal.h: Remove
unused container_test_handler function.
* src/raptor.h, src/raptor_xml.c, src/raptor_sequence.c,
src/raptor_iostream.c, src/raptor_stringbuffer.c: autodocs
* docs/raptor-sections.txt: No raptor_container_test_handler
* src/raptor.h: raptor_uri_init was internal
* src/raptor_uri.c: autodocs
* src/raptor_internal.h: raptor_uri_init was internal
* src/raptor_uri.c: autodocs
2005-08-19 Dave Beckett
* Makefile.am: Enable gtk doc with make distcheck
* docs/tmpl/section-xml-namespace.sgml: args
* src/raptor_namespace.c, src/raptor.h, src/raptor_xml.c,
src/raptor_serialize.c, src/raptor_qname.c, src/raptor_parse.c,
src/raptor_iostream.c, src/raptor_sequence.c,
src/raptor_general.c, src/raptor_feature.c: autodocs
* docs/version.xml.in: version.xml.in
* docs/tmpl/section-serializer.sgml: whitespace
* src/raptor_sequence.c: autodocs
* src/raptor_xml.c (raptor_xml_escape_string): autodocs escapes
* src/ntriples_parse.c, src/raptor.h, src/raptor_feature.c,
src/raptor_general.c, src/raptor_identifier.c,
src/raptor_iostream.c, src/raptor_locator.c,
src/raptor_namespace.c, src/raptor_nfc.c, src/raptor_nfc_test.c,
src/raptor_parse.c, src/raptor_qname.c, src/raptor_rdfxml.c,
src/raptor_rfc2396.c, src/raptor_sequence.c,
src/raptor_serialize.c, src/raptor_serialize_rdfxmla.c,
src/raptor_set.c, src/raptor_stringbuffer.c, src/raptor_uri.c,
src/raptor_utf8.c, src/raptor_www.c, src/raptor_www_libwww.c,
src/raptor_xml.c, src/raptor_xml_writer.c, src/turtle_common.c:
autodocs reformatted for gtk-doc
* docs/tmpl/section-constants.sgml,
docs/tmpl/section-feature.sgml, docs/tmpl/section-general.sgml,
docs/tmpl/section-iostream.sgml, docs/tmpl/section-locator.sgml,
docs/tmpl/section-memory.sgml, docs/tmpl/section-parser.sgml,
docs/tmpl/section-sequence.sgml,
docs/tmpl/section-serializer.sgml,
docs/tmpl/section-stringbuffer.sgml,
docs/tmpl/section-triples.sgml, docs/tmpl/section-unicode.sgml,
docs/tmpl/section-unused.sgml, docs/tmpl/section-uri-factory.sgml,
docs/tmpl/section-uri.sgml, docs/tmpl/section-www.sgml,
docs/tmpl/section-xml-namespace.sgml,
docs/tmpl/section-xml-qname.sgml, docs/tmpl/section-xml.sgml:
initial templates
* docs/raptor-docs.xml: fix
* docs/raptor-docs.xml, docs/raptor-overrides.txt,
docs/raptor-sections.txt: gtk-doc files
* docs/Makefile.am, configure.ac: Enable gtk-doc
* configure.ac: check for gtk-doc
2005-08-19 Dave Beckett
* src/raptor-config.1: Document --features and --help. Order
flags alphabetically in summary and body.
* src/raptor-config.in: Add --features argument to list configured
or discovered features of the raptor library
* configure.ac: Add AC_SUBSTs for recording discovered features:
RAPTOR_WWW_LIBRARY (or none), RAPTOR_XML_PARSER (or none),
RAPTOR_PARSERS (list) and RAPTOR_SERIALIZERS (list).
2005-08-18 Dave Beckett
* src/raptor_sax2.c (raptor_sax2_parse_start): Fix for expat
* src/raptor_rdfxml.c (raptor_xml_unparsed_entity_decl_handler,
raptor_xml_external_entity_ref_handler): Casts for gcc4
* src/raptor_expat.c (raptor_expat_init): Casts for expat to use
sax2 handlers.
* src/raptor_internal.h: Move raptor_sax2 declaration outside
libxml-only block Fixup general arguments for
raptor_xml_unparsed_entity_decl_handler and
raptor_xml_external_entity_ref_handler.
* src/raptor_rdfxml.c (raptor_xml_unparsed_entity_decl_handler,
raptor_xml_external_entity_ref_handler): Generalise args from
expat-specific.
(raptor_xml_parse_init): Init sax2 handler fields
* src/raptor_libxml.c (raptor_libxml_init): Use sax2 structure
handlers
* src/raptor_expat.c (raptor_expat_init): Use sax2 structure
handlers
* src/raptor_internal.h: raptor_sax2 gains handlers for start/end
element, characters, cdata, comment, unparsed entity declaration,
extenal entity reference.
* src/raptor_sax2.c (raptor_sax2_parse_start): Init expat and
libxml the same
* src/raptor_libxml.c (raptor_libxml_init): Take raptor_sax2* and
raptor_uri* args
* src/raptor_expat.c (raptor_expat_init): Take raptor_sax2* and
raptor_uri* args
* src/raptor_internal.h: raptor_libxml_init and raptor_expat_init
take same args
* src/turtle_parser.y, src/raptor_xslt.c, src/raptor_rss.c,
src/raptor_rdfxml.c, src/raptor_guess.c, src/ntriples_parse.c,
src/n3_parser.y: Update uses of raptor_parser_register_factory to
remove alias argument and add calls to
raptor_parser_factory_add_alias for raptor
(rdfxml) and ntriplesplus (turtle)
* src/raptor_internal.h: Update raptor_parser_register_factory
prototype to return the registered factory and remove the alias
arg. Added prototype for raptor_parser_factory_add_alias
* src/raptor_parse.c (raptor_parser_register_factory): Now returns
the registered factory. Removed alias arg into new function:
(raptor_parser_factory_add_alias): Added.
2005-08-17 Dave Beckett
* src/Makefile.am: maintainer clean n3 files
* src/Makefile.am: clean n3 tests
* src/n3_lexer.l (n3_lexer_syntax_error): Added, from turtle.
* src/n3_lexer.l: Added n3_lexer_syntax_error
(<LITERAL>\"\"\"): Copy just the len and always terminate the
string.
(n3_copy_string_token): Handle empty strings without stringbuffer
and use raptor_stringbuffer_append_turtle_string for escapes.
Ensure string is always termianted.
* src/n3_common.h: added stringbuffer field
* src/turtle_parser.y: Expect 9 conflicts. Added FLOATING_LITERAL
(FLOATING_LITERAL): Use raptor_new_identifier_from_double common
with n3.
* src/n3_parser.y (FLOATING_LITERAL): Use
raptor_new_identifier_from_double common with turtle.
* src/turtle_lexer.l (<LITERAL>\"\"\"): Copy just the len and
always terminate the string. Added doubles to Turtle.
(turtle_copy_string_token): Handle empty strings without
stringbuffer. Ensure string is always termianted.
(turtle_token_print): Print FLOATING_LITERAL
* tests/turtle/test-20.ttl, tests/turtle/test-20.out,
tests/turtle/Makefile.am: Add test-20 for empty literals
* tests/turtle/Makefile.am: re-add test-19
2005-08-16 Dave Beckett
* src/raptor_internal.h: Added raptor_new_identifier_from_double
pointer
* src/raptor_xsd.c: raptor_xsd.c
* src/Makefile.am: Added raptor_xsd.c
* src/n3_parser.y, src/n3_lexer.l: Add double constants to N3
parser
* src/n3_lexer.l (main): Make uri_string an unsigned char*
* tests/turtle/Makefile.am: remove test-19 for now, no double
constants
* tests/turtle/Makefile.am, tests/turtle/test-19.out,
tests/turtle/test-19.ttl: added test-19 for 1.0 as a double
* src/Makefile.am: Add turtle_common.c
* tests/turtle/test-18.out: Remove header/footer
* src/turtle_parser.y: 2005
* src/turtle_lexer.l: Added turtle_lexer_syntax_error Build up
long strings inside a stringbuffer with
raptor_stringbuffer_append_turtle_string and avoid greedy match of
"""s
(turtle_copy_string_token): Use
raptor_stringbuffer_append_turtle_string
(turtle_lexer_syntax_error): Added.
* src/raptor_internal.h: Added
raptor_stringbuffer_append_turtle_string prototype
* src/turtle_common.h: Added raptor_stringbuffer* field sb
* src/turtle_common.c: Raptor Turtle common code with
raptor_stringbuffer_append_turtle_string from raptor_turtle.l
* tests/turtle/Makefile.am, tests/turtle/test-18.out,
tests/turtle/test-18.ttl: Added test-18 for multiple long literals
with escapes
* src/raptor_serialize_rss.c (raptor_rss10_emit_item): Die in
debug mode with NULL item - all calls to this are currently
wrapped with a check.
(raptor_rss10_emit_item): Do not emit atom author when no such
item exists.
* manifest.pl: typo
2005-08-11 Dave Beckett
* autogen.sh: Rewrite with functions, generalize to any redland
package. Add docs.
* raptor.spec.in: - Update Source:
- Use %makeinstall
2005-08-10 Dave Beckett
* raptor.spec.in: Use %configure and %{_make}
2005-08-08 Dave Beckett
* src/raptor_rss_common.c, src/raptor_rss.c,
src/raptor_internal.h: Move time.h and sys/time.h #ifdef and
includes to raptor_internal.h since time_t is mentioned there and
visible to all files.
* tests/Makefile.am: adjust -I to point to srcdir for
raptor_empty_test
2005-07-31 Dave Beckett
* src/raptor_xml_writer.c (main): syntax
* src/raptor_uri.c: Add (void) casts for fwrite debug messages
* src/raptor_xml_writer.c, src/raptor_rdfxml.c, src/raptor_nfc_test.c:
Add (void) casts for fwrite debug messages
* Source re-organisation - libraptor code moved to new src/ dir.
rapper and rdfdif moved to new utils/ dir. Other manual pages to
docs/.
2005-07-27 Dave Beckett
* Makefile.am: Add n3_lexer_test, n3_parser_test for maintainer
* n3_parser.y, turtle_parser.y (main): Make it compile
* n3_parser.y: Updates from turtle_parser.y:
gcc4 ignored return warning fixes:
(main): Check fread() return value and throw a user error.
(main): Fix for gcc4
(main) Move filename here
* examples/grapper.c: Add author url
* raptor_rss.c (raptor_rss_uplift_fields): Add possibility of
normalizing fields, but no code to do it yet.
* raptor_rss_common.c (raptor_rss_date_uplift): fail and do
nothing if function returns <0
* raptor_rss.c (raptor_rss_uplift_fields): Moved date code into
raptor_rss_date_uplift and call it.
* raptor_rss.h: Added raptor_rss_date_uplift prototype
* raptor_rss_common.c (raptor_rss_date_uplift): Added, pulled out
of raptor_rss.c
* turtle_parser.y: gcc4 ignored return warning fixes:
(main): Check fread() return value and throw a user error.
2005-07-25 Dave Beckett
* examples/grapper.c (fs_ok_button_callback): Protect from
defining when when not used as a callback.
(open_button_callback): cast for gcc4
2005-07-24 Dave Beckett
* raptor_rss.c (raptor_rss_parser_processNode): for rss:link and
atom:link with href, allow multiple link for atom, and continue to
ignore all but <link rel="altenrate"> for rss.
* raptor_rss_common.c: Tidying.
Added atom:feed and atom:entry to raptor_rss_types_info.
Declare atom namespace URI string raptor_atom_namespace_uri
* raptor_rss.h: Added RAPTOR_ATOM_FEED, RAPTOR_ATOM_ENTRY.
* raptor_serialize_rss.c: Add atom 1.0 serializing by generalising
rss 1.0 serializing. Change field names to reflect this
rdf_nspace -> default_nspace, rdf_RDF_element -> root_element.
Add is_atom flag.
(raptor_rss10_serialize_init): Init is_atom flag.
(raptor_rss10_move_statements, raptor_rss10_store_statement):
Rename back fields translated to rss: namespace.
(raptor_rss10_build_xml_names): Init namespace qname for rss/atom.
Declare the default namespace to rss/atom. Ignore all item types
but rss:item for atom; all but atom:author for rss. For item node
type use atom:entry / rss:item.
(raptor_rss10_emit_item): Add emit_container flag to prevent
generating the containing elements. For atom:author, generate it
inline for atom, ignore it for rss. When generating URI-valued
fields for atom, make them element content. For atom, do not
generate rdf:Seq block.
(raptor_rss10_serialize_end): Only emit node type rss:item (aka
atom:entry) for atom.
(raptor_init_serializer_atom): Added.
* configure.ac: Added atom serializer, enabled for maintainer
only.
* raptor_general.c (raptor_init): Add call to
raptor_init_serializer_atom if enabled
* raptor_internal.h: Added prototype for
raptor_init_serializer_atom Added raptor_atom_namespace_uri
* raptor_serialize_rss.c (raptor_rss10_serialize_end): End with an
error if no rss channel was found.
* Makefile.am: Use RAPTOR_SERIALIZER_RSS_1_0 for new separate rss
serializer. Use RAPTOR_RSS_COMMON when either rss parser or
serializer is needed.
* configure.ac: RSS 1.0 serializer is always available and does
not need the libxml requirements of the RSS tag soup parser.
Added RAPTOR_SERIALIZER_RSS_1_0 define and makefile conditional.
Added RAPTOR_RSS_COMMON when any rss code is needed.
* raptor_rss.c, raptor_rss_common.c, raptor_serialize_rss.c: Moved
common code between parser and serializer from raptor_rss.c into
new raptor_rss_common.c as new class raptor_rss_model. Moved
rss-1.0 serializer into new raptor_serialize_rss.c. Both can be
compiled independent of the other.
* raptor_rss.h: Redland Parser Toolkit Internal RSS Model and API
* raptor_internal.h: Add RAPTOR_PARSEDATE_FUNCTION macro for
parsedate.c
* raptor_general.c (raptor_init): Use define
RAPTOR_SERIALIZER_RSS_1_0 to call raptor_init_serializer_rss10
* raptor_xml.c, raptor_sax2.c: Moved raptor_new_xml_element,
raptor_free_xml_element, raptor_xml_element_set_attributes,
raptor_xml_element_declare_namespace, raptor_print_xml_element,
raptor_iostream_write_xml_element from raptor_sax2.c to
raptor_xml.c
2005-07-23 Dave Beckett
* raptor_rss.c: More base URIs on base URIs fixes.
(raptor_rss_parser_processNode): Ensure base URI is always copied
at start element, always freed at end element. Make sure xml:base
processing is done for all elements including document and
typed-node ones.
(raptor_rss_parse_chunk): Remove duplicate document base URI
setting.
2005-07-22 Dave Beckett
* raptor_rss.c: raptor_rss_info gains flags field to store
RAPTOR_RSS_INFO_FLAG_URI_VALUE where the value of the element
<foo>value</foo> is always a URI. Apply that to atom:id,
atom:icon and atom:logo. struct raptor_rss_parser_context_s gains
a sequence of base URIs per-element.
(raptor_rss_context_init, raptor_rss_context_terminate): Init and
free sequence of base URIs.
(raptor_rss_parse_start): Start base URI sequence with parser base
URI.
(raptor_rss_parser_processNode): Init base_uri from top of stack
of base URIs. Update base_uri from an xml:base arg, relative to
the current base URI. Use the base URI for all URi constructions.
Push the new base URI after an element has been found. Pop the
base URI at the end of an element. At the end of an element, if
the field always has a URI value, convert it.
(raptor_rss_parse_chunk): Init the URI sequence with the parser
base URI.
* raptor_rss.c: map raptor_atom_to_rss: turn more atom cloned rss
fields into rss fields.
(raptor_rss_uplift_fields): Change default action to copy
(duplicate) fields.
(raptor_rss10_emit_item): Do not emit link to atom:author types in
rss1.0
(raptor_rss10_serialize_end): Do not emit atom:author type in
rss1.0
* raptor_rss.c: Added atom 1.0 namespace (ATOM1_0_NAMESPACE_URI,
ASTOM1_0_NS) and terms. Turn old atom 0.3 terms into 1.0 versions
where known using raptor_atom_to_rss.
(raptor_rss_parser_processNode): Handle atom feed element
properly, make a new channel item. Convert atom 0.3 namespaced
elements to atom 1.0 Use atom:id to get a URI for the feed/entry
Copy atom:published to dc:date and atom:rights to dc:rights via
raptor_rss_uplift_map.
(raptor_rss_uplift_fields): Copy dc:date and atom:rights
* raptor_rss.c: Added content: namespace CONTENT_NAMESPACE_URI,
prefix "content:"
Added content:encoded field RAPTOR_RSS_FIELD_CONTENT_ENCODED
(raptor_rss_uplift_fields): Added an uplift from description to
content:encoded
(raptor_rss10_emit_item): Write content:encoded using
<![CDATA[...]]>
2005-07-19 Dave Beckett
* raptor_guess.c (raptor_guess_parse_chunk): unused var parser
* ntriples_parse.c (raptor_init_parser_ntriples): Do not register
interest in text/plain -- too general.
2005-07-18 Dave Beckett
* raptor_guess.c: Slim down, to use raptor_parser_exec.
(raptor_guess_parse_start): Deleted again.
(raptor_guess_parse_chunk): Use guessing and raptor_parser_exec to
switch to the right parser.
* raptor_internal.h: Added prototype to raptor_parser_exec
* raptor_parse.c (raptor_parser_exec): Added to turn one parser
type into another in-situ.
* rdfdump.c: make -g invoke the guess parser and report the
resulting parser at the first triple returned
* raptor_guess.c (raptor_guess_parse_start): Added.
(raptor_guess_parse_chunk): Pass in buffer to
raptor_guess_parser_name since we have it. Work with no
content_type such as when using a filename alone.
* ntriples_parse.c (raptor_ntriples_parse_chunk): Handle ending on
\r\n by updating 'start' by 1 position.
* ntriples_parse.c (raptor_ntriples_term): Check sscanf return to
catch bad \u or \U hex escape.
* turtle_lexer.l (turtle_copy_string_token): Check sscanf return
to catch bad \u or \U hex escape.
* raptor_general.c (raptor_init): Added guessing parser
* configure.ac, Makefile.am: Added raptor_guess.c
* raptor_guess.c: guessing parser using content type and an
internal parser
* raptor_xslt.c (raptor_xslt_parse_start): No need to init column,
byte locator.
* raptor_rdfxml.c (raptor_xml_parse_recognise_syntax): Guess that
application/xml is likely RDF/XML
* raptor_internal.h: raptor_parser_factory_s gains a
content_type_handler field.
* raptor_parse.c (raptor_start_parse): Init locator line, column,
byte to -1 (unknown)
(raptor_parse_uri_content_type_handler): Added to handle
raptor_www content type field return. Pass on to factory method
content_type_handler if present.
(raptor_parse_uri_with_connection): Init
raptor_parse_uri_content_type_handler to receive raptor_www
callbacks using raptor_www_set_content_type_handler.
(raptor_guess_parser_name): Check static buffer size for overflow.
Add some comments.
* raptor_xslt.c (raptor_xslt_parse_start): Use
raptor_parser_copy_user_state
* raptor_parse.c (raptor_parser_copy_user_state): Added.
* raptor_internal.h: Added prototype for raptor_parser_copy_user_state
* tests/ex-58.rdf, tests/ex-58.out, tests/Makefile.am: Added ex-58.
See http://lists.w3.org/Archives/Public/www-archive/2005Jul/0017.html
for discussion.
* raptor_rdfxml.c (raptor_end_element_grammar): When emitting
literals, handle a datatyped empty literal. Merge the property
element/member property element code.
* tests/ex-57.rdf, tests/ex-57.out, tests/Makefile.am: Added ex-57.
See http://lists.w3.org/Archives/Public/www-rdf-comments/2005AprJun/0000.html
for discussion.
2005-07-13 Dave Beckett
* turtle_lexer.l: Switch qname, blank node and prefix definitions
to SPARQL ones.
(main): Fixes for gcc4
* turtle_parser.y (main): Fix for gcc4
* raptor_utf8.c (raptor_unicode_is_xml11_namechar):
Call raptor_unicode_is_xml11_namestartchar.
2005-07-01 Dave Beckett