summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: fda02d7cfaeccdfa18419f8324c7832d32c61ac6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2013-04-05  Dave Beckett <dave@dajobe.org>

	* build/pkg.m4, configure.ac: Switch libxml and libcurl to use
	PKG_PROG_PKG_CONFIG and PKG_CHECK_MODULES

	Preference is still to xml2-config and curl-config unless
	--with-curl-config=no --with-xml2-config=no are used

	* configure.ac: Die if xml2-config or xslt-config point at non
	executable files

	Patch from Michael Stahl - thanks

	Fixes Issue #0000534
	http://bugs.librdf.org/mantis/view.php?id=535

	* autogen.sh, configure.ac:
	Modernize LT_INIT call for libtool 2.2+

2013-03-26  Dave Beckett <dave@dajobe.org>

	* src/raptor2.h.in: Document raptor_escaped_write_bitflags enum
	values

	* docs/raptor2-sections.txt: Add escaped_write enum and functions

	* docs/raptor-1-to-2-map.tsv: 2.0.10 changes

2013-03-23  Dave Beckett <dave@dajobe.org>

	* configure.ac: Add curl or libxml pkg-config requires iff they
	were found via pkg-config

	This enables building a good raptor pkg-config file when raptor is
	built with libxml or libcurl installs that provide xml2-config /
	curl-config, includes and libraries but no pkg-config files.

2013-03-12  Dave Beckett <dave@dajobe.org>

	* autogen.sh, src/ntriples_parse.c:
	Handle variations of header
	macro Fixes Issue #0000532 http://bugs.librdf.org/mantis/view.php?id=532

	* .travis.yml: Test travis-ci.org

2013-03-03  Dave Beckett <dave@dajobe.org>

	* src/raptor_serialize_turtle.c:
	(raptor_uri_turtle_write): Wraps raptor_turtle_writer_uri

	* src/raptor_serialize_turtle.c:
	(raptor_term_turtle_write): Wraps raptor_turtle_writer_term

	* src/raptor_serialize_turtle.c: Make
	raptor_uri_to_turtle_counted_string use a turtle writer.

	(raptor_uri_to_turtle_counted_string): Use turtle writer and
	raptor_turtle_writer_uri.  Add docs warning about inefficiency

	* src/raptor_serialize_turtle.c: Add docs warning about
	inefficiencies

	(raptor_init_serializer_turtle, raptor_uri_turtle_write,
	raptor_uri_to_turtle_counted_string, raptor_uri_to_turtle_string):
	Add doc note warning they are inefficient - a turtle writer is
	made and destroyed each time - and that a serializer is better.

	* src/raptor_statement.c:
	(raptor_statement_print): Use raptor_uri_print

	* src/raptor_turtle_writer.c: docs

	* src/raptor_turtle_writer.c:
	(raptor_turtle_writer_reference): Wraps raptor_uri_escaped_write

	* src/raptor_internal.h: Remove not needed RAPTOR_INTERNAL_API
	prefix

	* src/raptor_internal.h, src/raptor_turtle_writer.c: Added turtle
	writer methods for writing uris and term

	(raptor_turtle_writer_uri, raptor_turtle_writer_term): Added to
	write URIs and terms.

	* src/raptor2.h.in:
	Undeprecate raptor_statement_ntriples_write

	* src/raptor_escaped.c:
	(raptor_string_escaped_write): 0x7f is never written raw

	* tests/ntriples/testnq-1.nq, tests/ntriples/testnq-1.out: Remove
	spaces from test data URIs

	* src/raptor_escaped.c:
	(raptor_string_escaped_write): Decode unicode chars

	* src/raptor_escaped.c:
	(raptor_term_escaped_write): Encode uri not datatype uri

	* src/raptor_internal.h, src/raptor_serialize_turtle.c: Make
	raptor_turtle_is_legal_turtle_qname internal not static

	* src/raptor_serialize_ntriples.c: ws

	* src/raptor_serialize_ntriples.c, src/raptor_term.c: Use
	raptor_term_escaped_write instead of deprecated
	raptor_term_ntriples_write

	(raptor_bnodeid_ntriples_write, raptor_statement_ntriples_write):
	Use raptor_term_escaped_write instead of deprecated
	raptor_term_ntriples_write

2013-03-02  Dave Beckett <dave@dajobe.org>

	* src/raptor_json_writer.c, src/raptor_serialize_json.c,
	src/raptor_serialize_ntriples.c, src/raptor_turtle_writer.c:
	Use raptor_string_escaped_write instead of raptor_string_python_write

	(raptor_json_writer_quoted, raptor_json_serialize_avltree_visit,
	raptor_string_ntriples_write,
	raptor_turtle_writer_quoted_counted_string): Replace deprecated
	function with new one

	(raptor_turtle_writer_quoted_counted_string): Tidy code as well.

	* src/Makefile.am, src/raptor2.h.in, src/raptor_escaped.c,
	src/raptor_turtle_writer.c: Added escaped writing module to write
	Turtle/N-Triples terms

	Added enum of bitflags raptor_escaped_write_bitflags that describe
	the escaping wanted.

	(raptor_string_escaped_write): Added

	(raptor_string_python_write): Deprecated, now calls
	raptor_string_escaped_write() with flags.

	(raptor_term_escaped_write): Added.

	* src/raptor2.h.in, src/raptor_uri.c:
	(raptor_uri_escaped_write): Added

2013-02-27  Dave Beckett <dave@dajobe.org>

	* tests/turtle-2013/Makefile.am, tests/turtle-2013/manifest.ttl:
	Remove manifest.ttl from dist

2013-02-26  Dave Beckett <dave@dajobe.org>

	* CMakeLists.txt, NEWS.html, RELEASE.html, configure.ac: Bumped
	version to 2.0.10

	* Snapshotted raptor2_2_0_9 for 2.0.9 release (GIT
	32b08d01e8c378b43ca2fee2b849b4d14b36c32d)

	* INSTALL.html, NEWS.html, RELEASE.html, TODO.html, UPGRADING.html:
	2.0.9

2013-02-25  Dave Beckett <dave@dajobe.org>

	* NEWS.html, README.html, RELEASE.html: 2.0.9

	* src/Makefile.am, src/raptor2.h.in, src/raptor_sparql.c:
	(raptor_sparql_name_check_type): Removed - not used

	* Merge pull request #7 from dajobe/turtle-2013 Support Turtle 2013

2013-02-24  Dave Beckett <dave@dajobe.org>

	* src/turtle_lexer.l: Terminate parsing at bad URI characters

	* tests/turtle/Makefile.am: Add bad-15.out bad-17.out bad-18.out
	bad-21.out bad-22.out to dist

	* tests/turtle-2013/Makefile.am: README

	* tests/turtle-2013/README: Add Turtle 2013 Readme

	* src/turtle_lexer.l: Use raptor_turtle_check_uri_string to valid
	IRIs in Turtle docs

	* src/turtle_common.c, src/turtle_common.h: Ensure only an IRI
	that matches Turtle rules passes parsing

	(raptor_turtle_check_uri_string): Added to check Turtle URI char
	rules

	* src/raptor_internal.h, src/raptor_serialize_turtle.c,
	src/raptor_turtle_writer.c: Update Turtle URI writing to match
	Turtle 2013 encoding

	(raptor_turtle_writer_reference): Write URIs with Turtle 2013
	escaped characters; must escape #x00-#x20<>\"{}|^`

	* tests/turtle/Makefile.am: Mark turtle tests bad-17 and bad-18 as
	now good

	* tests/turtle/bad-17.out, tests/turtle/bad-17.ttl,
	tests/turtle/bad-18.out, tests/turtle/bad-18.ttl: Mark turtle
	tests bad-17 and bad-18 as now good

	* tests/turtle/test-29.ttl: Turtle 2013 changes the way URIs are
	encoded :/

	* src/turtle_parser.y: Fix statement list to match Turtle 2013
	rules about '.'s Removes 4 lexer conflicts; now expect 0

	* src/turtle_lexer.l: Fix DECIMAL, DOUBLE, INTEGER to match Turtle
	2013.  '123.' is now an integer followed by '.' not a double

	* src/turtle_common.c: Check for valid \u and \U escapes in turtle
	strings

	(raptor_stringbuffer_append_turtle_string)
	(raptor_turtle_expand_name_escapes): Added checking code.

	* src/turtle_lexer.l: Replace QUOTEDURI with Turtle 2013 IRI
	allowing u-escapes

	* tests/turtle-2013/Makefile.am: Report error counts and failing
	tests

	* src/turtle_lexer.l: ws

	* src/turtle_common.c, src/turtle_common.h, src/turtle_parser.y:
	Added turtle_expand_name_escapes for expanding escapes inline

	* src/turtle_lexer.l: Support '''single long''' quotes

	* src/turtle_lexer.l: Support 'single' quotes

	* src/turtle_lexer.l: \.

	* tests/turtle/Makefile.am, tests/turtle/bad-15.out,
	tests/turtle/bad-21.out, tests/turtle/bad-22.out: Turtle tests
	bad-15, bad-21 and bad-22 are good for Turtle 2013

	* src/raptor_qname.c:
	(raptor_qname_string_to_uri): Handle qnames with two :s
	Need to handle ':foo:...' QNames; just care about first ':'

	* tests/turtle-2013/Makefile.am: Tidy and report number of errors

	* src/turtle_lexer.l: Fix Turtle 2013 lexing rules

	* src/turtle_lexer.l, src/turtle_parser.y: Switch to use LANGTAG
	for language tag

	* src/turtle_parser.y: Fixes for debugging bison

	* src/turtle_common.c:
	(raptor_stringbuffer_append_turtle_string): Handle Turtle 2013
	\-escapes

2013-02-23  Dave Beckett <dave@dajobe.org>

	* src/turtle_parser.y: Be resilient to NULL turtle_parser in
	errors and qname lookups

	(turtle_syntax_error, turtle_qname_to_uri): Return NULL if no
	turtle_parser is present.

	* src/raptor_namespace.c:
	(raptor_namespaces_find_namespace): Be resilient to NULL or empty
	stack.

	* tests/turtle-2013/Makefile.am: more turtle 2013 syntax tests

	* src/turtle_parser.y: Allow blankNodePropertyList %expect from 2
	to 4:

	State 25 conflicts: 2 shift/reduce
	State 59 conflicts: 2 shift/reduce

	Altered some rules to match Turtle 2013:

	- predicateObjectList: renamed from propertyList
	- predicateObjectListOpt: renamed from propertyListOpt
	- blankNode: renamed from blank and altered to match
	- subject: add blankNode and collection
	- object: add collection and blankNodePropertyList

	* src/turtle_lexer.l, src/turtle_parser.y:
	Support SPARQL "BASE <URI>" and "PREFIX <prefix>: <URI>" for Turtle 2013

	* tests/turtle-2013/Makefile.am: Add turtle 2013 syntax check
	files

	* tests/turtle-2013/LICENSE, tests/turtle-2013/Makefile.am,
	tests/turtle-2013/manifest.ttl,
	tests/turtle-2013/turtle-eval-bad-01.ttl,
	tests/turtle-2013/turtle-eval-bad-02.ttl,
	tests/turtle-2013/turtle-eval-bad-03.ttl,
	tests/turtle-2013/turtle-eval-bad-04.ttl,
	tests/turtle-2013/turtle-eval-struct-01.nt,
	tests/turtle-2013/turtle-eval-struct-01.ttl,
	tests/turtle-2013/turtle-eval-struct-02.nt,
	tests/turtle-2013/turtle-eval-struct-02.ttl,
	tests/turtle-2013/turtle-subm-01.nt,
	tests/turtle-2013/turtle-subm-01.ttl,
	tests/turtle-2013/turtle-subm-02.nt,
	tests/turtle-2013/turtle-subm-02.ttl,
	tests/turtle-2013/turtle-subm-03.nt,
	tests/turtle-2013/turtle-subm-03.ttl,
	tests/turtle-2013/turtle-subm-04.nt,
	tests/turtle-2013/turtle-subm-04.ttl,
	tests/turtle-2013/turtle-subm-05.nt,
	tests/turtle-2013/turtle-subm-05.ttl,
	tests/turtle-2013/turtle-subm-06.nt,
	tests/turtle-2013/turtle-subm-06.ttl,
	tests/turtle-2013/turtle-subm-07.nt,
	tests/turtle-2013/turtle-subm-07.ttl,
	tests/turtle-2013/turtle-subm-08.nt,
	tests/turtle-2013/turtle-subm-08.ttl,
	tests/turtle-2013/turtle-subm-09.nt,
	tests/turtle-2013/turtle-subm-09.ttl,
	tests/turtle-2013/turtle-subm-10.nt,
	tests/turtle-2013/turtle-subm-10.ttl,
	tests/turtle-2013/turtle-subm-11.nt,
	tests/turtle-2013/turtle-subm-11.ttl,
	tests/turtle-2013/turtle-subm-12.nt,
	tests/turtle-2013/turtle-subm-12.ttl,
	tests/turtle-2013/turtle-subm-13.nt,
	tests/turtle-2013/turtle-subm-13.ttl,
	tests/turtle-2013/turtle-subm-14.nt,
	tests/turtle-2013/turtle-subm-14.ttl,
	tests/turtle-2013/turtle-subm-15.nt,
	tests/turtle-2013/turtle-subm-15.ttl,
	tests/turtle-2013/turtle-subm-16.nt,
	tests/turtle-2013/turtle-subm-16.ttl,
	tests/turtle-2013/turtle-subm-17.nt,
	tests/turtle-2013/turtle-subm-17.ttl,
	tests/turtle-2013/turtle-subm-18.nt,
	tests/turtle-2013/turtle-subm-18.ttl,
	tests/turtle-2013/turtle-subm-19.nt,
	tests/turtle-2013/turtle-subm-19.ttl,
	tests/turtle-2013/turtle-subm-20.nt,
	tests/turtle-2013/turtle-subm-20.ttl,
	tests/turtle-2013/turtle-subm-21.nt,
	tests/turtle-2013/turtle-subm-21.ttl,
	tests/turtle-2013/turtle-subm-22.nt,
	tests/turtle-2013/turtle-subm-22.ttl,
	tests/turtle-2013/turtle-subm-23.nt,
	tests/turtle-2013/turtle-subm-23.ttl,
	tests/turtle-2013/turtle-subm-24.nt,
	tests/turtle-2013/turtle-subm-24.ttl,
	tests/turtle-2013/turtle-subm-25.nt,
	tests/turtle-2013/turtle-subm-25.ttl,
	tests/turtle-2013/turtle-subm-26.nt,
	tests/turtle-2013/turtle-subm-26.ttl,
	tests/turtle-2013/turtle-subm-27.nt,
	tests/turtle-2013/turtle-subm-27.ttl,
	tests/turtle-2013/turtle-syntax-bad-base-01.ttl,
	tests/turtle-2013/turtle-syntax-bad-base-02.ttl,
	tests/turtle-2013/turtle-syntax-bad-base-03.ttl,
	tests/turtle-2013/turtle-syntax-bad-esc-01.ttl,
	tests/turtle-2013/turtle-syntax-bad-esc-02.ttl,
	tests/turtle-2013/turtle-syntax-bad-esc-03.ttl,
	tests/turtle-2013/turtle-syntax-bad-esc-04.ttl,
	tests/turtle-2013/turtle-syntax-bad-kw-01.ttl,
	tests/turtle-2013/turtle-syntax-bad-kw-02.ttl,
	tests/turtle-2013/turtle-syntax-bad-kw-03.ttl,
	tests/turtle-2013/turtle-syntax-bad-kw-04.ttl,
	tests/turtle-2013/turtle-syntax-bad-kw-05.ttl,
	tests/turtle-2013/turtle-syntax-bad-lang-01.ttl,
	tests/turtle-2013/turtle-syntax-bad-n3-extras-01.ttl,
	tests/turtle-2013/turtle-syntax-bad-n3-extras-02.ttl,
	tests/turtle-2013/turtle-syntax-bad-n3-extras-03.ttl,
	tests/turtle-2013/turtle-syntax-bad-n3-extras-04.ttl,
	tests/turtle-2013/turtle-syntax-bad-n3-extras-05.ttl,
	tests/turtle-2013/turtle-syntax-bad-n3-extras-06.ttl,
	tests/turtle-2013/turtle-syntax-bad-n3-extras-07.ttl,
	tests/turtle-2013/turtle-syntax-bad-n3-extras-08.ttl,
	tests/turtle-2013/turtle-syntax-bad-n3-extras-09.ttl,
	tests/turtle-2013/turtle-syntax-bad-n3-extras-10.ttl,
	tests/turtle-2013/turtle-syntax-bad-n3-extras-11.ttl,
	tests/turtle-2013/turtle-syntax-bad-n3-extras-12.ttl,
	tests/turtle-2013/turtle-syntax-bad-n3-extras-13.ttl,
	tests/turtle-2013/turtle-syntax-bad-num-01.ttl,
	tests/turtle-2013/turtle-syntax-bad-num-02.ttl,
	tests/turtle-2013/turtle-syntax-bad-num-03.ttl,
	tests/turtle-2013/turtle-syntax-bad-num-04.ttl,
	tests/turtle-2013/turtle-syntax-bad-num-05.ttl,
	tests/turtle-2013/turtle-syntax-bad-pname-01.ttl,
	tests/turtle-2013/turtle-syntax-bad-pname-02.ttl,
	tests/turtle-2013/turtle-syntax-bad-pname-03.ttl,
	tests/turtle-2013/turtle-syntax-bad-prefix-01.ttl,
	tests/turtle-2013/turtle-syntax-bad-prefix-02.ttl,
	tests/turtle-2013/turtle-syntax-bad-prefix-03.ttl,
	tests/turtle-2013/turtle-syntax-bad-prefix-04.ttl,
	tests/turtle-2013/turtle-syntax-bad-prefix-05.ttl,
	tests/turtle-2013/turtle-syntax-bad-string-01.ttl,
	tests/turtle-2013/turtle-syntax-bad-string-02.ttl,
	tests/turtle-2013/turtle-syntax-bad-string-03.ttl,
	tests/turtle-2013/turtle-syntax-bad-string-04.ttl,
	tests/turtle-2013/turtle-syntax-bad-string-05.ttl,
	tests/turtle-2013/turtle-syntax-bad-string-06.ttl,
	tests/turtle-2013/turtle-syntax-bad-string-07.ttl,
	tests/turtle-2013/turtle-syntax-bad-struct-01.ttl,
	tests/turtle-2013/turtle-syntax-bad-struct-02.ttl,
	tests/turtle-2013/turtle-syntax-bad-struct-03.ttl,
	tests/turtle-2013/turtle-syntax-bad-struct-04.ttl,
	tests/turtle-2013/turtle-syntax-bad-struct-05.ttl,
	tests/turtle-2013/turtle-syntax-bad-struct-06.ttl,
	tests/turtle-2013/turtle-syntax-bad-struct-07.ttl,
	tests/turtle-2013/turtle-syntax-bad-struct-08.ttl,
	tests/turtle-2013/turtle-syntax-bad-struct-09.ttl,
	tests/turtle-2013/turtle-syntax-bad-struct-10.ttl,
	tests/turtle-2013/turtle-syntax-bad-struct-11.ttl,
	tests/turtle-2013/turtle-syntax-bad-struct-12.ttl,
	tests/turtle-2013/turtle-syntax-bad-struct-13.ttl,
	tests/turtle-2013/turtle-syntax-bad-struct-14.ttl,
	tests/turtle-2013/turtle-syntax-bad-struct-15.ttl,
	tests/turtle-2013/turtle-syntax-bad-struct-16.ttl,
	tests/turtle-2013/turtle-syntax-bad-struct-17.ttl,
	tests/turtle-2013/turtle-syntax-bad-uri-01.ttl,
	tests/turtle-2013/turtle-syntax-bad-uri-02.ttl,
	tests/turtle-2013/turtle-syntax-bad-uri-03.ttl,
	tests/turtle-2013/turtle-syntax-bad-uri-04.ttl,
	tests/turtle-2013/turtle-syntax-bad-uri-05.ttl,
	tests/turtle-2013/turtle-syntax-base-01.ttl,
	tests/turtle-2013/turtle-syntax-base-02.ttl,
	tests/turtle-2013/turtle-syntax-base-03.ttl,
	tests/turtle-2013/turtle-syntax-base-04.ttl,
	tests/turtle-2013/turtle-syntax-bnode-01.ttl,
	tests/turtle-2013/turtle-syntax-bnode-02.ttl,
	tests/turtle-2013/turtle-syntax-bnode-03.ttl,
	tests/turtle-2013/turtle-syntax-bnode-04.ttl,
	tests/turtle-2013/turtle-syntax-bnode-05.ttl,
	tests/turtle-2013/turtle-syntax-bnode-06.ttl,
	tests/turtle-2013/turtle-syntax-bnode-07.ttl,
	tests/turtle-2013/turtle-syntax-bnode-08.ttl,
	tests/turtle-2013/turtle-syntax-bnode-09.ttl,
	tests/turtle-2013/turtle-syntax-bnode-10.ttl,
	tests/turtle-2013/turtle-syntax-datatypes-01.ttl,
	tests/turtle-2013/turtle-syntax-datatypes-02.ttl,
	tests/turtle-2013/turtle-syntax-file-01.ttl,
	tests/turtle-2013/turtle-syntax-file-02.ttl,
	tests/turtle-2013/turtle-syntax-file-03.ttl,
	tests/turtle-2013/turtle-syntax-kw-01.ttl,
	tests/turtle-2013/turtle-syntax-kw-02.ttl,
	tests/turtle-2013/turtle-syntax-kw-03.ttl,
	tests/turtle-2013/turtle-syntax-lists-01.ttl,
	tests/turtle-2013/turtle-syntax-lists-02.ttl,
	tests/turtle-2013/turtle-syntax-lists-03.ttl,
	tests/turtle-2013/turtle-syntax-lists-04.ttl,
	tests/turtle-2013/turtle-syntax-lists-05.ttl,
	tests/turtle-2013/turtle-syntax-number-01.ttl,
	tests/turtle-2013/turtle-syntax-number-02.ttl,
	tests/turtle-2013/turtle-syntax-number-03.ttl,
	tests/turtle-2013/turtle-syntax-number-04.ttl,
	tests/turtle-2013/turtle-syntax-number-05.ttl,
	tests/turtle-2013/turtle-syntax-number-06.ttl,
	tests/turtle-2013/turtle-syntax-number-07.ttl,
	tests/turtle-2013/turtle-syntax-number-08.ttl,
	tests/turtle-2013/turtle-syntax-number-09.ttl,
	tests/turtle-2013/turtle-syntax-number-10.ttl,
	tests/turtle-2013/turtle-syntax-number-11.ttl,
	tests/turtle-2013/turtle-syntax-pname-esc-01.ttl,
	tests/turtle-2013/turtle-syntax-pname-esc-02.ttl,
	tests/turtle-2013/turtle-syntax-pname-esc-03.ttl,
	tests/turtle-2013/turtle-syntax-prefix-01.ttl,
	tests/turtle-2013/turtle-syntax-prefix-02.ttl,
	tests/turtle-2013/turtle-syntax-prefix-03.ttl,
	tests/turtle-2013/turtle-syntax-prefix-04.ttl,
	tests/turtle-2013/turtle-syntax-prefix-05.ttl,
	tests/turtle-2013/turtle-syntax-prefix-06.ttl,
	tests/turtle-2013/turtle-syntax-prefix-07.ttl,
	tests/turtle-2013/turtle-syntax-prefix-08.ttl,
	tests/turtle-2013/turtle-syntax-prefix-09.ttl,
	tests/turtle-2013/turtle-syntax-str-esc-01.ttl,
	tests/turtle-2013/turtle-syntax-str-esc-02.ttl,
	tests/turtle-2013/turtle-syntax-str-esc-03.ttl,
	tests/turtle-2013/turtle-syntax-string-01.ttl,
	tests/turtle-2013/turtle-syntax-string-02.ttl,
	tests/turtle-2013/turtle-syntax-string-03.ttl,
	tests/turtle-2013/turtle-syntax-string-04.ttl,
	tests/turtle-2013/turtle-syntax-string-05.ttl,
	tests/turtle-2013/turtle-syntax-string-06.ttl,
	tests/turtle-2013/turtle-syntax-string-07.ttl,
	tests/turtle-2013/turtle-syntax-string-08.ttl,
	tests/turtle-2013/turtle-syntax-string-09.ttl,
	tests/turtle-2013/turtle-syntax-string-10.ttl,
	tests/turtle-2013/turtle-syntax-string-11.ttl,
	tests/turtle-2013/turtle-syntax-struct-01.ttl,
	tests/turtle-2013/turtle-syntax-struct-02.ttl,
	tests/turtle-2013/turtle-syntax-struct-03.ttl,
	tests/turtle-2013/turtle-syntax-struct-04.ttl,
	tests/turtle-2013/turtle-syntax-struct-05.ttl,
	tests/turtle-2013/turtle-syntax-uri-01.ttl,
	tests/turtle-2013/turtle-syntax-uri-02.ttl,
	tests/turtle-2013/turtle-syntax-uri-03.ttl,
	tests/turtle-2013/turtle-syntax-uri-04.ttl: Add Turtle 2013 tests
	from W3C

	* src/.gitignore: Exclude .trs files from newer automate test
	framework

	* src/turtle_lexer.l:
	Add Turtle 2013 rules

	Added PN_CHARS_BASE (no Unicode), PN_CHARS from Turtle 2013

	Added BS_ESCAPES based on Turtle 2013 PN_LOCAL escapes

	Added HEX

	Added PLX from Turtle 2013

	Added BN_LABEL, PN_PREFIX and PN_LOCAL based on Turtle 2013 rules.

	Redefine QNAME in terms of PN_PREFIX and PN_LOCAL Replace BNAME
	with BN_LABEL for blank node label Use PN_PREFIX for @prefix
	prefix

	* configure.ac, tests/Makefile.am:
	Add tests/turtle-2013

2013-02-22  Dave Beckett <dave@dajobe.org>

	* build/.gitignore: Ignore automake test-driver

	* src/CMakeLists.txt: Add raptor_sparql.c

	* src/raptor_sparql.c: comment

2013-02-21  Dave Beckett <dave@dajobe.org>

	* src/raptor_sparql.c: docs

	* src/raptor_sparql.c:
	(raptor_sparql_name_check): Check hex

	* src/Makefile.am, src/raptor2.h.in, src/raptor_qname.c,
	src/raptor_sparql.c: Add sparql name check module

	* src/raptor_qname.c:
	(raptor_sparql_name_check): Added to check sparql / turtle names
	Adds new enum raptor_sparql_name_check_type

2013-02-20  Dave Beckett <dave@dajobe.org>

	* src/raptor_www.c:
	(raptor_www_set_ssl_verify_options): Update docs to match curl
	latest

2013-02-18  Dave Beckett <dave@dajobe.org>

	* INSTALL.html: Document how to find gtkdocize
	Fixes Issue #0000526
	http://bugs.librdf.org/mantis/view.php?id=526

2013-02-13  Dave Beckett <dave@dajobe.org>

	* src/raptor_www_curl.c: Never use CURLOPT_SSL_VERIFYHOST with a
	value of 2

	(raptor_www_curl_set_ssl_verify_options): curl 7.28.1 removed the
	value 1 from being legal:
	http://daniel.haxx.se/blog/2012/10/25/libcurl-claimed-to-be-dangerous/CURL
	GIT commit da82f59b697310229ccdf66104d5d65a44dfab98
	Sat Oct 27 12:31:39 2012 +0200

	Legal values are: 0 to disable host verifying 2 (default) to
	enable host verifyinging

2013-01-24  Dave Beckett <dave@dajobe.org>

	* ChangeLog: 2.0.9 and 2013

2013-01-23  Dave Beckett <dave@dajobe.org>

	* librdfa/triple.c:
	Output correct literal datatypes ^^<uri>

	librdfa commit f3d10545bc2dd4a7aa940dd11dfcb6c6035e23a4

2013-01-03  Dave Beckett <dave@dajobe.org>

	* ChangeLog, LICENSE.html, NEWS.html, README.html, RELEASE.html:
	2.0.9 and 2013

2012-12-11  Dave Beckett <dave@dajobe.org>

	* .gitignore: Ignore CMakeTests.txt

2012-11-07  Dave Beckett <dave@dajobe.org>

	* librdfa/rdfa.c: Handle non-namespaced elements without crash in
	RDFa

	Fixes Issue #0000521
	http://bugs.librdf.org/mantis/view.php?id=521

2012-10-22  Dave Beckett <dave@dajobe.org>

	* Merge pull request #6 from ansell/master: Update turtle test
	manifests

2012-09-23  Dave Beckett <dave@dajobe.org>

	* manifest.pl:
	Remove ancient manifest.pl moved to testing project

2012-09-19  Dave Beckett <dave@dajobe.org>

	* Merge pull request #5 from iskunk/drg-win32-2
	Win32 parser-guess and DLL linkage fixes

2012-09-19  Daniel Richard G <danielg@teragram.com>

	* src/raptor_internal.h, src/turtle_common.h: Fix DLL export
	linkage for internal functions needed by the test programs

	This allows the test programs to be linked against a DLL build of
	Raptor.

	* src/raptor_internal.h, src/raptor_parse.c: Ensure that a small
	system BUFSIZ does not affect parser guessing

	raptor_internal.h: Ensure that RAPTOR_READ_BUFFER_SIZE is never
	smaller than 4096. (It really only needs to be as large as FIRSTN
	in raptor_parse.c, i.e. 1024, but 4kB isn't all that much nowadays
	anyway)

	(raptor_world_guess_parser_name): Added a compile-time check to
	ensure that RAPTOR_READ_BUFFER_SIZE is at least as large as
	FIRSTN, because otherwise the guesser sees fewer than FIRSTN bytes
	from the document.

2012-09-07  Dave Beckett <dave@dajobe.org>

	* utils/rapper.c: Remove -m MODE from help

	This option was removed in commit
	f94fa561db05b21132b14a2b72f05b77e666c252 on Wed Apr 28 21:31:54
	2010 -0700 as part of the Raptor V2 work.

2012-08-31  Dave Beckett <dave@dajobe.org>

	* autogen.sh, configure.ac: Require autoconf 2.62 again

	* autogen.sh: Update autogen.sh

	* autogen.sh: Echo autoconf args

	Merge pull request #4 from iskunk/drg-win32 win32 and
	autoconf-related changes

2012-08-30  Daniel Richard G <danielg@teragram.com>

	* CMakeLists.txt, src/CMakeLists.txt: Simplify CMake usage with
	CMAKE_INCLUDE_CURRENT_DIR

	* configure.ac, docs/Makefile.am, examples/grapper.c,
	examples/raptor_abort.c, scripts/fix-flex, src/.gitignore,
	src/Makefile.am, src/ntriples_parse.c, src/parsedate.y,
	src/raptor_abbrev.c, src/raptor_avltree.c, src/raptor_concepts.c,
	src/raptor_general.c, src/raptor_grddl.c, src/raptor_guess.c,
	src/raptor_iostream.c, src/raptor_json.c,
	src/raptor_json_writer.c, src/raptor_librdfa.c,
	src/raptor_libxml.c, src/raptor_locator.c, src/raptor_log.c,
	src/raptor_memstr.c, src/raptor_namespace.c, src/raptor_nfc_icu.c,
	src/raptor_nfc_test.c, src/raptor_option.c, src/raptor_parse.c,
	src/raptor_permute_test.c, src/raptor_qname.c,
	src/raptor_rdfxml.c, src/raptor_rfc2396.c, src/raptor_rss.c,
	src/raptor_rss_common.c, src/raptor_sax2.c, src/raptor_sequence.c,
	src/raptor_serialize.c, src/raptor_serialize_dot.c,
	src/raptor_serialize_html.c, src/raptor_serialize_json.c,
	src/raptor_serialize_ntriples.c, src/raptor_serialize_rdfxml.c,
	src/raptor_serialize_rdfxmla.c, src/raptor_serialize_rss.c,
	src/raptor_serialize_turtle.c, src/raptor_set.c,
	src/raptor_statement.c, src/raptor_stringbuffer.c,
	src/raptor_syntax_description.c, src/raptor_term.c,
	src/raptor_turtle_writer.c, src/raptor_unicode.c,
	src/raptor_uri.c, src/raptor_win32.c, src/raptor_www.c,
	src/raptor_www_curl.c, src/raptor_www_libfetch.c,
	src/raptor_www_libxml.c, src/raptor_www_test.c, src/raptor_xml.c,
	src/raptor_xml_writer.c, src/snprintf.c, src/strcasecmp.c,
	src/turtle_common.c, src/turtle_lexer.l, src/turtle_parser.y,
	src/win32_raptor_config.h.in, utils/rapper.c, utils/rdfdiff.c:
	Remove all traces of win32_raptor_config.h

	Remove the file itself, all #include uses of it, and all
	references to it, as this file is no longer needed.

	* Makefile.am, README-cmake.md, configure.ac, win32/Makefile.am,
	win32/README.md, win32/rapper.dsp, win32/rapper.vcproj,
	win32/raptor.dsp, win32/raptor.dsw, win32/raptor.sln,
	win32/raptor.vcproj, win32/raptortest.cpp, win32/raptortest.dsp,
	win32/raptortest.vcproj: Delete win32/ subdirectory

	The MSVC6 and MSVC7.1 project files in win32/ fail to build
	current versions of Raptor, require external projects for Curl and
	Expat which do not appear to be publicly available, are unlikely
	to get the extensive work they need in the near future due to John
	Barstow's busy schedule, and are redundant now that Raptor can be
	built on Windows using CMake. Thus, out they go.

	win32/README.md: Moved up to README-cmake.md, as this information
	is useful, and CMake build support is not limited to Win32

2012-08-25  Dave Beckett <dave@dajobe.org>

	* configure.ac:
	fix PKG_CONFIG_REQUIRES version vars

	* configure.ac, raptor2.pc.in: Allow xml2-config and curl-config
	to work for libxml and libcurl

	- report on source of xml, curl libraries in status
	- remove extra oCPPFLAGS assignements
	- substitute pkgconfig dependencies into raptor2.pc

2012-08-20  Dave Beckett <dave@dajobe.org>

	* src/raptor_log.c:
	(raptor_log_error): sizeof should take size of field not pointer

2012-08-16  Dave Beckett <dave@dajobe.org>

	* src/raptor_libxml.c: Handle ret->checked field not being present

	The entities checked field was added 2006-10-10 in
	http://git.gnome.org/browse/libxml2/commit/?id=a37a6ad91a61d168ecc4b29263def3363fff4da6and
	released in libxml2 2.6.27 on 2006-10-25

	Fixes Issue #0000520
	http://bugs.librdf.org/mantis/view.php?id=520

2012-08-14  Dave Beckett <dave@dajobe.org>

	* src/raptor_rdfxml.c:
	(raptor_rdfxml_element_content_type_as_string): LAST is not valid

2012-08-10  Dave Beckett <dave@dajobe.org>

	* RELEASE.html: 2.0.9

	* win32/Makefile.am:
	README.md in dist replacing README.txt

2012-08-10  Daniel Richard G <oss@teragram.com>

	* CMakeLists.txt, Makefile.am, librdfa/config.h,
	src/CMakeLists.txt, src/Makefile.am, src/raptor_config_cmake.h.in,
	src/win32_raptor_config.h.in, tests/feeds/CMakeLists.txt,
	tests/feeds/Makefile.am, tests/grddl/CMakeLists.txt,
	tests/grddl/Makefile.am, tests/json/CMakeLists.txt,
	tests/json/Makefile.am, tests/ntriples/CMakeLists.txt,
	tests/ntriples/Makefile.am, tests/rdfa/CMakeLists.txt,
	tests/rdfa/Makefile.am, tests/rdfa11/CMakeLists.txt,
	tests/rdfa11/Makefile.am, tests/rdfxml/CMakeLists.txt,
	tests/rdfxml/Makefile.am, tests/trig/CMakeLists.txt,
	tests/trig/Makefile.am, utils/CMakeLists.txt, utils/Makefile.am,
	win32/README.md, win32/README.txt: CMake build framework for
	Raptor - win32

	This commit is based on the email with patch that
	Daniel Richard G.  sent to redland-dev on 5th July 2012
	  http://lists.librdf.org/pipermail/redland-dev/2012-July/002502.htmlI
	lightly edited the email to fit into 80 chars and make more it
	markdowny and turn it into win32/README.md -- Dave Beckett

2012-07-27  Dave Beckett <dave@dajobe.org>

	* configure.ac: Fix for flex version message from OSX

2012-07-05  Dave Beckett <dave@dajobe.org>

	* src/raptor2.h.in:
	Protect macro checks for __GNUC__ are defined

2012-07-01  Dave Beckett <dave@dajobe.org>

	* src/raptor2.h.in: Add RAPTOR_NORETURN

	* configure.ac:
	Set automake -W and gcc -W to same as librdf

2012-06-26  Dave Beckett <dave@dajobe.org>

	* Makefile.am: EXTRA_DIST: Remove ChangeLog NEWS since they are in
	dist by default

	* scripts/build-formats.c:
	(sort_type_syntax_by_mime_type): Add explicit cast for ordering mime
	types

	* Makefile.am:
	Restore NEWS building to maintainer mode.

	Reverts 979af117bb40de4e8391656b3e18f47f7096d1fc but requires
	autogen.sh to touch NEWS after a GIT checkout so that automake can
	run.

	* autogen.sh:
	autogen.sh updates
	- Abort run if a configuring program fails.
	- Generate NEWS with old timestamp if missing so automake can run
	- small doc and message updates

	* librdfa/strtok_r.h: Fix strtok_r typo

	* docs/Makefile.am: Added raptor-1-to-2-map.tsv to EXTRA_DIST

2012-06-24  Dave Beckett <dave@dajobe.org>

	* Snapshotted raptor2_2_0_8 for 2.0.8 release (GIT
	dbdb2f9e4aee4e93383fe62751b52349be64187b)

	* librdfa/config.h, librdfa/rdfa.h: Fix fake librdfa config.h

	* librdfa/config.h, librdfa/context.c, librdfa/lists.c,
	librdfa/rdfa.h: librdfa config.h now includes raptor_config.h
	directly

2012-06-23  Dave Beckett <dave@dajobe.org>

	* src/raptor_www_libxml.c:
	Init / cleanup libxml nano HTTP library

	(raptor_www_libxml_init, raptor_www_libxml_free): Call
	xmlNanoHTTPInit and xmlNanoHTTPCleanup respectively.

2012-06-22  Dave Beckett <dave@dajobe.org>

	* librdfa/context.c: DECLARE_URI_MAPPING - start new namespace, do
	not make a new one Call raptor_namespaces_start_namespace()
	instead of raptor_namespace_stack_start_namespace() which copies
	the namespace to the stack and then starts it.

	* tests/rdfa11/Makefile.am: Update rapper and rdfdiff use like
	already done for 'rdfa' tests

	* librdfa/rdfa.c:
	(raptor_rdfa_start_element): Free attr if allocated

	* src/raptor_nfc_test.c: Remove include of raptor_nfc.h

2012-06-20  Dave Beckett <dave@dajobe.org>

	* NEWS.html, RELEASE.html: 2.0.8

	* librdfa/curie.c, librdfa/namespace.c, librdfa/rdfa.c: Build
	fixes from Daniel Richard G.

	* RELEASE.html: 2.0.8

2012-06-19  Dave Beckett <dave@dajobe.org>

	* src/raptor_parse.c: Lower min syntax guess score to 2 (Q 0.3)

	* src/turtle_parser.y: If Turtle and Trig are both present, make
	guessing prefer Turtle

	Also score higher for Trig if 'trig' is in mime type

	* examples/.gitignore: ignore rdfguess

	* examples/rdfguess.c: Update rdfguess example code to read from
	stdin or a file called '-'

	(rdfguess_guess_name): Added and alter to accept file called '-'
	as reading from FILE* stdin.

	(main): Call above to support reading from stdin.  Do something
	with -h/--help

	* src/raptor_parse.c: Be conservative in guessing syntax - scoring
	too low is a failure.

	(raptor_world_guess_parser_name): Set min guess core to 5 (Q
	0.6). this value isn't exposed or user configurable.
	Addresses Issue #0000487
	http://bugs.librdf.org/mantis/view.php?id=487

	* tests/feeds/Makefile.am: Fix output turtle files for out of
	source tree 'make check'

2012-06-18  Dave Beckett <dave@dajobe.org>

	* NEWS.html, README.html, RELEASE.html: 2.0.8

2012-06-17  Dave Beckett <dave@dajobe.org>

	* librdfa/curie.c:
	(rdfa_resolve_curie): Protect NULL uri lookup [clang]

	* librdfa/rdfa_utils.c:
	(rdfa_add_item): Protect NULL list lookup [clang]

	* librdfa/curie.c:
	(rdfa_resolve_curie): Protect NULL uri lookup [clang]

	* src/raptor_namespace.c:
	(raptor_namespaces_find_namespace): No NULL prefix for strcmp
	[clang]

	* librdfa/context.c:
	(rdfa_create_new_element_context): Return NULL on OOM [clang]

	* librdfa/context.c: librdfa in raptor: do not print to stdout on
	failure

	(rdfa_create_context): Remove printf with hardcoded message.  if
	malloc fails return NULL

	* librdfa/rdfa.c:
	(end_element): Protect for NULL xml_literal before strlen [clang]

	* librdfa/curie.c:
	(rdfa_resolve_uri): empty rval check for OOM [clang]

	* src/raptor_qname.c:
	(raptor_qname_copy): Free new_qname on OOM [clang]

	* NEWS.html, RELEASE.html: 2.0.8

	* src/raptor_serialize_turtle.c: Do not emit a Turtle (...)
	collection if the list item is a URI

	Fixes Issue #0000381
	http://bugs.librdf.org/mantis/view.php?id=381

	* tests/rdfa11/Makefile.am: 29 failures - 0114 passes

	* tests/rdfa11/0114.out: Correct expected result based on original
	sparql

	* src/raptor_rfc2396.c:
	Fix URI resolving with reference uri '?y'

	(raptor_uri_resolve_uri_reference): When reference uri has no path,
	copy the base path over.

	(main): Correct the test case expected result for '?y' following
	RFC3986 section 5.4.1 Normal examples.  Add test case based on
	RDFa 1.1 test 0114

	* tests/rdfa11/Makefile.am: 30 failures - 0234 passes

	* tests/rdfa11/0234.out: Fix test URI

	* tests/rdfa11/Makefile.am: notes

	* tests/rdfa11/Makefile.am: 32 failures - 0295 passes

	* tests/rdfa11/0295.out: Update XML ns; remove non-ascii junk

	* tests/rdfa11/Makefile.am: 32 failures - 0259 passes

	* librdfa/curie.c:
	(rdfa_resolve_curie): Get XML namespace from constnat

2012-06-13  Dave Beckett <dave@dajobe.org>

	* src/raptor_guess.c, src/raptor_internal.h, src/raptor_parse.c:
	Raptor locator accessor for guess parser struct
	raptor_parser_factory_s gains optional get_locator method.

	(raptor_parser_get_locator): Call factory get_locator method if
	present, otherwise use field.

	(raptor_guess_guess_get_locator): Added to get locator from inner
	parser if it exists.

2012-06-11  Dave Beckett <dave@dajobe.org>

	* configure.ac: Compare libcurl hex vernums as strings

	* src/raptor_term.c:
	(raptor_new_term_from_literal): Cast language length again

	* src/raptor_internal.h: Remove redundant
	raptor_parser_log_error_varargs

	* librdfa/Makefile.am: Add missing librdfa files to dist

	* src/raptor_internal.h: Add prototype for
	raptor_parser_log_error_varargs

	* tests/rdfa11/0226.out, tests/rdfa11/0226.xml,
	tests/rdfa11/0227.out, tests/rdfa11/0227.xml: Updated RDFa 1.1
	tests 0226 and 0227 after upstream change

	Switches from (fake) rdf:inlist property to ex:inlist in
	example.org namespace

2012-06-10  Dave Beckett <dave@dajobe.org>

	* tests/rdfa11/Makefile.am:
	33 failures

	* tests/rdfa11/0221.out: Add <uri> rdf:value <foo> triple that is
	also generated by librdfa

	* tests/rdfa11/0218.out: Fix test URI

	* tests/rdfa11/0201.out: Fix test URI to .xml

	* tests/rdfa11/0220.out: Add <uri> rdf:value <foo> triple that is
	also generated by librdfa

	* tests/rdfa11/0197.out: Add other triples not tested in sparql

	* tests/rdfa11/Makefile.am: More failures detail

	* tests/rdfa11/0255.out: 1 triple plain literal test

	* tests/rdfa11/Makefile.am: 39 failures

	* tests/rdfa11/0061.xml, tests/rdfa11/0062.xml,
	tests/rdfa11/0076.xml, tests/rdfa11/0077.xml,
	tests/rdfa11/0172.xml, tests/rdfa11/0173.xml,
	tests/rdfa11/0260.xml: Format some tests as XHTML1 as the only
	expected input form.  0061 0062 0076 0077 0172 0173 0260 are
	marked in the test manifest as only having a host language
	'xhtml1'

	* tests/rdfa11/0260.out: Fix test URI

	* tests/rdfa11/Makefile.am: 44 failures

	* src/raptor_sax2.c:
	(raptor_sax2_inscope_xml_language): Allow returning ""

	* tests/rdfa11/0296.out: Add vocab triple and homepage one that
	sparql ommits

	* tests/rdfa11/0259.out: Add test URI

	* tests/rdfa11/0258.out: FIx test URI

	* librdfa/rdfa.c: Simplify and fix languag handling

	* src/raptor_general.c, src/raptor_internal.h: Move git-version.h
	include to just one module to speed up recompiles.

2012-06-09  Dave Beckett <dave@dajobe.org>

	* tests/rdfa11/Makefile.am: 0295

	* tests/rdfa11/0295.out:
	Test passes if >0 triples are generated

	* src/raptor_librdfa.c:
	(raptor_librdfa_parse_start): Set initial line/column to unknown.

	* librdfa/rdfa.c: librdfa in raptor - pass back error line number
	info to user

	(start_element): Update locator from SAX2

	* tests/rdfa11/Makefile.am: 50 failures

	* tests/rdfa11/0189.out: Fix test URI

	* tests/rdfa11/0187.out: Fix output vocabs

	* tests/rdfa11/Makefile.am: 0304 note

	* src/raptor_internal.h: Redefine rdfa_update_uri_mappings to
	internal symbol

	* tests/rdfa11/Makefile.am: 52 failures

	* tests/rdfa11/0301.out, tests/rdfa11/0302.out,
	tests/rdfa11/0303.out: Use exact output triples including
	usesVocabulary

	* tests/rdfa11/0258.out: 1 triple

	* tests/rdfa11/Makefile.am: 53 failures

	* tests/rdfa11/0272.out, tests/rdfa11/0273.out,
	tests/rdfa11/0274.out, tests/rdfa11/0275.out,
	tests/rdfa11/0276.out, tests/rdfa11/0277.out,
	tests/rdfa11/0278.out, tests/rdfa11/0279.out,
	tests/rdfa11/0280.out, tests/rdfa11/0281.out,
	tests/rdfa11/0282.out, tests/rdfa11/0283.out,
	tests/rdfa11/0284.out, tests/rdfa11/0285.out,
	tests/rdfa11/0286.out, tests/rdfa11/0287.out: Fixed expected
	output bnode subject to be test URI

	* tests/rdfa11/0188.out, tests/rdfa11/0189.out: Add usesVocabulary
	triple which comes from @vocab - why!?

	* tests/rdfa11/0186.out: Add usesVocabulary triple which comes
	from @vocab - why!?

	* src/Makefile.am: Add librdfa/namespace.c

	* librdfa/rdfa.c: Let rdfa_update_uri_mappings() handle RDFa
	namespace starting.

	* librdfa/Makefile.am, librdfa/namespace.c: Add namespace.c

	* librdfa/rdfa.c: Handle @lang tag for raptor

	* tests/rdfa11/0180.out: Expect 1 triple

	* tests/rdfa11/0173.out: just 1 triple with a plain literal

	* tests/rdfa11/Makefile.am: 58 failures

	* librdfa/rdfa.c:
	(start_element): Do not abort @prefix handling too early

	* tests/rdfa11/Makefile.am:
	0176 passes

	* tests/rdfa11/0176.out: Use exact expected output for quick cmp

	* tests/rdfa11/Makefile.am: Use cmp as a quicker test before doing
	an rdfdiff

	* tests/rdfa11/0107.out, tests/rdfa11/0122.out,
	tests/rdfa11/0140.out, tests/rdfa11/0180.out,
	tests/rdfa11/0235.out, tests/rdfa11/0258.out: Add expect 0 triples
	files

	* tests/rdfa11/0295.out: 0295 expected output

	* tests/rdfa11/Makefile.am: comments

	* configure.ac, tests/Makefile.am, tests/rdfa11/0001.out,
	tests/rdfa11/0001.xml, tests/rdfa11/0006.out,
	tests/rdfa11/0006.xml, tests/rdfa11/0007.out,
	tests/rdfa11/0007.xml, tests/rdfa11/0008.out,
	tests/rdfa11/0008.xml, tests/rdfa11/0009.out,
	tests/rdfa11/0009.xml, tests/rdfa11/0010.out,
	tests/rdfa11/0010.xml, tests/rdfa11/0012.out,
	tests/rdfa11/0012.xml, tests/rdfa11/0013.out,
	tests/rdfa11/0013.xml, tests/rdfa11/0014.out,
	tests/rdfa11/0014.xml, tests/rdfa11/0015.out,
	tests/rdfa11/0015.xml, tests/rdfa11/0017.out,
	tests/rdfa11/0017.xml, tests/rdfa11/0018.out,
	tests/rdfa11/0018.xml, tests/rdfa11/0019.out,
	tests/rdfa11/0019.xml, tests/rdfa11/0020.out,
	tests/rdfa11/0020.xml, tests/rdfa11/0021.out,
	tests/rdfa11/0021.xml, tests/rdfa11/0023.out,
	tests/rdfa11/0023.xml, tests/rdfa11/0025.out,
	tests/rdfa11/0025.xml, tests/rdfa11/0026.out,
	tests/rdfa11/0026.xml, tests/rdfa11/0027.out,
	tests/rdfa11/0027.xml, tests/rdfa11/0029.out,
	tests/rdfa11/0029.xml, tests/rdfa11/0030.out,
	tests/rdfa11/0030.xml, tests/rdfa11/0031.out,
	tests/rdfa11/0031.xml, tests/rdfa11/0032.out,
	tests/rdfa11/0032.xml, tests/rdfa11/0033.out,
	tests/rdfa11/0033.xml, tests/rdfa11/0034.out,
	tests/rdfa11/0034.xml, tests/rdfa11/0035.out,
	tests/rdfa11/0035.xml, tests/rdfa11/0036.out,
	tests/rdfa11/0036.xml, tests/rdfa11/0037.out,
	tests/rdfa11/0037.xml, tests/rdfa11/0038.out,
	tests/rdfa11/0038.xml, tests/rdfa11/0039.out,
	tests/rdfa11/0039.xml, tests/rdfa11/0041.out,
	tests/rdfa11/0041.xml, tests/rdfa11/0048.out,
	tests/rdfa11/0048.xml, tests/rdfa11/0049.out,
	tests/rdfa11/0049.xml, tests/rdfa11/0050.out,
	tests/rdfa11/0050.xml, tests/rdfa11/0051.out,
	tests/rdfa11/0051.xml, tests/rdfa11/0052.out,
	tests/rdfa11/0052.xml, tests/rdfa11/0053.out,
	tests/rdfa11/0053.xml, tests/rdfa11/0054.out,
	tests/rdfa11/0054.xml, tests/rdfa11/0055.out,
	tests/rdfa11/0055.xml, tests/rdfa11/0056.out,
	tests/rdfa11/0056.xml, tests/rdfa11/0057.out,
	tests/rdfa11/0057.xml, tests/rdfa11/0059.out,
	tests/rdfa11/0059.xml, tests/rdfa11/0060.out,
	tests/rdfa11/0060.xml, tests/rdfa11/0061.out,
	tests/rdfa11/0061.xml, tests/rdfa11/0062.out,
	tests/rdfa11/0062.xml, tests/rdfa11/0063.out,
	tests/rdfa11/0063.xml, tests/rdfa11/0064.out,
	tests/rdfa11/0064.xml, tests/rdfa11/0065.out,
	tests/rdfa11/0065.xml, tests/rdfa11/0066.out,
	tests/rdfa11/0066.xml, tests/rdfa11/0067.out,
	tests/rdfa11/0067.xml, tests/rdfa11/0068.out,
	tests/rdfa11/0068.xml, tests/rdfa11/0069.out,
	tests/rdfa11/0069.xml, tests/rdfa11/0070.out,
	tests/rdfa11/0070.xml, tests/rdfa11/0071.out,
	tests/rdfa11/0071.xml, tests/rdfa11/0072.out,
	tests/rdfa11/0072.xml, tests/rdfa11/0073.out,
	tests/rdfa11/0073.xml, tests/rdfa11/0074.out,
	tests/rdfa11/0074.xml, tests/rdfa11/0075.out,
	tests/rdfa11/0075.xml, tests/rdfa11/0076.out,
	tests/rdfa11/0076.xml, tests/rdfa11/0077.out,
	tests/rdfa11/0077.xml, tests/rdfa11/0079.out,
	tests/rdfa11/0079.xml, tests/rdfa11/0080.out,
	tests/rdfa11/0080.xml, tests/rdfa11/0083.out,
	tests/rdfa11/0083.xml, tests/rdfa11/0084.out,
	tests/rdfa11/0084.xml, tests/rdfa11/0085.out,
	tests/rdfa11/0085.xml, tests/rdfa11/0087.out,
	tests/rdfa11/0087.xml, tests/rdfa11/0088.out,
	tests/rdfa11/0088.xml, tests/rdfa11/0089.out,
	tests/rdfa11/0089.xml, tests/rdfa11/0091.out,
	tests/rdfa11/0091.xml, tests/rdfa11/0093.out,
	tests/rdfa11/0093.xml, tests/rdfa11/0099.out,
	tests/rdfa11/0099.xml, tests/rdfa11/0104.out,
	tests/rdfa11/0104.xml, tests/rdfa11/0106.out,
	tests/rdfa11/0106.xml, tests/rdfa11/0107.xml,
	tests/rdfa11/0108.out, tests/rdfa11/0108.xml,
	tests/rdfa11/0109.out, tests/rdfa11/0109.xml,
	tests/rdfa11/0110.out, tests/rdfa11/0110.xml,
	tests/rdfa11/0111.out, tests/rdfa11/0111.xml,
	tests/rdfa11/0112.out, tests/rdfa11/0112.xml,
	tests/rdfa11/0113.out, tests/rdfa11/0113.xml,
	tests/rdfa11/0114.out, tests/rdfa11/0114.xml,
	tests/rdfa11/0115.out, tests/rdfa11/0115.xml,
	tests/rdfa11/0117.out, tests/rdfa11/0117.xml,
	tests/rdfa11/0118.out, tests/rdfa11/0118.xml,
	tests/rdfa11/0119.out, tests/rdfa11/0119.xml,
	tests/rdfa11/0120.out, tests/rdfa11/0120.xml,
	tests/rdfa11/0121.out, tests/rdfa11/0121.xml,
	tests/rdfa11/0122.xml, tests/rdfa11/0126.out,
	tests/rdfa11/0126.xml, tests/rdfa11/0131.out,
	tests/rdfa11/0131.xml, tests/rdfa11/0134.out,
	tests/rdfa11/0134.xml, tests/rdfa11/0140.xml,
	tests/rdfa11/0147.out, tests/rdfa11/0147.xml,
	tests/rdfa11/0172.out, tests/rdfa11/0172.xml,
	tests/rdfa11/0173.out, tests/rdfa11/0173.xml,
	tests/rdfa11/0174.out, tests/rdfa11/0174.xml,
	tests/rdfa11/0175.out, tests/rdfa11/0175.xml,
	tests/rdfa11/0176.out, tests/rdfa11/0176.xml,
	tests/rdfa11/0177.out, tests/rdfa11/0177.xml,
	tests/rdfa11/0178.out, tests/rdfa11/0178.xml,
	tests/rdfa11/0179.out, tests/rdfa11/0179.xml,
	tests/rdfa11/0180.xml, tests/rdfa11/0181.out,
	tests/rdfa11/0181.xml, tests/rdfa11/0182.out,
	tests/rdfa11/0182.xml, tests/rdfa11/0183.out,
	tests/rdfa11/0183.xml, tests/rdfa11/0186.out,
	tests/rdfa11/0186.xml, tests/rdfa11/0187.out,
	tests/rdfa11/0187.xml, tests/rdfa11/0188.out,
	tests/rdfa11/0188.xml, tests/rdfa11/0189.out,
	tests/rdfa11/0189.xml, tests/rdfa11/0190.out,
	tests/rdfa11/0190.xml, tests/rdfa11/0196.out,
	tests/rdfa11/0196.xml, tests/rdfa11/0197.out,
	tests/rdfa11/0197.xml, tests/rdfa11/0198.out,
	tests/rdfa11/0198.xml, tests/rdfa11/0201.out,
	tests/rdfa11/0201.xml, tests/rdfa11/0202.out,
	tests/rdfa11/0202.xml, tests/rdfa11/0203.out,
	tests/rdfa11/0203.xml, tests/rdfa11/0206.out,
	tests/rdfa11/0206.xml, tests/rdfa11/0207.out,
	tests/rdfa11/0207.xml, tests/rdfa11/0213.out,
	tests/rdfa11/0213.xml, tests/rdfa11/0214.out,
	tests/rdfa11/0214.xml, tests/rdfa11/0216.out,
	tests/rdfa11/0216.xml, tests/rdfa11/0217.out,
	tests/rdfa11/0217.xml, tests/rdfa11/0218.out,
	tests/rdfa11/0218.xml, tests/rdfa11/0219.out,
	tests/rdfa11/0219.xml, tests/rdfa11/0220.out,
	tests/rdfa11/0220.xml, tests/rdfa11/0221.out,
	tests/rdfa11/0221.xml, tests/rdfa11/0222.out,
	tests/rdfa11/0222.xml, tests/rdfa11/0223.out,
	tests/rdfa11/0223.xml, tests/rdfa11/0224.out,
	tests/rdfa11/0224.xml, tests/rdfa11/0225.out,
	tests/rdfa11/0225.xml, tests/rdfa11/0226.out,
	tests/rdfa11/0226.xml, tests/rdfa11/0227.out,
	tests/rdfa11/0227.xml, tests/rdfa11/0228.out,
	tests/rdfa11/0228.xml, tests/rdfa11/0229.out,
	tests/rdfa11/0229.xml, tests/rdfa11/0230.out,
	tests/rdfa11/0230.xml, tests/rdfa11/0231.out,
	tests/rdfa11/0231.xml, tests/rdfa11/0232.out,
	tests/rdfa11/0232.xml, tests/rdfa11/0233.out,
	tests/rdfa11/0233.xml, tests/rdfa11/0234.out,
	tests/rdfa11/0234.xml, tests/rdfa11/0235.xml,
	tests/rdfa11/0236.out, tests/rdfa11/0236.xml,
	tests/rdfa11/0237.out, tests/rdfa11/0237.xml,
	tests/rdfa11/0238.out, tests/rdfa11/0238.xml,
	tests/rdfa11/0239.out, tests/rdfa11/0239.xml,
	tests/rdfa11/0246.out, tests/rdfa11/0246.xml,
	tests/rdfa11/0247.out, tests/rdfa11/0247.xml,
	tests/rdfa11/0248.out, tests/rdfa11/0248.xml,
	tests/rdfa11/0249.out, tests/rdfa11/0249.xml,
	tests/rdfa11/0250.out, tests/rdfa11/0250.xml,
	tests/rdfa11/0251.out, tests/rdfa11/0251.xml,
	tests/rdfa11/0252.out, tests/rdfa11/0252.xml,
	tests/rdfa11/0253.out, tests/rdfa11/0253.xml,
	tests/rdfa11/0254.out, tests/rdfa11/0254.xml,
	tests/rdfa11/0255.out, tests/rdfa11/0255.xml,
	tests/rdfa11/0256.out, tests/rdfa11/0256.xml,
	tests/rdfa11/0257.out, tests/rdfa11/0257.xml,
	tests/rdfa11/0258.xml, tests/rdfa11/0259.out,
	tests/rdfa11/0259.xml, tests/rdfa11/0260.out,
	tests/rdfa11/0260.xml, tests/rdfa11/0261.out,
	tests/rdfa11/0261.xml, tests/rdfa11/0262.out,
	tests/rdfa11/0262.xml, tests/rdfa11/0263.out,
	tests/rdfa11/0263.xml, tests/rdfa11/0264.out,
	tests/rdfa11/0264.xml, tests/rdfa11/0265.out,
	tests/rdfa11/0265.xml, tests/rdfa11/0266.out,
	tests/rdfa11/0266.xml, tests/rdfa11/0267.out,
	tests/rdfa11/0267.xml, tests/rdfa11/0268.out,
	tests/rdfa11/0268.xml, tests/rdfa11/0269.out,
	tests/rdfa11/0269.xml, tests/rdfa11/0271.out,
	tests/rdfa11/0271.xml, tests/rdfa11/0272.out,
	tests/rdfa11/0272.xml, tests/rdfa11/0273.out,
	tests/rdfa11/0273.xml, tests/rdfa11/0274.out,
	tests/rdfa11/0274.xml, tests/rdfa11/0275.out,
	tests/rdfa11/0275.xml, tests/rdfa11/0276.out,
	tests/rdfa11/0276.xml, tests/rdfa11/0277.out,
	tests/rdfa11/0277.xml, tests/rdfa11/0278.out,
	tests/rdfa11/0278.xml, tests/rdfa11/0279.out,
	tests/rdfa11/0279.xml, tests/rdfa11/0280.out,
	tests/rdfa11/0280.xml, tests/rdfa11/0281.out,
	tests/rdfa11/0281.xml, tests/rdfa11/0282.out,
	tests/rdfa11/0282.xml, tests/rdfa11/0283.out,
	tests/rdfa11/0283.xml, tests/rdfa11/0284.out,
	tests/rdfa11/0284.xml, tests/rdfa11/0285.out,
	tests/rdfa11/0285.xml, tests/rdfa11/0286.out,
	tests/rdfa11/0286.xml, tests/rdfa11/0287.out,
	tests/rdfa11/0287.xml, tests/rdfa11/0289.out,
	tests/rdfa11/0289.xml, tests/rdfa11/0290.out,
	tests/rdfa11/0290.xml, tests/rdfa11/0291.out,
	tests/rdfa11/0291.xml, tests/rdfa11/0292.out,
	tests/rdfa11/0292.xml, tests/rdfa11/0293.out,
	tests/rdfa11/0293.xml, tests/rdfa11/0295.xml,
	tests/rdfa11/0296.out, tests/rdfa11/0296.xml,
	tests/rdfa11/0297.out, tests/rdfa11/0297.xml,
	tests/rdfa11/0298.out, tests/rdfa11/0298.xml,
	tests/rdfa11/0299.out, tests/rdfa11/0299.xml,
	tests/rdfa11/0300.out, tests/rdfa11/0300.xml,
	tests/rdfa11/0301.out, tests/rdfa11/0301.xml,
	tests/rdfa11/0302.out, tests/rdfa11/0302.xml,
	tests/rdfa11/0303.out, tests/rdfa11/0303.xml,
	tests/rdfa11/0304.out, tests/rdfa11/0304.xml,
	tests/rdfa11/Makefile.am: Add RDFa 1.1 tests and expected failures

	* librdfa/rdfa.c: Crash fix for @prefix

	(start_element): Do not crash if strtok_r returns NULL during walk
	through @prefix.  Instead, abort attribute prefix search This
	makes RDFA 1.0 test 0209 work for me

	* src/raptor_librdfa.c: Default for parser 'rdfa' is whatever
	librdfa does by default

	* librdfa/lists.c: Removed assignment of never-read 'triple'
	variable [clang]

	* src/turtle_lexer.l: Make failure to convert Turtle qname log as
	level error not fatal

2012-06-08  Dave Beckett <dave@dajobe.org>

	* Makefile.am: Restore README and NEWS building for building from
	GIT

	* RELEASE.html: 2.0.8

	* ChangeLog, ChangeLog.12, Makefile.am:
	Added ChangeLog.12 for 2011

	* docs/tmpl/section-uri.sgml: Updated uri tmpl

	* src/snprintf.c: Prototypes for test functions to remove GCC
	format warnings

	* src/Makefile.am, src/snprintf.c: Add snprintf module simple unit
	tests

	* configure.ac: Set CPPFLAGS temporarily before libxml and libxslt
	tests

	* configure.ac: Make stripping -O flags (for maintainer) work
	unless --enable-release

	* configure.ac: --enable-debug no longer adds -g to CFLAGS

2012-06-07  Dave Beckett <dave@dajobe.org>

	* src/turtle_lexer.l, src/turtle_parser.y: Remove fatal errors
	when a Turtle qname cannot be found

	(turtle_lexer_error): Renamed from turtle_lexer_fatal_error and
	takes a log level and now is in varargs format.

	{QNAME}: Call turtle_lexer_error with a regular error log level
	and provide user level information on the qname that failed.
	Updated other calls to turtle_lexer_fatal error.

	(turtle_syntax_error): Call raptor_parser_log_error_varargs().
	Fixes Issue#0000507
	http://bugs.librdf.org/mantis/view.php?id=507

	* src/raptor_grddl.c, src/raptor_internal.h, src/raptor_parse.c:
	Pass in log level to parser error helper

	(raptor_parser_log_error_varargs): Renamed from
	raptor_parser_error_varargs and pass on log level to
	raptor_log_error_varargs

	* librdfa/Makefile.am, librdfa/config.h: Add librdfa config.h to
	dist

	* src/raptor_term.c:
	(raptor_new_term_from_literal): Bad cast for language len
	truncation.

	* utils/Makefile.am:
	Improve building of rdfdiff

	Declare rdfdiff as noinst_PROGRAMS instead of EXTRA_PROGRAMS, so
	that it's always built (but not installed)

	There is no need to mention rdfdiff in CLEANFILES, as Automake
	already knows to clean it

	* tests/grddl/Makefile.am, tests/json/Makefile.am,
	tests/ntriples/Makefile.am, tests/rdfa/Makefile.am,
	tests/rdfxml/Makefile.am, tests/trig/Makefile.am,
	tests/turtle/Makefile.am:
	Fixes for out of tree testing

	Place the path to rapper in a variable RAPPER that can be
	overridden by the user and ensure all instances have a $(EXEEXT)
	suffix.

	Use $(RAPPER) instead of the path to same in target bodies.

	Place the path to rdfdiff in a variable RDFDIFF that can be
	overridden by the user.

	Use $(RDFDIFF) instead of the path to same in target bodies

	* tests/feeds/Makefile.am: Fixes for feeds testing for out of tree
	builds and portability

	Do not use a variable containing a list of filenames both in a
	target's dependencies and in the target body, at least outside of
	maintainer mode.  Make on Solaris 8 has a funny idea of how to
	implement VPATH; it modifies the value of the variable by
	prefixing the srcdir path to each filename therein, and this
	breaks our rule code.

	Remove the use of $? as this is not well-supported outside of GNU
	Make and the semantics of it are not needed or wanted.

	Adjust check-validate-atom target to look for input fields in
	either builddir or srcdir since some are generated and some are
	source.

	* tests/feeds/Makefile.am: TRANG in a variable and add docs ptr

	* src/Makefile.am:
	Fixes for out of tree builds of library

	Declare the turtle lex/yacc sources as BUILT_SOURCES, to take
	advantage of Automake semantics for these.

	Remove LEX and YACC variables, as these are already handled
	automagically.

	Replaced all instances of $(srcdir)/.. with $(top_srcdir)

	Added some guard logic to the turtle_lexer.c rule so that it
	doesn't erroneously generate the target file.

	Added dummy turtle_lexer.h and turtle_parser.h rules to satisfy
	dependencies

	Fixed a typo in the raptor_parse_test rule

	* docs/Makefile.am:
	Fixes for out of tree builds of docs

	Removed $(builddir)/ from target files since that is where they
	already are.

	raptor2.h is a file generated by config.status, so it always lives
	in $(builddir), not $(srcdir)

	Replaced all instances of $(srcdir)/.. with $(top_srcdir)

	Added "dist-hook-local: docs" so that the docs are generated
	during a "make dist" if they haven't been generated already
	(otherwise "make dist" fails when they can't be found)

	* configure.ac: Quote testing $use_memory_signing

	* configure.ac:
	Make all AC_ARG_WITH(blah) options handle --without-blah correctly

	Now these forms can be used
	  --with-foo      - enable feature
	  --without-foo   - disable feature
	  --with-foo=blah - enable and give a value
	  --with-foo=     - (default action) enable and search for value
	  (not given)     - (default action) enable and search for value
	for --with-xml2-config, --with-xslt-config, --with-curl-config,
	--with-icu-config and --with-libwww-config where 'no' can be used
	to disable it and prevent automatic searches for the config script
	in the PATH.

	* configure.ac:
	Fix some configure portability issues

	Fixed a typo in the STRCASECMP conditional

	Set CPPFLAGS whether or not the check for xsltSaveResultToString
	succeeds, because AC_CHECK_HEADERS() depends on this and the
	result of the header check should not depend on the result of the
	lib check.

	Put -DRAPTOR_DEBUG and -DMAINTAINER_MODE into the config header
	instead of CPPFLAGS. This prevents the flags from potentially
	being passed to "make distcheck" builds, where they can cause
	trouble (e.g. absence of git-version.h header)

	Removed -g from maintainer CPPFLAGS since it does not belong there
	and add to CFLAGS when --enable-debug is given.

	* Makefile.am:
	Fix README and NEWS building - only for maintainer

	Generate NEWS in $(srcdir) as automake won't look for it in
	$(builddir)

	Remove not needed dist-hook target since README and NEWS are
	copied in by the standard 'make dist' mechanism.

	* autogen.sh: Support NOCONFIGURE variable, like Lib{XML2,XSLT}

2012-06-06  Dave Beckett <dave@dajobe.org>

	* src/snprintf.c: Portability improvements to vsnprintf code and
	macros

	(vsnprintf_check_is_c99): Initialize len to -1 when the variable
	is declared instead of in the macro to remove redundancy.

	(vsnprintf_is_c99): Check that len < size before looking at
	tmp_buffer[len] otherwise we may be looking past the buffer size.

	(macro VSNPRINTF_NOT_C99_BLOCK): free tmp_buffer when breaking out
	of the while(1) loop.  set len to a non-negative value in the
	buffer != NULL case (raptor_vsnprintf2): Initialize len to -1 here
	instead of in the VSNPRINTF_NOT_C99_BLOCK() macro.  Return -1 if
	format is NULL.

	(raptor_vasprintf): Copy var args to re-use them when calling
	raptor_vsnprintf2()

	* configure.ac: Make configure vsnprintf() check more
	comprehensive

	- Test program also needs <stdio.h> and (now) <stdlib.h>
	- Declare is_c99() function as static to avoid "no previous
	  declaration" warning from GCC's -Wmissing-declarations
	- Improved test to invoke vsnprintf(NULL, 0, ...) because on Solaris
	  8, the function returns -1 in this case but works normally otherwise
	- Declare main(void) instead of main(int argc, char* argv) to avoid
	  "unused parameter" warnings
	- Make test program return 0 if the test is successful,
	  as otherwise a false-positive result is possible (note that
	  AC_TRY_RUN() interprets failure to compile/link the program, etc.
	  the same as a non-zero program exit status)
	- Make the test program return an exit status indicative of the
	  failure mode: 1 = non-NULL case fails, 10 = NULL case fails, 11
	  = both fail
	- Use proper m4 quoting in modified code

	* src/turtle_common.h: struct raptor_turtle_parser_s: trig field
	is now int (compiler bugs)

	* src/parsedate.y:
	Include raptor headers here for CAST macros

2012-05-23  Dave Beckett <dave@dajobe.org>

	* librdfa/rdfa.c:
	(start_element): Start a raptor namespace for RDFa 1.1 @prefix

2012-05-23  Lauri Aalto <laalto@iki.fi>

	* src/snprintf.c:
	(raptor_vsnprintf2): Fix uninitialized variable problems in non-c99
	variant. Thanks to John Emmas for reporting.

	- Compute len internally using int, not size_t as standard
	  vsnprintf() returns ints anyway. This fixes for negative value
	  comparison. Cast from size_t to int required for strlen() return
	  value.
	- Initialize len earlier
	- Use passed in size if a buffer is given

2012-05-22  Dave Beckett <dave@dajobe.org>

	* configure.ac: Use #ifdef in parsedate code fragment

2012-05-21  Dave Beckett <dave@dajobe.org>

	* src/win32_raptor_config.h.in: win32 config
	RAPTOR_VERSION_DECIMAL renamed from RAPTOR_VERSION

	* src/turtle_parser.y:
	(main): Store fread result in a size_t

	* utils/rdfdiff.c: Fixed reference leak of blank->owner

	* utils/rdfdiff.c: Add raptor internal macros when building
	without RAPTOR_INTERNAL

	* utils/rapper.c, utils/rdfdiff.c: Need <io.h> on Windows for
	_access()

	* src/turtle_lexer.l: Removed const qualifier from
	turtle_lexer_oom_text[]

	Fixes warning when passed as a non-const function argument

	* src/turtle_parser.y:
	(turtle_parse): Added casts to quell type-compatibility warnings

	* src/strcasecmp.c: Removed needless <stdio.h> #include and main()
	prototype

	(assert_strcasecmp): Test raptor_strcasecmp(), not
	whatever strcasecmp() resolves to

	* src/raptor_xml.c: Changed quote to a char for better type
	compatibility

	* src/raptor_uri.c:
	URI test build fixes

	Removed redundant WIN32_URI_TEST construct

	Added STANDALONE cpp conditional around library functions

	* src/raptor_term.c:
	(raptor_new_term_from_literal): size_t and char casts.

	* src/raptor_serialize_rss.c: Fix reference leaks for rss tag soup
	parser.

	(raptor_rss10_emit_rdfxml_item_triples): Don't make a copy of
	base_uri to pass to raptor_serializer_start_to_iostream(), because
	this function already makes its own copy

	(raptor_rss10_ensure_atom_feed_valid): Use time() instead of
	gettimeofday() with struct timeval when HAVE_GETTIMEOFDAY is not
	defined.

	(raptor_rss10_emit_item): Moved the "atom:summary" short-circuit
	up to prevent a potential memory leak ("predicate")

	(raptor_rss10_serialize_end): Don't leak entry_uri

	* src/raptor_rdfxml.c: Fixed some rdfxml parser memory leaks /
	double frees

	(raptor_rdfxml_start_element_grammar): Fixed a memory leak

	(raptor_rdfxml_end_element_grammar): Fixed a double-free() by
	setting a pointer to NULL

	* src/raptor_rdfxml.c: Broaden range of RDF/XML entity recognizing
	heuristic

	(raptor_rdfxml_parse_recognise_syntax): Removed angle brackets
	from the HAS_RDF_ENTITY* strings to allow recognition of documents
	produced by Stanford's Protege software (and possibly others)

	* src/raptor_rdfxml.c:
	(raptor_rdfxml_parse_terminate): Fixed leaks when freeing
	rdf_xml_parser

	* src/raptor_log.c: Guard against a buffer underrun

	* src/raptor_iostream.c: Change raptor_iostream offset type to
	size_t

	(raptor_iostream_tell): Cast it (BAD) to "unsigned long" here.
	FIXME: Needs a new iostream API method that returns the full
	offset as a size_t

	* src/raptor_internal.h: Quell cpp warnings for undefined symbols

	* src/raptor_general.c: Use RAPTOR_VERSION_STRING for
	raptor_version_string

	* src/parsedate.y: Quell cpp warnings for undefined symbols

	(LookupWord): Use a cast to assign a size_t to an int

2012-05-17  Dave Beckett <dave@dajobe.org>

	* tests/rdfa/0304.out, tests/rdfa/0304.xml,
	tests/rdfa/Makefile.am: Add approved test 0304 (SVG) - failing

	* tests/rdfa/Makefile.am: 0294.xml now passes

	* librdfa/curie.c: Do not match the 'xml' prefix in raptor

	* tests/rdfa/Makefile.am: Remove unused unapproved test framework

	* utils/rapper.1: typo

2012-05-16  Dave Beckett <dave@dajobe.org>

	* librdfa/config.h, librdfa/context.c, librdfa/curie.c,
	librdfa/iri.c, librdfa/language.c, librdfa/lists.c,
	librdfa/rdfa.c, librdfa/rdfa.h, librdfa/rdfa_utils.c,
	librdfa/rdfa_utils.h, librdfa/strtok_r.c, librdfa/strtok_r.h,
	librdfa/subject.c, librdfa/triple.c, src/Makefile.am,
	src/raptor_internal.h, src/raptor_librdfa.c,
	tests/rdfa/Makefile.am: Update librdfa in raptor to latest GIT and
	make it work for RDFa 1.0

	Add RDFa parser version aliases rdfa10, rdfa11 and default to 1.1

	Existing RDFa 1.0 tests pass ONLY IF RDFa 1.0 is forced with -i rdfa10

	* tests/ntriples/bug-481.out: Add surrogate chars to bug 481
	output

	* tests/turtle/Makefile.am, tests/turtle/bad-15.ttl,
	tests/turtle/bad-16.ttl: Add (currently) bad turtle forms of bnode
	subjects

	* tests/turtle/Makefile.am, tests/turtle/test-38.out,
	tests/turtle/test-38.ttl: Turtle test 38 for reading/writing
	UTF-16 surrogates

	Test for Issue #0000505
	http://bugs.librdf.org/mantis/view.php?id=505

	* src/turtle_lexer.l: Do not report double errors for Turtle
	string decoding problems.

	* src/ntriples_parse.c, src/raptor_nfc_test.c, src/turtle_common.c:
	Handle errors from raptor_unicode_utf8_string_put_char

	(raptor_stringbuffer_append_turtle_string)
	(raptor_string_python_write, raptor_ntriples_term): Store result
	in int and only use it if positive.

	Part of fix for Issue #0000505
	http://bugs.librdf.org/mantis/view.php?id=505

	* src/raptor_unicode.c:
	Allow reading/writing U+D800 to U+DFFF (UTF-16 surrogates)

	(raptor_unicode_utf8_string_put_char)
	(raptor_unicode_utf8_string_get_char): Should be ok to pass
	through.  Leaving the BOMs as forbidden - definitely not UTF-8

	Part of fix for Issue #0000505
	http://bugs.librdf.org/mantis/view.php?id=505

	* tests/rdfa/0001.out, tests/rdfa/0001.xhtml, tests/rdfa/0001.xml,
	tests/rdfa/0006.out, tests/rdfa/0006.xhtml, tests/rdfa/0006.xml,
	tests/rdfa/0007.out, tests/rdfa/0007.xhtml, tests/rdfa/0007.xml,
	tests/rdfa/0008.out, tests/rdfa/0008.xhtml, tests/rdfa/0008.xml,
	tests/rdfa/0009.xhtml, tests/rdfa/0009.xml, tests/rdfa/0010.xhtml,
	tests/rdfa/0010.xml, tests/rdfa/0011.out, tests/rdfa/0011.xhtml,
	tests/rdfa/0012.xhtml, tests/rdfa/0012.xml, tests/rdfa/0013.xhtml,
	tests/rdfa/0013.xml, tests/rdfa/0014.xhtml, tests/rdfa/0014.xml,
	tests/rdfa/0015.out, tests/rdfa/0015.xhtml, tests/rdfa/0015.xml,
	tests/rdfa/0017.xhtml, tests/rdfa/0017.xml, tests/rdfa/0018.out,
	tests/rdfa/0018.xhtml, tests/rdfa/0018.xml, tests/rdfa/0019.xhtml,
	tests/rdfa/0019.xml, tests/rdfa/0020.out, tests/rdfa/0020.xhtml,
	tests/rdfa/0020.xml, tests/rdfa/0021.out, tests/rdfa/0021.xhtml,
	tests/rdfa/0021.xml, tests/rdfa/0023.out, tests/rdfa/0023.xhtml,
	tests/rdfa/0023.xml, tests/rdfa/0025.out, tests/rdfa/0025.xhtml,
	tests/rdfa/0025.xml, tests/rdfa/0026.xhtml, tests/rdfa/0026.xml,
	tests/rdfa/0027.xhtml, tests/rdfa/0027.xml, tests/rdfa/0029.xhtml,
	tests/rdfa/0029.xml, tests/rdfa/0030.out, tests/rdfa/0030.xhtml,
	tests/rdfa/0030.xml, tests/rdfa/0031.out, tests/rdfa/0031.xhtml,
	tests/rdfa/0031.xml, tests/rdfa/0032.out, tests/rdfa/0032.xhtml,
	tests/rdfa/0032.xml, tests/rdfa/0033.out, tests/rdfa/0033.xhtml,
	tests/rdfa/0033.xml, tests/rdfa/0034.xhtml, tests/rdfa/0034.xml,
	tests/rdfa/0035.xhtml, tests/rdfa/0035.xml, tests/rdfa/0036.xhtml,
	tests/rdfa/0036.xml, tests/rdfa/0037.xhtml, tests/rdfa/0037.xml,
	tests/rdfa/0038.xhtml, tests/rdfa/0038.xml, tests/rdfa/0039.xhtml,
	tests/rdfa/0039.xml, tests/rdfa/0040.xhtml, tests/rdfa/0040.xml,
	tests/rdfa/0041.xhtml, tests/rdfa/0041.xml, tests/rdfa/0042.xhtml,
	tests/rdfa/0042.xml, tests/rdfa/0046.xhtml, tests/rdfa/0046.xml,
	tests/rdfa/0047.xhtml, tests/rdfa/0047.xml, tests/rdfa/0048.xhtml,
	tests/rdfa/0048.xml, tests/rdfa/0049.xhtml, tests/rdfa/0049.xml,
	tests/rdfa/0050.xhtml, tests/rdfa/0050.xml, tests/rdfa/0051.out,
	tests/rdfa/0051.xhtml, tests/rdfa/0051.xml, tests/rdfa/0052.xhtml,
	tests/rdfa/0052.xml, tests/rdfa/0053.xhtml, tests/rdfa/0053.xml,
	tests/rdfa/0054.out, tests/rdfa/0054.xhtml, tests/rdfa/0054.xml,
	tests/rdfa/0055.out, tests/rdfa/0055.xhtml, tests/rdfa/0055.xml,
	tests/rdfa/0056.xhtml, tests/rdfa/0056.xml, tests/rdfa/0057.xhtml,
	tests/rdfa/0057.xml, tests/rdfa/0058.xhtml, tests/rdfa/0058.xml,
	tests/rdfa/0059.out, tests/rdfa/0059.xhtml, tests/rdfa/0059.xml,
	tests/rdfa/0060.xhtml, tests/rdfa/0060.xml, tests/rdfa/0061.out,
	tests/rdfa/0061.xhtml, tests/rdfa/0061.xml, tests/rdfa/0062.out,
	tests/rdfa/0062.xhtml, tests/rdfa/0062.xml, tests/rdfa/0063.out,
	tests/rdfa/0063.xhtml, tests/rdfa/0063.xml, tests/rdfa/0064.out,
	tests/rdfa/0064.xhtml, tests/rdfa/0064.xml, tests/rdfa/0065.out,
	tests/rdfa/0065.xhtml, tests/rdfa/0065.xml, tests/rdfa/0066.out,
	tests/rdfa/0066.xhtml, tests/rdfa/0066.xml, tests/rdfa/0067.out,
	tests/rdfa/0067.xhtml, tests/rdfa/0067.xml, tests/rdfa/0068.out,
	tests/rdfa/0068.xhtml, tests/rdfa/0068.xml, tests/rdfa/0069.out,
	tests/rdfa/0069.xhtml, tests/rdfa/0069.xml, tests/rdfa/0070.out,
	tests/rdfa/0070.xhtml, tests/rdfa/0070.xml, tests/rdfa/0071.out,
	tests/rdfa/0071.xhtml, tests/rdfa/0071.xml, tests/rdfa/0072.xhtml,
	tests/rdfa/0072.xml, tests/rdfa/0073.xhtml, tests/rdfa/0073.xml,
	tests/rdfa/0074.xhtml, tests/rdfa/0074.xml, tests/rdfa/0075.xhtml,
	tests/rdfa/0075.xml, tests/rdfa/0076.out, tests/rdfa/0076.xhtml,
	tests/rdfa/0076.xml, tests/rdfa/0077.out, tests/rdfa/0077.xhtml,
	tests/rdfa/0077.xml, tests/rdfa/0078.out, tests/rdfa/0078.xhtml,
	tests/rdfa/0078.xml, tests/rdfa/0079.xhtml, tests/rdfa/0079.xml,
	tests/rdfa/0080.xhtml, tests/rdfa/0080.xml, tests/rdfa/0081.xhtml,
	tests/rdfa/0081.xml, tests/rdfa/0082.xhtml, tests/rdfa/0082.xml,
	tests/rdfa/0083.xhtml, tests/rdfa/0083.xml, tests/rdfa/0084.xhtml,
	tests/rdfa/0084.xml, tests/rdfa/0085.xhtml, tests/rdfa/0085.xml,
	tests/rdfa/0086.out, tests/rdfa/0086.xhtml, tests/rdfa/0087.out,
	tests/rdfa/0087.xhtml, tests/rdfa/0087.xml, tests/rdfa/0088.xhtml,
	tests/rdfa/0088.xml, tests/rdfa/0089.xhtml, tests/rdfa/0089.xml,
	tests/rdfa/0090.xhtml, tests/rdfa/0090.xml, tests/rdfa/0091.out,
	tests/rdfa/0091.xhtml, tests/rdfa/0091.xml, tests/rdfa/0092.out,
	tests/rdfa/0092.xhtml, tests/rdfa/0093.out, tests/rdfa/0093.xhtml,
	tests/rdfa/0093.xml, tests/rdfa/0094.out, tests/rdfa/0094.xhtml,
	tests/rdfa/0099.xhtml, tests/rdfa/0099.xml, tests/rdfa/0100.out,
	tests/rdfa/0100.xhtml, tests/rdfa/0101.out, tests/rdfa/0101.xhtml,
	tests/rdfa/0102.out, tests/rdfa/0102.xhtml, tests/rdfa/0103.out,
	tests/rdfa/0103.xhtml, tests/rdfa/0104.out, tests/rdfa/0104.xhtml,
	tests/rdfa/0104.xml, tests/rdfa/0105.out, tests/rdfa/0105.xhtml,
	tests/rdfa/0106.out, tests/rdfa/0106.xhtml, tests/rdfa/0106.xml,
	tests/rdfa/0107.xhtml, tests/rdfa/0107.xml, tests/rdfa/0108.xhtml,
	tests/rdfa/0108.xml, tests/rdfa/0109.out, tests/rdfa/0109.xhtml,
	tests/rdfa/0109.xml, tests/rdfa/0110.out, tests/rdfa/0110.xhtml,
	tests/rdfa/0110.xml, tests/rdfa/0111.out, tests/rdfa/0111.xhtml,
	tests/rdfa/0111.xml, tests/rdfa/0112.xhtml, tests/rdfa/0112.xml,
	tests/rdfa/0113.out, tests/rdfa/0113.xml, tests/rdfa/0114.out,
	tests/rdfa/0114.xml, tests/rdfa/0115.out, tests/rdfa/0115.xml,
	tests/rdfa/0117.out, tests/rdfa/0117.xml, tests/rdfa/0118.out,
	tests/rdfa/0118.xml, tests/rdfa/0119.out, tests/rdfa/0119.xml,
	tests/rdfa/0120.out, tests/rdfa/0120.xml, tests/rdfa/0121.out,
	tests/rdfa/0121.xml, tests/rdfa/0122.out, tests/rdfa/0122.xml,
	tests/rdfa/0126.out, tests/rdfa/0126.xml, tests/rdfa/0131.out,
	tests/rdfa/0131.xml, tests/rdfa/0134.out, tests/rdfa/0134.xml,
	tests/rdfa/0140.out, tests/rdfa/0140.xml, tests/rdfa/0147.out,
	tests/rdfa/0147.xml, tests/rdfa/0172.out, tests/rdfa/0172.xhtml,
	tests/rdfa/0172.xml, tests/rdfa/0173.out, tests/rdfa/0173.xhtml,
	tests/rdfa/0173.xml, tests/rdfa/0174.out, tests/rdfa/0174.xhtml,
	tests/rdfa/0174.xml, tests/rdfa/0181.out, tests/rdfa/0181.xml,
	tests/rdfa/0197.out, tests/rdfa/0197.xml, tests/rdfa/0201.out,
	tests/rdfa/0201.xml, tests/rdfa/0202.out, tests/rdfa/0202.xml,
	tests/rdfa/0203.out, tests/rdfa/0203.xml, tests/rdfa/0207.out,
	tests/rdfa/0207.xml, tests/rdfa/0209.out, tests/rdfa/0209.xml,
	tests/rdfa/0210.out, tests/rdfa/0210.xml, tests/rdfa/0211.out,
	tests/rdfa/0211.xml, tests/rdfa/0212.out, tests/rdfa/0212.xml,
	tests/rdfa/0215.out, tests/rdfa/0215.xml, tests/rdfa/0258.out,
	tests/rdfa/0258.xml, tests/rdfa/0262.out, tests/rdfa/0262.xml,
	tests/rdfa/0291.out, tests/rdfa/0291.xml, tests/rdfa/0292.out,
	tests/rdfa/0292.xml, tests/rdfa/0294.out, tests/rdfa/0294.xml,
	tests/rdfa/1001.out, tests/rdfa/1001.xhtml, tests/rdfa/Makefile.am:
	Update RDFa 1.0 tests
	- Rename test files to .xml so expected result urls are correct
	- Just approved tests
	- Turned sparql queries into expected triple output
	- Hand edited all negative tests to expect 0 triples
	- Removed duplicate xmlns from generated xml
	- 0201.xml 0202.xml 0203.xml are SVG not XHTML; altered expected
	output triples

	* librdfa/curie.c:
	(rdfa_resolve_uri): Pulled from newer RDFA git

	* librdfa/rdfa.c:
	(rdfa_init_base): Calculate buffer expansion correctly

	Pulled from newer RDFA git

	* tests/rdfa/Makefile.am: check-rdfa: Allow rapper result
	warning (status 2) as success

	* src/raptor_librdfa.c: Do not generate blank node predicate RDFa
	triples

	(raptor_librdfa_generate_statement): Return warning instead of
	generating blank node predicate RDFa triples.  Maybe should be
	silent?

	* configure.ac: Add strtok_r check for upcoming librdfa RDFA 1.1

2012-05-15  Dave Beckett <dave@dajobe.org>

	* src/raptor_qname.c: doc

2012-05-14  Dave Beckett <dave@dajobe.org>

	* src/raptor_libxml.c:
	(raptor_libxml_resolveEntity): Init entity_input [clang]

2012-04-13  Dave Beckett <dave@dajobe.org>

	* src/raptor_www_curl.c:
	(raptor_www_curl_header_callback): Do not send CRNL to URI
	constructor.

	* src/raptor_www_curl.c: Interpret Content-Location header as
	absolute or relative URI

	(raptor_www_curl_header_callback): Use
	raptor_new_uri_relative_to_base_counted to construct URI relative
	to current base.

	* docs/raptor-1-to-2-map.tsv, docs/raptor2-sections.txt,
	src/raptor2.h.in, src/raptor_uri.c:
	(raptor_new_uri_relative_to_base_counted): Added

2012-03-30  Dave Beckett <dave@dajobe.org>

	* docs/raptor-1-to-2-map.tsv, docs/raptor2-sections.txt,
	docs/tmpl/section-triples.sgml, docs/tmpl/section-uri.sgml: Update
	api docs for turtle write fns

	* Merge pull request #3 from Anchakor/node_rw_turtle_string
	turtle uri and term writing/tostring functions

2012-03-29  Jiří Procházka <ojirio@gmail.com>

	* src/raptor2.h.in, src/raptor_serialize_turtle.c:
	(raptor_uri_to_turtle_counted_string,
	raptor_term_to_turtle_counted_string): add counted string
	versions. style and docs changes

	* Merge remote-tracking branch 'dajobe/master' into
	node_rw_turtle_string

2012-03-23  Dave Beckett <dave@dajobe.org>

	* docs/raptor2-sections.txt, docs/tmpl/section-www.sgml: Add
	raptor_www_set_ssl_verify_option to docs - missing 's' in sections

	* RELEASE.html:
	RAPTOR_OPTION_LOAD_EXTERNAL_ENTITIES words

2012-03-22  Dave Beckett <dave@dajobe.org>

	* NEWS.html, RELEASE.html, configure.ac:
	Bumped version to 2.0.8

	* Snapshotted raptor2_2_0_7 for 2.0.7 release (GIT
	a676f235309a59d4aa78eeffd2574ae5d341fcb0)

2012-01-29  Dave Beckett <dave@dajobe.org>

	* librdfa/rdfa.c, src/raptor2.h.in, src/raptor_libxml.c,
	src/raptor_option.c, src/raptor_rdfxml.c, src/raptor_rss.c,
	src/raptor_turtle_writer.c: CVE-2012-0037

	Enforce entity loading policy in raptor_libxml_resolveEntity and
	raptor_libxml_getEntity by checking for file URIs and network
	URIs.

	Add RAPTOR_OPTION_LOAD_EXTERNAL_ENTITIES / loadExternalEntities
	for turning on loading of XML external entity loading, disabled by
	default.

	This affects all the parsers that use SAX2: rdfxml, rdfa,
	rss-tag-soup (and aliases).

2012-03-15  Dave Beckett <dave@dajobe.org>

	* librdfa/rdfa.c: Pass on options NO_NET and NO_FILE to RDFA SAX2
	object

2012-03-11  Dave Beckett <dave@dajobe.org>

	* src/raptor_general.c:
	(raptor_world_default_generate_bnodeid_handler): size_t for
	id_length.

	* src/snprintf.c:
	(raptor_format_integer): cast for comparing width to len

	* INSTALL.html, configure.ac, src/Makefile.am,
	src/raptor_internal.h, src/raptor_nfc.c, src/raptor_nfc.h,
	src/raptor_nfc_data.c, src/raptor_nfc_icu.c, src/raptor_rdfxml.c,
	src/raptor_unicode.c: Use ICU to check for Unicode NFC

	This commit removes the built-in Raptor code for checking that
	RDF/XML literals in Unicode NFC.  This is now provided by the ICU
	library which is only linked in if configure is given the
	--with-icu-config=PATH argument.

	Advantages:
	1. Removes a large compiled-in static dataset in the library and
	makes raptor smaller.
	2. Uses a library that is kept up to date for new Unicode
	versions.
	3. Should make RDF/XML parsing faster since it does not need to
	check for NFC on every literal.

	Disadvantages:
	1. Removes an existing (but likely rarely used) feature

	* src/raptor_nfc_test.c:
	Run all tests, fix file decoding

	* src/raptor_nfc_test.c: size_t

2012-02-20  Dave Beckett <dave@dajobe.org>

	* src/raptor_internal.h, src/snprintf.c:
	(raptor_format_integer): Return size_t for this internal function.

2012-02-17  Dave Beckett <dave@dajobe.org>

	* docs/tmpl/section-option.sgml, docs/tmpl/section-sax2.sgml,
	docs/tmpl/section-uri.sgml: Update tmpls

2012-02-13  Lauri Aalto <laalto@iki.fi>

	* autogen.sh:
	require automake 1.11.2+ for -Wextra-portability

2012-02-08  Dave Beckett <dave@dajobe.org>

	* build/.gitignore, configure.ac: Add automake option
	-Wextra-portability and AM_PROG_AR to make it happy

2012-02-04  Dave Beckett <dave@dajobe.org>

	* utils/rapper.c:
	Put raptor_option_get_count() out of the loops

	* src/raptor_parse.c:
	(raptor_new_parser): Set default strictness

	* docs/raptor2-sections.txt: docs

	* ChangeLog, RELEASE.html: 2.0.7

	* src/raptor_option.c, src/raptor_parse.c, src/raptor_serialize.c,
	src/raptor_xml_writer.c:
	(raptor_object_options_init): Move default option settings here

	* RELEASE.html, docs/raptor-1-to-2-map.tsv, src/raptor2.h.in,
	src/raptor_internal.h, src/raptor_option.c, src/raptor_parse.c,
	src/raptor_turtle_writer.c, src/raptor_www.c,
	src/raptor_www_curl.c: Add options for controlling SSL certificate
	verifying

	Add options RAPTOR_OPTION_WWW_SSL_VERIFY_PEER for controlling
	verifying an SSL peer.  Takes an integer value: non-0 to verify
	peer SSL certificate (default 1)

	Add option RAPTOR_OPTION_WWW_SSL_VERIFY_HOST for controlling
	verifying an SSL host.  Takes an integer value: 0 none, 1 CN
	match, 2 host match (default). Other values are ignored.

	(raptor_www_set_ssl_verify_options): Added to set the verify
	options on the raptor_www object.

	Fixes Issue #0000469
	http://bugs.librdf.org/mantis/view.php?id=469

	* INSTALL.html, LICENSE.html, NEWS.html, README.html,
	RELEASE.html, TODO.html, UPGRADING.html: 2011

	* configure.ac: tidy xml parser message

	* configure.ac, src/Makefile.am, src/raptor_expat.c,
	src/raptor_internal.h, src/raptor_rdfxml.c, src/raptor_sax2.c:
	Remove expat support

	Update configure to properly let you build raptor without any XML
	support either - it only needs it if a parser that requires XML is
	configured.

2012-02-01  Dave Beckett <dave@dajobe.org>

	* src/raptor_sax2.c:
	(raptor_sax2_check_load_uri_string): Failure returned

	* src/raptor_uri.c: casts

	* src/raptor_uri.c:
	(raptor_new_uri_from_uri_or_file_string): Never free
	uri_or_file_string

	* src/raptor_uri.c: Make raptor_new_uri_from_uri_or_file_string
	check for files first.

	(raptor_new_uri_from_uri_or_file_string): If the arg is a file
	that exists, use that as the path.

	* docs/raptor-1-to-2-map.tsv, docs/raptor2-sections.txt,
	src/raptor2.h.in, src/raptor_uri.c:
	(raptor_uri_filename_exists): Added

2012-02-01  Lauri Aalto <laalto@iki.fi>

	* src/raptor_sax2.c:
	(raptor_sax2_parse_chunk): Return parse errors to caller.

	Fixes part of Issue #0000488
	http://bugs.librdf.org/mantis/view.php?id=488

	* src/raptor_json.c:
	(raptor_json_new_term_from_counted_string): RAPTOR_BAD_CAST for
	shortening size_t -> int cast

	* src/turtle_parser.y:
	(turtle_parse,raptor_turtle_parse_chunk): Return parse error
	status to caller

	Fixes Issue #0000488
	http://bugs.librdf.org/mantis/view.php?id=488

2012-01-30  Dave Beckett <dave@dajobe.org>

	* docs/raptor-1-to-2-map.tsv, docs/raptor2-sections.txt,
	src/raptor2.h.in, src/raptor_sax2.c, src/raptor_uri.c: More file
	URI updates

	(raptor_new_uri_from_uri_or_file_string): Added new constructor

	(raptor_uri_uri_string_to_counted_filename): Removed

	(raptor_sax2_check_load_uri_string): Use
	raptor_new_uri_from_uri_or_file_string() and just check for file:

	(raptor_uri_uri_string_is_file_uri): Just check for file:

	(raptor_uri_file_exists): Check if URI is a file URI and the file
	exists.

	* src/raptor_internal.h, src/raptor_sax2.c, utils/rapper.c:
	Consolidate URI policy checks and call SAX2 uri filter

	(raptor_sax2_check_load_uri_string): add and use for policy
	checks, making file URIs from canonical filename and calling URI
	filter callback on SAX2.

	rapper (rapper_uri_trace): Use trace word since it is not just
	processing

2012-01-29  Dave Beckett <dave@dajobe.org>

	* docs/raptor-1-to-2-map.tsv, docs/raptor2-sections.txt,
	src/raptor2.h.in, src/raptor_internal.h, src/raptor_rdfxml.c,
	src/raptor_rss.c, src/raptor_sax2.c:
	(raptor_sax2_set_uri_filter): Added to filter for SAX2

	* src/raptor_www.c:
	(raptor_www_fetch): Return status code from URI filter

	* docs/raptor-1-to-2-map.tsv, src/raptor2.h.in,
	src/raptor_option.c, src/raptor_rdfxml.c, src/raptor_rss.c,
	src/raptor_turtle_writer.c: Add RAPTOR_OPTION_NO_FILE to deny
	internal file requests

	* src/raptor_json.c:
	Handle size changing between YAJL V1 and V2

	Use RAPTOR_YAJL_LEN_TYPE macro to deal with the arg type change

2012-01-28  Dave Beckett <dave@dajobe.org>

	* src/raptor_uri.c: code cleanup

	* docs/raptor-1-to-2-map.tsv, docs/raptor2-sections.txt,
	src/raptor2.h.in, src/raptor_uri.c: Rename file uri string to
	match convention

	(raptor_uri_uri_string_to_counted_filename_fragment): Added to
	return count lengths

	(raptor_uri_uri_string_is_file_uri): Use
	raptor_uri_uri_string_to_counted_filename() after a simple URI
	test.

	(raptor_uri_uri_string_to_filename): Renamed from
	raptor_uri_uri_string_as_filename and use above.

	(raptor_uri_uri_string_to_counted_filename): Added using above and
	returning count.

	* configure.ac, docs/raptor-1-to-2-map.tsv,
	docs/raptor2-sections.txt, src/raptor2.h.in, src/raptor_uri.c:
	raptor_uri_uri_string_as_filename

	* src/raptor_internal.h, src/raptor_sax2.c: Add internal SAX2
	enabled flag for enabling/disabling callbacks