This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Raptor RDF parser and serializer library".

The branch, raptor1 has been updated
       via  72c2150b39c499dfb4a744a369091cb251fa5524 (commit)
       via  b40a37c680124a8080f5cc3cb0b5022027abf714 (commit)
       via  e6234fb6dfb8fe9ed86d1de442cb9f4a0983a8b8 (commit)
       via  7a839cbf9cc883ceb24be745fb07ca9dbd8671af (commit)
       via  de0bb65f9ec776ce43d585ea9553f42ba1055a13 (commit)
       via  03231e4a9a3aadab1039143e3b4512bbb125e749 (commit)
       via  5371bf9845b189dbb2aabc9a56696b0b8aa6772b (commit)
       via  24e761e5d46973342b900c104d86b5b1064a4c0f (commit)
       via  38a515ed7ab7f9c45d1d7d447b9f0b76530b1804 (commit)
       via  6d3496c4107ec5d5374089a397db736267f581c2 (commit)
       via  a23412a328a8fcff2d72c34081e636652be80121 (commit)
      from  a1db001285ab8869ee43b8a9284327c69b4e1741 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 72c2150b39c499dfb4a744a369091cb251fa5524
Author: Dave Beckett <[email protected]>
Date:   Thu Jan 28 20:38:06 2010 -0800

    1.4.21

commit b40a37c680124a8080f5cc3cb0b5022027abf714
Author: Dave Beckett <[email protected]>
Date:   Thu Jan 28 20:27:33 2010 -0800

    #changes

commit e6234fb6dfb8fe9ed86d1de442cb9f4a0983a8b8
Author: Dave Beckett <[email protected]>
Date:   Thu Jan 28 20:12:17 2010 -0800

    Create a new set for checking for duplicate rdf:ID at start of every parse.
    
    (raptor_rdfxml_parse_init): Remove creating set from when parser is
    constructed.
    
    (raptor_rdfxml_parse_start): At start of parsing, delete any existing
    id set and only create a new one if the feature
    RAPTOR_FEATURE_CHECK_RDF_ID is enabled.

commit 7a839cbf9cc883ceb24be745fb07ca9dbd8671af
Author: Dave Beckett <[email protected]>
Date:   Thu Jan 28 19:31:43 2010 -0800

    Alter Turtle lexer to refuse to accept . in namespace prefix/local names
    
    Adjust Turtle lexer to match spec for the prefixName and name tokens:
    http://www.w3.org/TeamSubmission/2008/SUBM-turtle-20080114/#prefixName
    http://www.w3.org/TeamSubmission/2008/SUBM-turtle-20080114/#name
    
    This makes some previously accepted not-to-spec turtle documents be
    rejected.
    
    It makes new bad turtle syntax tests bad-21 and bad-22 pass.
    
    (NCNAME_PREFIX): Updated for prefixName
    (NCNAME): Update for name

commit de0bb65f9ec776ce43d585ea9553f42ba1055a13
Author: Dave Beckett <[email protected]>
Date:   Thu Jan 28 19:23:17 2010 -0800

    Add bad turtle tests 21, 22 for . in prefix and qname

commit 03231e4a9a3aadab1039143e3b4512bbb125e749
Author: Dave Beckett <[email protected]>
Date:   Thu Jan 28 18:57:20 2010 -0800

    Make ntriples parser accept text/plain with q=0.1
    
    (raptor_ntriples_parser_register_factory): Register mime type
    text/plain via raptor_parser_factory_add_mime_type.

commit 5371bf9845b189dbb2aabc9a56696b0b8aa6772b
Author: Dave Beckett <[email protected]>
Date:   Thu Jan 28 18:51:04 2010 -0800

    Make Turtle lexer handle \\ at end of triple-quoted literals
    
    Alter literal regex and let raptor_stringbuffer_append_turtle_string
    report problems with buffer ending in middle of \u and \U.
    
    Add rule for bare \ on it's own which can only happen if input ends
    on a \.
    
    Fixes Issue#0000318 http://bugs.librdf.org/mantis/view.php?id=318

commit 24e761e5d46973342b900c104d86b5b1064a4c0f
Author: Dave Beckett <[email protected]>
Date:   Thu Jan 28 18:26:48 2010 -0800

    Add bad-20.ttl test for end of file in middle of \ escape

commit 38a515ed7ab7f9c45d1d7d447b9f0b76530b1804
Author: Dave Beckett <[email protected]>
Date:   Thu Jan 28 17:47:17 2010 -0800

    Added test-33 for \\ at end of triple-quoted turtle literal
    
    Added tests/turtle/test-33.ttl and tests/turtle/test-33.out files to test
    Issue#0000318 http://bugs.librdf.org/mantis/view.php?id=318

commit 6d3496c4107ec5d5374089a397db736267f581c2
Author: Dave Beckett <[email protected]>
Date:   Thu Jan 28 17:42:36 2010 -0800

    Update to librdfa GIT commit 1979d7246a1d98f95bab78704a32b87cf95d1ef6

commit a23412a328a8fcff2d72c34081e636652be80121
Author: Dave Beckett <[email protected]>
Date:   Thu Jan 28 17:39:21 2010 -0800

    Use build dir for automake aux files.

-----------------------------------------------------------------------

Summary of changes:
 .gitignore               |    1 -
 ChangeLog                |  137 +++++++++++++++++++++++++++++++++++++++++++++-
 Makefile.am              |    2 +
 RELEASE.html             |   43 ++++++++++++++-
 configure.ac             |   11 ++--
 librdfa/iri.c            |    2 +-
 src/ntriples_parse.c     |    3 +
 src/raptor_rdfxml.c      |   18 ++++--
 src/turtle_lexer.l       |   21 +++++--
 tests/turtle/Makefile.am |    6 +-
 tests/turtle/bad-20.ttl  |    3 +
 tests/turtle/bad-21.ttl  |    2 +
 tests/turtle/bad-22.ttl  |    3 +
 tests/turtle/test-33.out |    1 +
 tests/turtle/test-33.ttl |    3 +
 15 files changed, 234 insertions(+), 22 deletions(-)
 create mode 100644 tests/turtle/bad-20.ttl
 create mode 100644 tests/turtle/bad-21.ttl
 create mode 100644 tests/turtle/bad-22.ttl
 create mode 100644 tests/turtle/test-33.out
 create mode 100644 tests/turtle/test-33.ttl


hooks/post-receive
-- 
Raptor RDF parser and serializer library
_______________________________________________
redland-commits mailing list
[email protected]
http://lists.librdf.org/mailman/listinfo/redland-commits

Reply via email to