[graphl-cvs] graphl/graphs test.rdf
Status: Pre-Alpha
Brought to you by:
flo1
From: Flo L. <fl...@us...> - 2005-12-18 11:11:52
|
Update of /cvsroot/graphl/graphl/graphs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2618/graphs Modified Files: test.rdf Log Message: - FEATURE: RXPath landed! you can assign properties of facets through XPath-like expressions based on the currently rendered node - CODE: Remove LabelGenerator classes - this can now done with RXPath - CODE: migrated to JDK 1.5, added class specifiers for all collections (generics) - CODE: added a singleton GraphlRegistry, currently only holding the vocabularyRegistry instance Index: test.rdf =================================================================== RCS file: /cvsroot/graphl/graphl/graphs/test.rdf,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** test.rdf 7 Sep 2005 12:16:30 -0000 1.7 --- test.rdf 18 Dec 2005 11:11:41 -0000 1.8 *************** *** 43,62 **** <foaf:knows rdf:resource="#genid3"/> </foaf:Person> - <foaf:Person rdf:ID="genid4" - foaf:name="Flo"/> - <foaf:Person rdf:ID="genid5" - foaf:name="Flo Ledermann"/> - <foaf:Person rdf:ID="genid6" - foaf:name="foo"> - <foaf:knows rdf:resource="#genid7"/> - </foaf:Person> <foaf:Person rdf:ID="genid7" foaf:name="bar"/> - <foaf:Person rdf:ID="genid3" - foaf:name="Fooooo"/> <foaf:Person rdf:ID="genid112" foaf:name="baz"> ! <foaf:knows rdf:resource="#genid7"/> </foaf:Person> </rdf:RDF> --- 43,53 ---- <foaf:knows rdf:resource="#genid3"/> </foaf:Person> <foaf:Person rdf:ID="genid7" foaf:name="bar"/> <foaf:Person rdf:ID="genid112" foaf:name="baz"> ! <foaf:knows rdf:resource="#genid7" rdf:ID="test"/> </foaf:Person> + <rdf:Description rdf:about="#test" foo:since="1"/> </rdf:RDF> |