source: php/trunk/unittest/rdfa_merge/unittest.ttl

Last change on this file was 7, checked in by cla, 14 years ago

rdfint

  • added unittests
  • Property svn:eol-style set to native
File size: 1.0 KB
Line 
1
2# RDFInt.php - RDF Interfaces for PHP
3# Copyright 2011 netlabs.org
4# Author: Christian Langanke, Adrian Gschwend
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17
18@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
19@prefix foaf: <http://xmlns.com/foaf/0.1/> .
20@prefix resource: <http://data.uduvudu.org/resource/> .
21
22resource:12345 rdf:type foaf:Person;
23 foaf:name "Christian Langanke";
24 foaf:work [
25 foaf:city "Duesseldorf";
26 ]
27 .
28
29resource:67890 rdf:type foaf:Person;
30 foaf:name "Adrian Gschwend";
31 foaf:work [
32 foaf:city "Biel";
33 ]
34 .
Note: See TracBrowser for help on using the repository browser.