CARVIEW |
Select Language
HTTP/2 200
date: Thu, 09 Oct 2025 17:30:59 GMT
content-type: text/html
content-encoding: gzip
last-modified: Thu, 13 Jul 2023 18:29:17 GMT
cache-control: max-age=2592000, public
expires: Sat, 08 Nov 2025 15:36:02 GMT
vary: Accept-Encoding
access-control-allow-origin: *
x-request-id: 98bef3895820a498
strict-transport-security: max-age=15552015; preload
x-frame-options: deny
x-xss-protection: 1; mode=block
cf-cache-status: HIT
set-cookie: __cf_bm=jd5Z4MeUwS5RgVF5LgzWYr_BjO7pr1ixVCIxBR.9YJU-1760031059-1.0.1.1-wqW3H4F8n.cnXVxe3WcSOca_kfZJeMwmKGFkLz.tDPYDIlQsGqxD9ZjBDLg24Jdkln0uH92xHSF57EzdOl2epJ20yxRQb4XyYDFWUsoAiMg; path=/; expires=Thu, 09-Oct-25 18:00:59 GMT; domain=.w3.org; HttpOnly; Secure; SameSite=None
server: cloudflare
cf-ray: 98bf9be33aa5ad8b-BLR
alt-svc: h3=":443"; ma=86400
Two new test cases needed? from Manu Sporny on 2007-12-06 (public-rdf-in-xhtml-tf@w3.org from December 2007)
Two new test cases needed?
- From: Manu Sporny <msporny@digitalbazaar.com>
- Date: Thu, 06 Dec 2007 09:53:57 -0500
- To: RDFa <public-rdf-in-xhtml-tf@w3.org>
- Message-ID: <47580D05.8070004@digitalbazaar.com>
I think we need at least two new test cases to cover the new rules: - One to cover a single hanging rel. - Another to cover generation of multiple triples using a single hanging rel. We could condense both tests down into one, but I think keeping them separate would be a good idea. ====================== Test Case 56 ============================= ---------------------Test Case 56 XHTML-------------------------- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "https://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <html xmlns="https://www.w3.org/1999/xhtml" xmlns:foaf="https://xmlns.com/foaf/0.1/"> <head> <title>Test 0056</title> </head> <body> <div about="https://www.example.org/#ben" instanceof="foaf:Person" rel="foaf:knows"> <p about="https://www.example.org/#mark" instanceof="foaf:Person" property="foaf:name">Mark Birbeck</p> </div> </body> </html> ---------------------Test Case 56 SPARQL------------------------ ASK WHERE { <https://www.example.org/#ben> <https://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://xmlns.com/foaf/0.1/Person> . <https://www.example.org/#ben> <https://xmlns.com/foaf/0.1/knows> <https://www.example.org/#mark> . <https://www.example.org/#mark> <https://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://xmlns.com/foaf/0.1/Person> . <https://www.example.org/#mark> <https://xmlns.com/foaf/0.1/name> "Mark Birbeck" . } ----------------------------------------------------------------- ====================== Test Case 57 ============================= ---------------------Test Case 57 XHTML-------------------------- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "https://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <html xmlns="https://www.w3.org/1999/xhtml" xmlns:foaf="https://xmlns.com/foaf/0.1/"> <head> <title>Test 0057</title> </head> <body> <div about="https://www.example.org/#ben" instanceof="foaf:Person" rel="foaf:knows"> <p about="https://www.example.org/#mark" instanceof="foaf:Person" property="foaf:name">Mark Birbeck</p> <p about="https://www.example.org/#ivan" instanceof="foaf:Person" property="foaf:name">Ivan Herman</p> </div> </body> </html> ---------------------Test Case 57 SPARQL-------------------------- ASK WHERE { <https://www.example.org/#ben> <https://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://xmlns.com/foaf/0.1/Person> . <https://www.example.org/#ben> <https://xmlns.com/foaf/0.1/knows> <https://www.example.org/#mark> . <https://www.example.org/#ben> <https://xmlns.com/foaf/0.1/knows> <https://www.example.org/#ivan> . <https://www.example.org/#mark> <https://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://xmlns.com/foaf/0.1/Person> . <https://www.example.org/#mark> <https://xmlns.com/foaf/0.1/name> "Mark Birbeck" . <https://www.example.org/#ivan> <https://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://xmlns.com/foaf/0.1/Person> . <https://www.example.org/#ivan> <https://xmlns.com/foaf/0.1/name> "Ivan Herman" . } -------------------------------------------------------------- -- manu -- Manu Sporny President/CEO - Digital Bazaar, Inc. blog: Over One Million Songs Available on Bitmunk https://blog.digitalbazaar.com/2007/10/29/one-million-songs-on-bitmunk/
Received on Thursday, 6 December 2007 14:54:28 UTC