- From: Seaborne, Andy <andy.seaborne@hp.com>
- Date: Mon, 03 Sep 2007 17:35:43 +0100
- To: Lee Feigenbaum <lee@thefigtrees.net>
- CC: 'RDF Data Access Working Group' <public-rdf-dawg@w3.org>
Lee Feigenbaum wrote:
> (Hi, all. A short agenda now, full agenda to follow later today.)
>
> + fix test suite
> + new sameTerm tests
> + open world test comments from Arjohn
> + invalid turtle data
Hopefully all fixed (I can't check since, I guess, like everyone else, my
Turtle subsystem does accept these forms):
I found and fixed two files with "[ white space ]"
dataset/dataset-11.ttl
dataset/dataset-12.ttl
My test was:
find tests/data-r2 -name \*.ttl | xargs perl grep.pl
and grep.pl was
-------------
#!/bin/perl
undef $/ ;
while(defined($file = shift @ARGV))
{
open(FILE, "<$file") || die ;
binmode FILE ;
$_ = <FILE> ;
if ( /\[\s*\n\s*\]/ )
{
print "$file\n" ;
}
}
-------------
and files with the [ :p :q ] .
i18n/normalization-01.ttl
searching with
grep -r '^\s*\[[^]]' test/data-r2/
Andy
> + out-of-date zip/gz archive
>
> + implementation report status
>
> + query language text change status and reviewers
>
> + more on protocol, WSDL, and XSD from last week
>
>
> If you have any status updates to share, please do :-)
>
> Lee
>
Received on Monday, 3 September 2007 16:36:02 UTC