forked from 0u812/raptor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.14
1854 lines (1461 loc) · 67.2 KB
/
ChangeLog.14
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
2013-12-30 Dave Beckett <[email protected]>
* src/parsedate.y: bison %pure-parser
* src/turtle_parser.y: bison %define api.push-pull pull
* tests/ntriples/Makefile.am: Add bug-562.out to dist
* src/raptor_json_writer.c:
(raptor_json_writer_literal_object): No need for strlen
* src/raptor_json_writer.c:
(raptor_json_writer_quoted): No need for strlen
* src/raptor_internal.h, src/raptor_json_writer.c: Add size arg to
raptor_json_writer_blank_object
(raptor_json_writer_blank_object): use len and save a strlen
(raptor_json_writer_term): Update call to above
* src/raptor_internal.h, src/raptor_json_writer.c: Add len arg to
raptor_json_writer_literal_object
(raptor_json_writer_literal_object): Remove use of
raptor_json_writer_quoted for constant string.
* src/raptor_json_writer.c, src/raptor_serialize_json.c: Use
raptor_json_writer_term() in several places
(raptor_json_serialize_statement): Use raptor_json_writer_term()
for s, p, o.
(raptor_json_serialize_avltree_visit): Use
raptor_json_writer_term() for final object.
* src/raptor_internal.h, src/raptor_json_writer.c:
(raptor_json_writer_term): Added
* src/raptor_internal.h, src/raptor_json_writer.c,
src/raptor_serialize_json.c: Inline constant args for
raptor_json_writer_literal_object
(raptor_json_writer_literal_object): Was always called with same
constants so inline them and update callers.
2013-12-29 Dave Beckett <[email protected]>
* src/raptor_serialize_turtle.c: Use
raptor_turtle_writer_raw_counted to save strlen()s
* src/raptor_internal.h, src/raptor_serialize_rdfxmla.c,
src/raptor_serialize_turtle.c: Add RAPTOR_DEBUG_ABBREV_NODE for
abbreviated serializing debugging
Update RDF/XML-Abbrev and Turtle serializer to use it
* src/ntriples_parse.c:
Allow ' in <URI>
Fixes Issue #0000562
http://bugs.librdf.org/mantis/view.php?id=562
* tests/ntriples/Makefile.am, tests/ntriples/bug-562.nt,
tests/ntriples/bug-562.out: Add bug-562 test files for Issue
#0000562
2013-12-13 Dave Beckett <[email protected]>
* src/raptor_term.c:
(raptor_new_term_from_counted_string): Fix memset transposed args.
* NEWS.html: word
* CMakeLists.txt, NEWS.html, RELEASE.html, configure.ac: Bumped
version to 2.0.13
* Snapshotted raptor2_2_0_12 for 2.0.12 release (GIT f38f4182b8d90a8f457e856e8eaa93cb1f135322)
2013-12-07 Dave Beckett <[email protected]>
* configure.ac, src/raptor_internal.h: Add a configure test for
__func__ since it's not always a macro
* tests/nquads-2013/README: Add nquads test README
* src/ntriples_parse.c: Make N-Triples / N-Quads parser more
carefully handle NUL
(raptor_ntriples_parse_chunk): Looks for end_ptr rather than NUL
when searching for \n or \r. It also checks for \\ and " 's
* src/ntriples_parse.c: Fix code in #ifdef RASQAL_DEBUG
* src/ntriples_parse.c: Improve debug messages
* src/ntriples_parse.c:
(raptor_ntriples_parse_line): No triple if one term failed
* src/raptor_ntriples.c:
(raptor_parse_turtle_term_internal): Allow 2.0E-1
2013-12-05 Dave Beckett <[email protected]>
* src/raptor_rfc2396.c:
(raptor_uri_normalize_path): end when string does
* configure.ac, tests/Makefile.am, tests/nquads-2013/Makefile.am,
tests/nquads-2013/comment_following_triple.nq,
tests/nquads-2013/langtagged_string.nq,
tests/nquads-2013/lantag_with_subtag.nq,
tests/nquads-2013/literal.nq,
tests/nquads-2013/literal_all_controls.nq,
tests/nquads-2013/literal_all_punctuation.nq,
tests/nquads-2013/literal_false.nq,
tests/nquads-2013/literal_true.nq,
tests/nquads-2013/literal_with_2_dquotes.nq,
tests/nquads-2013/literal_with_2_squotes.nq,
tests/nquads-2013/literal_with_BACKSPACE.nq,
tests/nquads-2013/literal_with_CARRIAGE_RETURN.nq,
tests/nquads-2013/literal_with_CHARACTER_TABULATION.nq,
tests/nquads-2013/literal_with_FORM_FEED.nq,
tests/nquads-2013/literal_with_LINE_FEED.nq,
tests/nquads-2013/literal_with_REVERSE_SOLIDUS.nq,
tests/nquads-2013/literal_with_REVERSE_SOLIDUS2.nq,
tests/nquads-2013/literal_with_UTF8_boundaries.nq,
tests/nquads-2013/literal_with_dquote.nq,
tests/nquads-2013/literal_with_numeric_escape4.nq,
tests/nquads-2013/literal_with_numeric_escape8.nq,
tests/nquads-2013/literal_with_squote.nq,
tests/nquads-2013/manifest.ttl,
tests/nquads-2013/minimal_whitespace.nq,
tests/nquads-2013/nq-syntax-bad-literal-01.nq,
tests/nquads-2013/nq-syntax-bad-literal-02.nq,
tests/nquads-2013/nq-syntax-bad-literal-03.nq,
tests/nquads-2013/nq-syntax-bad-quint-01.nq,
tests/nquads-2013/nq-syntax-bad-uri-01.nq,
tests/nquads-2013/nq-syntax-bnode-01.nq,
tests/nquads-2013/nq-syntax-bnode-02.nq,
tests/nquads-2013/nq-syntax-bnode-03.nq,
tests/nquads-2013/nq-syntax-bnode-04.nq,
tests/nquads-2013/nq-syntax-bnode-05.nq,
tests/nquads-2013/nq-syntax-bnode-06.nq,
tests/nquads-2013/nq-syntax-uri-01.nq,
tests/nquads-2013/nq-syntax-uri-02.nq,
tests/nquads-2013/nq-syntax-uri-03.nq,
tests/nquads-2013/nq-syntax-uri-04.nq,
tests/nquads-2013/nq-syntax-uri-05.nq,
tests/nquads-2013/nq-syntax-uri-06.nq,
tests/nquads-2013/nt-syntax-bad-base-01.nq,
tests/nquads-2013/nt-syntax-bad-esc-01.nq,
tests/nquads-2013/nt-syntax-bad-esc-02.nq,
tests/nquads-2013/nt-syntax-bad-esc-03.nq,
tests/nquads-2013/nt-syntax-bad-lang-01.nq,
tests/nquads-2013/nt-syntax-bad-num-01.nq,
tests/nquads-2013/nt-syntax-bad-num-02.nq,
tests/nquads-2013/nt-syntax-bad-num-03.nq,
tests/nquads-2013/nt-syntax-bad-prefix-01.nq,
tests/nquads-2013/nt-syntax-bad-string-01.nq,
tests/nquads-2013/nt-syntax-bad-string-02.nq,
tests/nquads-2013/nt-syntax-bad-string-03.nq,
tests/nquads-2013/nt-syntax-bad-string-04.nq,
tests/nquads-2013/nt-syntax-bad-string-05.nq,
tests/nquads-2013/nt-syntax-bad-string-06.nq,
tests/nquads-2013/nt-syntax-bad-string-07.nq,
tests/nquads-2013/nt-syntax-bad-struct-01.nq,
tests/nquads-2013/nt-syntax-bad-struct-02.nq,
tests/nquads-2013/nt-syntax-bad-uri-01.nq,
tests/nquads-2013/nt-syntax-bad-uri-02.nq,
tests/nquads-2013/nt-syntax-bad-uri-03.nq,
tests/nquads-2013/nt-syntax-bad-uri-04.nq,
tests/nquads-2013/nt-syntax-bad-uri-05.nq,
tests/nquads-2013/nt-syntax-bad-uri-06.nq,
tests/nquads-2013/nt-syntax-bad-uri-07.nq,
tests/nquads-2013/nt-syntax-bad-uri-08.nq,
tests/nquads-2013/nt-syntax-bad-uri-09.nq,
tests/nquads-2013/nt-syntax-bnode-01.nq,
tests/nquads-2013/nt-syntax-bnode-02.nq,
tests/nquads-2013/nt-syntax-bnode-03.nq,
tests/nquads-2013/nt-syntax-datatypes-01.nq,
tests/nquads-2013/nt-syntax-datatypes-02.nq,
tests/nquads-2013/nt-syntax-file-01.nq,
tests/nquads-2013/nt-syntax-file-02.nq,
tests/nquads-2013/nt-syntax-file-03.nq,
tests/nquads-2013/nt-syntax-str-esc-01.nq,
tests/nquads-2013/nt-syntax-str-esc-02.nq,
tests/nquads-2013/nt-syntax-str-esc-03.nq,
tests/nquads-2013/nt-syntax-string-01.nq,
tests/nquads-2013/nt-syntax-string-02.nq,
tests/nquads-2013/nt-syntax-string-03.nq,
tests/nquads-2013/nt-syntax-subm-01.nq,
tests/nquads-2013/nt-syntax-uri-01.nq,
tests/nquads-2013/nt-syntax-uri-02.nq,
tests/nquads-2013/nt-syntax-uri-03.nq,
tests/nquads-2013/nt-syntax-uri-04.nq: Add N-Quads 2013 W3C tests
From http://www.w3.org/2013/N-QuadsTests/ via mercurial and
https://github.com/dajobe/nquads-tests-w3c-mirror
* src/ntriples_parse.c: Check for max allowed terms in N-Triples /
N-Quads
* src/ntriples_parse.c: Fix error extra "
* src/ntriples_parse.c: Check N-Triples and N-Quads are absolute
URIs
* src/ntriples_parse.c: Check N-Quads has 3/4 terms and N-Triples
has 3
(raptor_ntriples_parse_line): Try to find 5th term and error out
if it is.
2013-12-04 Dave Beckett <[email protected]>
* docs/tmpl/section-triples.sgml: Update tmpls
2013-12-03 Dave Beckett <[email protected]>
* src/raptor_uri.c:
(raptor_uri_uri_string_is_absolute): Make a much cheaper test.
* src/raptor_turtle_writer.c:
(main): remove unused var
2013-12-01 Dave Beckett <[email protected]>
* NEWS.html: Add 2.0.11 release link
* RELEASE.html: 2.0.12
2013-11-30 Dave Beckett <[email protected]>
* src/raptor_term.c: Port changes from rasqal_ntriples.c
* src/raptor_ntriples.c:
(raptor_parse_turtle_term_internal): Fix parsing
2013-11-29 Dave Beckett <[email protected]>
* src/ntriples_parse.c, src/raptor_internal.h,
src/raptor_ntriples.c, src/raptor_term.c: Allow reading Turtle
numeric strings
(raptor_ntriples_parse_term): Gains a allow_turtle argument.
(raptor_parse_turtle_term_internal): Added to implement numerics:
xsd:integer, xsd:decimal and xsd:double.
(raptor_new_term_from_counted_string): Update code and docs to
note it allow reading Turtle numeric literals.
* src/raptor_concepts.c, src/raptor_turtle_writer.c,
src/turtle_parser.y: Use XSD namespace, datatype URIs from
raptor_world
* src/raptor_concepts.c, src/raptor_internal.h: Declare xsd
datatypes uris in raptor_world
* src/raptor_json_writer.c: Remove dead code protected by
RAPTOR_JSON_WRITER_DATATYPES
2013-11-28 Dave Beckett <[email protected]>
* src/raptor_ntriples.c, tests/ntriples/test.nt: Check for
N-Triples blank node '.' in positions 2-(N-1)
* src/raptor_ntriples.c:
(raptor_ntriples_parse_term_internal): Internal docs
* docs/raptor-1-to-2-map.tsv, docs/raptor2-sections.txt,
src/raptor2.h.in, src/raptor_internal.h, src/raptor_ntriples.c,
src/raptor_serialize_turtle.c, src/raptor_term.c: Added
raptor_new_term_from_counted_string to write a term as N-Triples
(raptor_new_term_from_counted_string): Added
(raptor_term_to_turtle_counted_string)
(raptor_term_to_turtle_string): Added references to new function
and N-Triples versions below.
(raptor_term_to_counted_string, raptor_term_to_string): Added
reference to new function and Turtle versions above.
* docs/raptor-1-to-2-map.tsv: fix 2.0.11 changes
* src/raptor_ntriples.c: replace references to line with input
* src/ntriples_parse.c: real_terms -> terms
* src/ntriples_parse.c:
(raptor_ntriples_parse_line): No 'x' literal
* src/raptor_ntriples.c:
(raptor_ntriples_parse_term_internal): Renamed from
raptor_ntriples_term
* src/raptor_ntriples.c: Make locator optional
* src/ntriples_parse.c, src/raptor_internal.h,
src/raptor_ntriples.c: Pull all reference to parser out of
raptor_ntriples code
Pass in world and locator objects, just to return errors.
* src/Makefile.am, src/ntriples_parse.c, src/raptor_internal.h,
src/raptor_ntriples.c: Add raptor_ntriples.c module exporting
raptor_ntriples_parse_term Make N-Triples parser use it
* src/ntriples_parse.c:
(raptor_ntriples_parse_term): pull out of
raptor_ntriples_parse_line()
2013-11-27 Dave Beckett <[email protected]>
* .gitignore: ignore .dirstamp
* tests/ntriples/Makefile.am, tests/ntriples/bad-01.nt: N-Triples
2008 test bad-01.nt is now valid N-Triples 2013
* src/ntriples_parse.c:
(raptor_ntriples_term_valid): Do not allow . in bnode
This isn't correct; '.' is allowed in positions 1..N-1 but this
calling convention of character-by-character cannot check this.
* src/ntriples_parse.c, tests/ntriples-2013/Makefile.am: N-Triples
2013: fix bnode ID check
(raptor_ntriples_term_valid): For bnodes, allow leading digits, _
and : Allow trailing - and . Fixes N-Triples test
nt-syntax-bnode-03.nt No remaining failures
* src/ntriples_parse.c, tests/ntriples-2013/Makefile.am: N-Triples
2013: allow \b and \f escapes
(raptor_ntriples_term): Add \b and \f to escape check. Fixes
N-Triples tests literal_with_BACKSPACE.nt and
literal_with_FORM_FEED.nt 1 remaining failure
* src/ntriples_parse.c, tests/ntriples-2013/Makefile.am: N-Triples
2013: allow no whitespace between terms
(raptor_ntriples_parse_line): Remove whitespace check. Fixes
N-Triples test minimal_whitespace.nt 3 remaining failures
* tests/ntriples-2013/Makefile.am: check-good-ntriples: fix return
result
* tests/ntriples-2013/Makefile.am: Run latest set of N-Triples
tests: 4 expected failures
* tests/ntriples-2013/comment_following_triple.nt,
tests/ntriples-2013/langtagged_string.nt,
tests/ntriples-2013/lantag_with_subtag.nt,
tests/ntriples-2013/literal.nt,
tests/ntriples-2013/literal_all_controls.nt,
tests/ntriples-2013/literal_all_punctuation.nt,
tests/ntriples-2013/literal_false.nt,
tests/ntriples-2013/literal_true.nt,
tests/ntriples-2013/literal_with_2_dquotes.nt,
tests/ntriples-2013/literal_with_2_squotes.nt,
tests/ntriples-2013/literal_with_BACKSPACE.nt,
tests/ntriples-2013/literal_with_CARRIAGE_RETURN.nt,
tests/ntriples-2013/literal_with_CHARACTER_TABULATION.nt,
tests/ntriples-2013/literal_with_FORM_FEED.nt,
tests/ntriples-2013/literal_with_LINE_FEED.nt,
tests/ntriples-2013/literal_with_REVERSE_SOLIDUS.nt,
tests/ntriples-2013/literal_with_REVERSE_SOLIDUS2.nt,
tests/ntriples-2013/literal_with_UTF8_boundaries.nt,
tests/ntriples-2013/literal_with_dquote.nt,
tests/ntriples-2013/literal_with_numeric_escape4.nt,
tests/ntriples-2013/literal_with_numeric_escape8.nt,
tests/ntriples-2013/literal_with_squote.nt,
tests/ntriples-2013/manifest.ttl,
tests/ntriples-2013/minimal_whitespace.nt,
tests/ntriples-2013/nt-syntax-bnode-03.nt: Updated from N-Triples
tests in Mercurial
2013-11-24 Dave Beckett <[email protected]>
* CMakeLists.txt, NEWS.html, RELEASE.html, configure.ac: Bumped
version to 2.0.12
* ChangeLog:
Snapshotted raptor2_2_0_11 for 2.0.11 release (GIT
74f5b7e9541d734494ef637ab1acd8f1d193ef30)
* librdfa/.gitignore: ignore .o
* docs/tmpl/section-uri.sgml, docs/tmpl/section-xml-qname.sgml:
Update tmpls
* NEWS.html, README.html, ChangeLog:
release docs and changes for 2.0.11
* tests/rdfxml/Makefile.am: Add ex-62.out to dist
* src/raptor_qname.c: autodocs
* docs/raptor-1-to-2-map.tsv, docs/raptor2-sections.txt: Add
raptor_qname_format_as_xml to docs
* src/raptor_qname.c: Fix pointer as integer issue
(raptor_qname_format_as_xml): Pass in integer to
raptor_xml_escape_string length arg.
* tests/feeds/test01-result.atom, tests/feeds/test02-result.atom,
tests/feeds/test03-result.atom: Updated expected atom feeds output
for serialization attributes newlines
* tests/rdfxml/ex-38-rdfxmla.out: Updated expected output for
serialization attributes newlines
* src/raptor_xml_writer.c: Generate namespaces and attributes and
xml:lang in canonical order.
Fixes Issue #0000554
http://bugs.librdf.org/mantis/view.php?id=554
(raptor_xml_writer_start_element_common): Add attributes and
xml:lang to declarations list and sort, then emit namespaces and
attributes in separate order - as XML C14N wants
* src/raptor2.h.in, src/raptor_qname.c:
(raptor_qname_format_as_xml): Added
* tests/rdfxml/Makefile.am, tests/rdfxml/ex-63.out,
tests/rdfxml/ex-63.rdf: Added ex-63 for Issue #0000554
* src/raptor_rfc2396.c: remove dead condition
* src/raptor_rfc2396.c:
(raptor_uri_resolve_uri_reference): Handle empty ref path
* src/raptor_uri.c:
Normalize file URIs
(raptor_uri_filename_to_uri_string): Use raptor_uri_normalize_path
to normalize the resulting URI
* src/raptor_internal.h, src/raptor_rfc2396.c: Make
raptor_uri_normalize_path internal
* src/raptor_rfc2396.c:
Handle normalizing reference URIs
Fixes Issue #0000556
http://bugs.librdf.org/mantis/view.php?id=556
* src/raptor_rfc2396.c:
Pull out URI normalizing
(raptor_uri_normalize_path): Added and called from
raptor_uri_resolve_uri_reference().
(raptor_uri_resolve_uri_reference): Malloc path_buffer for
hierarchical ref, non-hierarchical base case and copy over, then
normalize.
* docs/raptor-1-to-2-map.tsv, docs/raptor2-sections.txt,
src/ntriples_parse.c, src/raptor2.h.in, src/raptor_uri.c: Renamed
raptor_uri_string_is_absolute to raptor_uri_uri_string_is_absolute
2013-11-16 Dave Beckett <[email protected]>
* tests/test.html, tests/test.svg: remove unused test.html
test.svg files
2013-11-13 Dave Beckett <[email protected]>
* src/ntriples_parse.c:
Use memmove for overlapping copy [llvm address sanitizer]
(raptor_ntriples_term): Use memmove to replace memcpy for an
overlapping copy.
Found via LLVM address sanitizer in LLVM 3.4 (SVN) with options:
export ASAN_SYMBOLIZER_PATH=/usr/bin/llvm-symbolizer-3.4
CC='clang -fsanitize=address -O1 -fno-omit-frame-pointer -g' ./configure ...
See https://code.google.com/p/address-sanitizer/wiki/AddressSanitizer
and http://llvm.org/releases/3.3/tools/clang/docs/AddressSanitizer.html
2013-11-08 Dave Beckett <[email protected]>
* librdfa/Makefile.am: clean plist files
* src/raptor_general.c: 2013
* librdfa/.gitignore: ignore plist
* librdfa/.gitignore: ignore .la
* librdfa/Makefile.am: Fix make distcheck for librdfa.la
* src/Makefile.am: src needs -DLIBRDFA_IN_RAPTOR
* librdfa/Makefile.am: Add analyze target
* librdfa/Makefile.am, src/Makefile.am: librdfa.la as a
convenience library build fixes
Do not build strtok for librdfa unless needed. Move
-DLIBRDFA_IN_RAPTOR include to librdfa dir only
* Makefile.am, librdfa/Makefile.am, src/Makefile.am: Build
librdfa.la as a convenience library
Trying to get away from the noisy subdir-objects warnings and
deprecation messages from newer automakes.
2013-11-02 Dave Beckett <[email protected]>
* configure.ac: Fix clang test
* configure.ac: Check for clang to enable correct discovery of
supported warnings
2013-10-30 Dave Beckett <[email protected]>
* tests/turtle/Makefile.am, tests/turtle/test-35.out: Remove (now)
unused turtle warning tests
2013-10-29 Daniel Richard G <[email protected]>
* configure.ac, src/Makefile.am, tests/Makefile.am,
tests/turtle/Makefile.am: Various build system fixes
configure.ac:
- Place a ":" in the action-if-not-found arguments of the
PKG_CHECK_MODULES() calls for LIBXML and LIBCURL to override the
default action of quitting with an error, as neither of these
libraries are a hard requirement
src/Makefile.am:
- Add parsedate.c to BUILT_SOURCES so that it can be handled
properly
- Move the parsedate.c rule into the MAINTAINER_MODE block, as
only maintainers should be regenerating this file
- Bump the "test" rule down after the test-program rules
tests/Makefile.am:
- Add ntriples-2013 to SUBDIRS to fix configure script invocation
tests/turtle/Makefile.am:
- Add logic to prevent breakage when TEST_WARN_FILES is empty
2013-10-02 Dave Beckett <[email protected]>
* configure.ac, tests/feeds/Makefile.am: Test for jing and skip
feed validation tests if it is missing
2013-09-28 Dave Beckett <[email protected]>
* src/raptor_rss.c:
(raptor_rss_insert_identifiers): Handle NULL uri [clang]
2013-09-15 Dave Beckett <[email protected]>
* src/ntriples_parse.c, src/raptor_internal.h, src/turtle_common.h:
Move raptor_turtle_check_uri_string prototype to raptor_internal.h
2013-09-13 Dave Beckett <[email protected]>
* tests/rdfxml/ex-59.nt, tests/rdfxml/ex-59.rdf,
tests/rdfxml/ex-60.nt, tests/rdfxml/ex-60.rdf: Update tests with
legal N-Triples URIs
2013-09-12 Dave Beckett <[email protected]>
* src/ntriples_parse.c: Check language tag validity
* src/ntriples_parse.c: Use raptor_uri_string_is_absolute to check
datatype URI is abs
* src/ntriples_parse.c: Use raptor_uri_string_is_absolute to
enforce abs URIs for N-Triples
* src/raptor2.h.in, src/raptor_uri.c:
(raptor_uri_string_is_absolute): Added
* src/ntriples_parse.c: Check for bad URIs using turtle function -
FIXME
* src/ntriples_parse.c: Check for illegal unicode escapes.
* src/ntriples_parse.c: Move object_literal_language/datatype to
area of code that uses it.
* src/ntriples_parse.c: Kill use of terms, term_lengths and
term_types
* src/ntriples_parse.c: Make literals once during syntax parsing
Move language normalization to same area of code
* src/ntriples_parse.c: Make URIs in one place during syntax
parsing
* src/ntriples_parse.c: Pass a raptor_term for graph to
raptor_ntriples_generate_statement
* src/ntriples_parse.c: Pass a raptor_term for object to
raptor_ntriples_generate_statement
* src/ntriples_parse.c: Pass a raptor_term for predicate to
raptor_ntriples_generate_statement
* src/ntriples_parse.c: Pass a raptor_term for subject to
raptor_ntriples_generate_statement
(raptor_ntriples_parse_line): Make term here and pass to
raptor_ntriples_generate_statement subject
2013-09-10 Dave Beckett <[email protected]>
* src/ntriples_parse.c: Remove special error for legacy N-Triples
"foo"-LANGTOKEN
* src/ntriples_parse.c:
Remove unused RAPTOR_TERM_CLASS_FULL
* configure.ac, tests/ntriples-2013/Makefile.am,
tests/ntriples-2013/manifest.ttl,
tests/ntriples-2013/nt-syntax-bad-base-01.nt,
tests/ntriples-2013/nt-syntax-bad-esc-01.nt,
tests/ntriples-2013/nt-syntax-bad-esc-02.nt,
tests/ntriples-2013/nt-syntax-bad-esc-03.nt,
tests/ntriples-2013/nt-syntax-bad-lang-01.nt,
tests/ntriples-2013/nt-syntax-bad-num-01.nt,
tests/ntriples-2013/nt-syntax-bad-num-02.nt,
tests/ntriples-2013/nt-syntax-bad-num-03.nt,
tests/ntriples-2013/nt-syntax-bad-prefix-01.nt,
tests/ntriples-2013/nt-syntax-bad-string-01.nt,
tests/ntriples-2013/nt-syntax-bad-string-02.nt,
tests/ntriples-2013/nt-syntax-bad-string-03.nt,
tests/ntriples-2013/nt-syntax-bad-string-04.nt,
tests/ntriples-2013/nt-syntax-bad-string-05.nt,
tests/ntriples-2013/nt-syntax-bad-string-06.nt,
tests/ntriples-2013/nt-syntax-bad-string-07.nt,
tests/ntriples-2013/nt-syntax-bad-struct-01.nt,
tests/ntriples-2013/nt-syntax-bad-struct-02.nt,
tests/ntriples-2013/nt-syntax-bad-uri-01.nt,
tests/ntriples-2013/nt-syntax-bad-uri-02.nt,
tests/ntriples-2013/nt-syntax-bad-uri-03.nt,
tests/ntriples-2013/nt-syntax-bad-uri-04.nt,
tests/ntriples-2013/nt-syntax-bad-uri-05.nt,
tests/ntriples-2013/nt-syntax-bad-uri-06.nt,
tests/ntriples-2013/nt-syntax-bad-uri-07.nt,
tests/ntriples-2013/nt-syntax-bad-uri-08.nt,
tests/ntriples-2013/nt-syntax-bad-uri-09.nt,
tests/ntriples-2013/nt-syntax-bnode-01.nt,
tests/ntriples-2013/nt-syntax-bnode-02.nt,
tests/ntriples-2013/nt-syntax-datatypes-01.nt,
tests/ntriples-2013/nt-syntax-datatypes-02.nt,
tests/ntriples-2013/nt-syntax-file-01.nt,
tests/ntriples-2013/nt-syntax-file-02.nt,
tests/ntriples-2013/nt-syntax-file-03.nt,
tests/ntriples-2013/nt-syntax-str-esc-01.nt,
tests/ntriples-2013/nt-syntax-str-esc-02.nt,
tests/ntriples-2013/nt-syntax-str-esc-03.nt,
tests/ntriples-2013/nt-syntax-string-01.nt,
tests/ntriples-2013/nt-syntax-string-02.nt,
tests/ntriples-2013/nt-syntax-string-03.nt,
tests/ntriples-2013/nt-syntax-subm-01.nt,
tests/ntriples-2013/nt-syntax-uri-01.nt,
tests/ntriples-2013/nt-syntax-uri-02.nt,
tests/ntriples-2013/nt-syntax-uri-03.nt,
tests/ntriples-2013/nt-syntax-uri-04.nt: N-Triples 2013 test suite
Current state: all good tests pass. 13 bad tests fail:
nt-syntax-bad-uri-01.nt nt-syntax-bad-uri-02.nt
nt-syntax-bad-uri-03.nt nt-syntax-bad-uri-04.nt
nt-syntax-bad-uri-06.nt nt-syntax-bad-uri-07.nt
nt-syntax-bad-uri-08.nt nt-syntax-bad-uri-09.nt
nt-syntax-bad-struct-01.nt nt-syntax-bad-struct-02.nt
nt-syntax-bad-lang-01.nt nt-syntax-bad-esc-03.nt
nt-syntax-bad-string-05.nt
2013-09-09 Dave Beckett <[email protected]>
* src/ntriples_parse.c:
Tidy error column/byte offsets for errors
* src/ntriples_parse.c: Support # comments after end of line in
N-Triples / NQuads 2013
* tests/ntriples/nt2013-ex3.out: Write expected result in \uHHHH
form
* tests/ntriples/Makefile.am: check-nt: add rapper failure clause
* tests/ntriples/Makefile.am: make check-nt show error output in a
rapper failure
* tests/ntriples/Makefile.am, tests/ntriples/nt2013-ex1.nt,
tests/ntriples/nt2013-ex1.out, tests/ntriples/nt2013-ex2.nt,
tests/ntriples/nt2013-ex2.out, tests/ntriples/nt2013-ex3.nt,
tests/ntriples/nt2013-ex3.out, tests/ntriples/nt2013-ex4.nt,
tests/ntriples/nt2013-ex4.out: Add ntriples 2013 examples from
spec
2013-08-27 Dave Beckett <[email protected]>
* tests/turtle-2013/Makefile.am: Remove dup tests
* tests/turtle-2013/README,
tests/turtle-2013/localName_with_non_leading_extras.nt: Updated
Turtle W3C tests to latest files from repo
* tests/turtle-2013/Makefile.am: Add the 4 negative eval tests
* CMakeLists.txt, NEWS.html, RELEASE.html, configure.ac: Bumped
version to 2.0.11
* ChangeLog: #changes
* 2.0.10
* NEWS.html, RELEASE.html: 2.0.10
2013-08-25 Dave Beckett <[email protected]>
* src/raptor_xml_writer.c: Make XML writer emit xml:lang on
elements
Fixes Issue #0000548
http://bugs.librdf.org/mantis/view.php?id=548
* src/ntriples_parse.c, src/raptor_internal.h: Revert
"(raptor_normalize_language): Added to normalize to en-US-BLAH"
This reverts commit 7b4788f656546be7abdd87122c03ea005e771c17.
* src/ntriples_parse.c, src/turtle_lexer.l: Revert "Use
raptor_normalize_language to normalize N-Triples and Turtle
inputs"
This reverts commit 74e9fc1160cbb300cb87445bebcca4033a627e56.
Conflicts: src/turtle_lexer.l
2013-08-23 Dave Beckett <[email protected]>
* src/raptor_concepts.c, src/raptor_internal.h: Add rdf:HTML and
rdf:langString from RDF 1.1 concepts
RDF 1.1 Concepts and Abstract Syntax W3C Last Call Working Draft 23
July 2013 http://www.w3.org/TR/2013/WD-rdf11-concepts-20130723/
http://www.w3.org/TR/2013/WD-rdf11-concepts-20130723/#section-html
http://www.w3.org/TR/2013/WD-rdf11-concepts-20130723/#section-Datatypes
2013-08-12 Dave Beckett <[email protected]>
* tests/turtle-2013/Makefile.am: Add 4 bad eval tests to
check-bad-turtle
2013-08-11 Dave Beckett <[email protected]>
* tests/turtle-2013/Makefile.am,
tests/turtle-2013/localName_with_assigned_nfc_bmp_PN_CHARS_BASE_cha
r_boundaries.nt,
tests/turtle-2013/localName_with_assigned_nfc_bmp_PN_CHARS_BASE_cha
r_boundaries.ttl,
tests/turtle-2013/localName_with_assigned_nfc_bmp_PN_CHARS_BASE_cha
racter_boundaries.nt,
tests/turtle-2013/localName_with_assigned_nfc_bmp_PN_CHARS_BASE_cha
racter_boundaries.ttl, tests/turtle-2013/manifest.ttl:
Renamed long turtle 2013 test file so it can be stored in tar
localName_with_assigned_nfc_bmp_PN_CHARS_BASE_character_boundaries*
-> localName_with_assigned_nfc_bmp_PN_CHARS_BASE_char_boundaries*
GNUtar can't handle file names >99 letters
tar: raptor2-2.0.10/tests/turtle-2013/localName_with_assigned_nfc_bmp_PN_CHARS_BASE_character_boundaries.ttl: file name is too long (max 99); not dumped
tar: raptor2-2.0.10/tests/turtle-2013/localName_with_assigned_nfc_bmp_PN_CHARS_BASE_character_boundaries.nt: file name is too long (max 99); not dumped
tar: Exiting with failure status due to previous errors
* tests/turtle-2013/test-38.nt: remove unused test-38.nt
* tests/turtle-2013/Makefile.am: Add all TEST_OUT_FILES
* tests/.gitignore: Ignore raptor_empty_test.trs
* src/turtle_lexer.l: cast for language
* tests/turtle-2013/Makefile.am:
Use turtle parser to read exemplars
* scripts/rdfcompare: rdfcompare
* tests/turtle-2013/anonymous_blank_node_object.nt,
tests/turtle-2013/anonymous_blank_node_subject.nt,
tests/turtle-2013/blankNodePropertyList_as_object.nt,
tests/turtle-2013/blankNodePropertyList_as_subject.nt,
tests/turtle-2013/blankNodePropertyList_containing_collection.nt,
tests/turtle-2013/blankNodePropertyList_with_multiple_triples.nt,
tests/turtle-2013/collection_object.nt,
tests/turtle-2013/collection_subject.nt,
tests/turtle-2013/first.nt,
tests/turtle-2013/labeled_blank_node_object.nt,
tests/turtle-2013/labeled_blank_node_subject.nt,
tests/turtle-2013/labeled_blank_node_with_PN_CHARS_BASE_character_b
oundaries.nt,
tests/turtle-2013/labeled_blank_node_with_leading_digit.nt,
tests/turtle-2013/labeled_blank_node_with_leading_underscore.nt,
tests/turtle-2013/labeled_blank_node_with_non_leading_extras.nt,
tests/turtle-2013/last.nt,
tests/turtle-2013/nested_blankNodePropertyLists.nt,
tests/turtle-2013/nested_collection.nt,
tests/turtle-2013/sole_blankNodePropertyList.nt: Replace official
results with raptor expected ones
* tests/turtle-2013/Makefile.am:
Use rdfcompare to compare
* scripts/Makefile.am: Add rdfcompare
* src/ntriples_parse.c, src/turtle_lexer.l: Use
raptor_normalize_language to normalize N-Triples and Turtle inputs
* src/ntriples_parse.c, src/raptor_internal.h:
(raptor_normalize_language): Added to normalize to en-US-BLAH
* tests/turtle/Makefile.am, tests/turtle/bad-24.ttl,
tests/turtle/test-35.ttl: Turtle test for lang and datatype
warning is now an error Renamed test-35.ttl to bad-24.ttl
* tests/turtle-2013/literal_with_escaped_BACKSPACE.nt: Added
missing literal_with_escaped_BACKSPACE.nt
* tests/turtle-2013/Makefile.am: Report normalize N-Triples diff
* tests/turtle-2013/Makefile.am: Normalize N-Triples expected
output before comparing them with diff
* src/raptor2.h.in:
Make N-Triples allow writing \b and \f
* src/ntriples_parse.c: Always allow UTF-8 in N-Triples strings
and URIs (N-Triples 2013)
(raptor_ntriples_term): Remove allow_utf8 arg and always set it
true.
* src/ntriples_parse.c, src/raptor_serialize_ntriples.c: Use
N-Triples 2013 mime type
* src/turtle_common.c:
Allow \b \f escapes in Turtle strings
2013-08-10 Dave Beckett <[email protected]>
* src/turtle_parser.y: Make turtle literals with language and
datatype an error (Turtle 2013)
Makes test
turtle-syntax-bad-LITERAL2_with_langtag_and_datatype.ttl fail as
it should.
* tests/turtle-2013/Makefile.am: Count and report errors for good
tests
* tests/turtle-2013/Makefile.am: Update BASE_URI
* tests/turtle-2013/Makefile.am: Updated for Turtle 2013 tests
* tests/turtle-2013/LITERAL_LONG2_with_UTF8_boundaries.ttl: add
missing LITERAL_LONG2_with_UTF8_boundaries.ttl
* tests/turtle-2013/IRI_subject.nt,
tests/turtle-2013/IRI_with_eight_digit_numeric_escape.nt,
tests/turtle-2013/IRI_with_four_digit_numeric_escape.nt,
tests/turtle-2013/LITERAL1_with_UTF8_boundaries.nt,
tests/turtle-2013/LITERAL2.nt,
tests/turtle-2013/LITERAL2_with_UTF8_boundaries.nt,
tests/turtle-2013/LITERAL_LONG1.nt,
tests/turtle-2013/LITERAL_LONG1_with_UTF8_boundaries.nt,
tests/turtle-2013/LITERAL_LONG2.nt,
tests/turtle-2013/LITERAL_LONG2_with_UTF8_boundaries.nt,
tests/turtle-2013/SPARQL_style_base.nt,
tests/turtle-2013/SPARQL_style_prefix.nt,
tests/turtle-2013/anonymous_blank_node_object.nt,
tests/turtle-2013/anonymous_blank_node_subject.nt,
tests/turtle-2013/bareword_integer.nt,
tests/turtle-2013/comment_following_localName.nt,
tests/turtle-2013/default_namespace_IRI.nt,
tests/turtle-2013/labeled_blank_node_with_PN_CHARS_BASE_character_b
oundaries.nt,
tests/turtle-2013/labeled_blank_node_with_leading_digit.nt,
tests/turtle-2013/labeled_blank_node_with_leading_underscore.nt,
tests/turtle-2013/labeled_blank_node_with_non_leading_extras.nt,
tests/turtle-2013/langtagged_LONG.nt,
tests/turtle-2013/literal_with_escaped_CARRIAGE_RETURN.nt,
tests/turtle-2013/literal_with_escaped_CHARACTER_TABULATION.nt,
tests/turtle-2013/literal_with_escaped_FORM_FEED.nt,
tests/turtle-2013/literal_with_escaped_LINE_FEED.nt,
tests/turtle-2013/literal_with_numeric_escape8.nt,
tests/turtle-2013/old_style_base.nt,
tests/turtle-2013/old_style_prefix.nt,
tests/turtle-2013/prefix_only_IRI.nt,
tests/turtle-2013/prefix_with_PN_CHARS_BASE_character_boundaries.nt
, tests/turtle-2013/prefix_with_non_leading_extras.nt,
tests/turtle-2013/prefixed_IRI_object.nt,
tests/turtle-2013/prefixed_IRI_predicate.nt,
tests/turtle-2013/prefixed_name_datatype.nt,
tests/turtle-2013/repeated_semis_at_end.nt,
tests/turtle-2013/sole_blankNodePropertyList.nt: Add .nt versions
of shared result files
* tests/turtle-2013/HYPHEN_MINUS_in_localName.nt,
tests/turtle-2013/HYPHEN_MINUS_in_localName.ttl,
tests/turtle-2013/IRIREF_datatype.nt,
tests/turtle-2013/IRIREF_datatype.ttl,
tests/turtle-2013/IRI_spo.nt, tests/turtle-2013/IRI_subject.ttl,
tests/turtle-2013/IRI_with_all_punctuation.nt,
tests/turtle-2013/IRI_with_all_punctuation.ttl,
tests/turtle-2013/IRI_with_eight_digit_numeric_escape.ttl,
tests/turtle-2013/IRI_with_four_digit_numeric_escape.ttl,
tests/turtle-2013/LICENSE, tests/turtle-2013/LITERAL1.nt,
tests/turtle-2013/LITERAL1.ttl,
tests/turtle-2013/LITERAL1_all_controls.nt,
tests/turtle-2013/LITERAL1_all_punctuation.nt,
tests/turtle-2013/LITERAL1_all_punctuation.ttl,
tests/turtle-2013/LITERAL1_ascii_boundaries.nt,
tests/turtle-2013/LITERAL1_with_UTF8_boundaries.ttl,
tests/turtle-2013/LITERAL2.ttl,
tests/turtle-2013/LITERAL2_ascii_boundaries.nt,
tests/turtle-2013/LITERAL2_with_UTF8_boundaries.ttl,
tests/turtle-2013/LITERAL_LONG1.ttl,
tests/turtle-2013/LITERAL_LONG1_ascii_boundaries.nt,
tests/turtle-2013/LITERAL_LONG1_with_1_squote.nt,
tests/turtle-2013/LITERAL_LONG1_with_1_squote.ttl,
tests/turtle-2013/LITERAL_LONG1_with_2_squotes.nt,
tests/turtle-2013/LITERAL_LONG1_with_2_squotes.ttl,
tests/turtle-2013/LITERAL_LONG1_with_UTF8_boundaries.ttl,
tests/turtle-2013/LITERAL_LONG2.ttl,
tests/turtle-2013/LITERAL_LONG2_ascii_boundaries.nt,
tests/turtle-2013/LITERAL_LONG2_with_1_squote.nt,
tests/turtle-2013/LITERAL_LONG2_with_1_squote.ttl,
tests/turtle-2013/LITERAL_LONG2_with_2_squotes.nt,
tests/turtle-2013/LITERAL_LONG2_with_2_squotes.ttl,
tests/turtle-2013/LITERAL_LONG2_with_REVERSE_SOLIDUS.nt,
tests/turtle-2013/LITERAL_LONG2_with_REVERSE_SOLIDUS.ttl,
tests/turtle-2013/LITERAL_with_UTF8_boundaries.nt,
tests/turtle-2013/README, tests/turtle-2013/SPARQL_style_base.ttl,
tests/turtle-2013/SPARQL_style_prefix.ttl,
tests/turtle-2013/anonymous_blank_node_object.ttl,
tests/turtle-2013/anonymous_blank_node_subject.ttl,
tests/turtle-2013/bareword_a_predicate.nt,
tests/turtle-2013/bareword_a_predicate.ttl,
tests/turtle-2013/bareword_decimal.nt,
tests/turtle-2013/bareword_decimal.ttl,
tests/turtle-2013/bareword_double.nt,
tests/turtle-2013/bareword_double.ttl,
tests/turtle-2013/bareword_integer.ttl,
tests/turtle-2013/blankNodePropertyList_as_object.nt,
tests/turtle-2013/blankNodePropertyList_as_object.ttl,
tests/turtle-2013/blankNodePropertyList_as_subject.nt,
tests/turtle-2013/blankNodePropertyList_as_subject.ttl,
tests/turtle-2013/blankNodePropertyList_containing_collection.nt,
tests/turtle-2013/blankNodePropertyList_containing_collection.ttl,
tests/turtle-2013/blankNodePropertyList_with_multiple_triples.nt,
tests/turtle-2013/blankNodePropertyList_with_multiple_triples.ttl,
tests/turtle-2013/collection_object.nt,
tests/turtle-2013/collection_object.ttl,
tests/turtle-2013/collection_subject.nt,
tests/turtle-2013/collection_subject.ttl,
tests/turtle-2013/comment_following_PNAME_NS.nt,
tests/turtle-2013/comment_following_PNAME_NS.ttl,
tests/turtle-2013/comment_following_localName.ttl,
tests/turtle-2013/default_namespace_IRI.ttl,
tests/turtle-2013/double_lower_case_e.nt,
tests/turtle-2013/double_lower_case_e.ttl,
tests/turtle-2013/empty_collection.nt,
tests/turtle-2013/empty_collection.ttl,
tests/turtle-2013/first.nt, tests/turtle-2013/first.ttl,
tests/turtle-2013/labeled_blank_node_object.nt,
tests/turtle-2013/labeled_blank_node_object.ttl,
tests/turtle-2013/labeled_blank_node_subject.nt,
tests/turtle-2013/labeled_blank_node_subject.ttl,
tests/turtle-2013/labeled_blank_node_with_PN_CHARS_BASE_character_b
oundaries.ttl,
tests/turtle-2013/labeled_blank_node_with_leading_digit.ttl,
tests/turtle-2013/labeled_blank_node_with_leading_underscore.ttl,
tests/turtle-2013/labeled_blank_node_with_non_leading_extras.ttl,
tests/turtle-2013/langtagged_LONG.ttl,
tests/turtle-2013/langtagged_LONG_with_subtag.nt,
tests/turtle-2013/langtagged_LONG_with_subtag.ttl,
tests/turtle-2013/langtagged_non_LONG.nt,
tests/turtle-2013/langtagged_non_LONG.ttl,
tests/turtle-2013/lantag_with_subtag.nt,
tests/turtle-2013/lantag_with_subtag.ttl,
tests/turtle-2013/last.nt, tests/turtle-2013/last.ttl,
tests/turtle-2013/literal_false.nt,
tests/turtle-2013/literal_false.ttl,
tests/turtle-2013/literal_true.nt,
tests/turtle-2013/literal_true.ttl,
tests/turtle-2013/literal_with_BACKSPACE.nt,
tests/turtle-2013/literal_with_BACKSPACE.ttl,
tests/turtle-2013/literal_with_CARRIAGE_RETURN.nt,
tests/turtle-2013/literal_with_CARRIAGE_RETURN.ttl,
tests/turtle-2013/literal_with_CHARACTER_TABULATION.nt,