我正在设置一个 HTML5 网页并希望包含 RDFa。我尝试使用w3 验证器检查语法,并使用w3 RDFa distiller检查提取的 RDF 。当我使用xmlns:<ns>="<uri>"
验证器声明命名空间时抱怨该属性不允许在那里,并且规范说 xmlns 已被弃用,但如果我尝试另一个建议prefix="<ns> <uri>"
蒸馏器不会发现嵌入在我的页面上的 RDFa。我应该坚持哪种方式?
问问题
674 次
4 回答
5
使用@prefix
. 您问题的关键在于 W3C 的 RDFa Distiller 页面上的前几句话:
该蒸馏器符合 RDFa 1.0 规范。2012 年,W3C 发布了该规范的更新版本,称为 RDFa Core 1.1。一个新的蒸馏器,处理 RDFa 1.1 内容,已经实施,它取代了这个。
该@prefix
属性是 RDFa 1.1 中的新增功能,因此旧 Distiller 无法识别。
W3C RDFa 1.1 Distiller应该能够正确处理它。
于 2012-09-20T18:06:02.350 回答
1
另外,请确保正确使用支持 HTML5 和 RDFa 的 NU 验证器:http: //validator.w3.org/nu/
于 2012-09-20T19:23:29.950 回答
1
xmlns 是从 RDFa 仅限于X HTML 时遗留下来的。XHTML5 之类的东西允许 XML 操作(例如 XSLT)与 HTML 功能一起使用,因此无论 xmlns 为构建 RDFa 自己的身份而弃用的状态如何,杀死 xmlns 都是不太可能的。至于较新的技术,即使您继续前进,某些工具也可能不得不迎头赶上。
于 2012-12-20T07:06:21.180 回答
0
我正在使用这个:
<!DOCTYPE html>
<html vocab="http://www.w3.org/2011/rdfa-context/rdfa-1.1">
<!-- you can use one or more prefixes
cat: http://www.w3.org/ns/dcat#
qb: http://purl.org/linked-data/cube#
grddl: http://www.w3.org/2003/g/data-view#
ma: http://www.w3.org/ns/ma-ont#
owl: http://www.w3.org/2002/07/owl#
rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
rdfa: http://www.w3.org/ns/rdfa#
rdfs: http://www.w3.org/2000/01/rdf-schema#
rif: http://www.w3.org/2007/rif#
rr: http://www.w3.org/ns/r2rml#
skos: http://www.w3.org/2004/02/skos/core#
skosxl: http://www.w3.org/2008/05/skos-xl#
wdr: http://www.w3.org/2007/05/powder#
void: http://rdfs.org/ns/void#
wdrs: http://www.w3.org/2007/05/powder-s#
xhv: http://www.w3.org/1999/xhtml/vocab#
xml: http://www.w3.org/XML/1998/namespace
xsd: http://www.w3.org/2001/XMLSchema#
prov: http://www.w3.org/ns/prov#
sd: http://www.w3.org/ns/sparql-service-description#
org: http://www.w3.org/ns/org#
gldp: http://www.w3.org/ns/people#
cnt: http://www.w3.org/2008/content#
dcat: http://www.w3.org/ns/dcat#
earl: http://www.w3.org/ns/earl#
ht: http://www.w3.org/2006/http#
ptr: http://www.w3.org/2009/pointers#
cc: http://creativecommons.org/ns#
ctag: http://commontag.org/ns#
dc: http://purl.org/dc/terms/
dc11: http://purl.org/dc/elements/1.1/
dcterms: http://purl.org/dc/terms/
foaf: http://xmlns.com/foaf/0.1/
gr: http://purl.org/goodrelations/v1#
ical: http://www.w3.org/2002/12/cal/icaltzd#
og: http://ogp.me/ns#
rev: http://purl.org/stuff/rev#
sioc: http://rdfs.org/sioc/ns#
v: http://rdf.data-vocabulary.org/#
vcard: http://www.w3.org/2006/vcard/ns#
schema: http://schema.org/
describedby:http://www.w3.org/2007/05/powder-s#describedby
license: http://www.w3.org/1999/xhtml/vocab#license
role: http://www.w3.org/1999/xhtml/vocab#role
-->
<head>
<meta property="og:title dc:title" content="This is a test!">
<meta property="dc:description" content="This is a description test">
</head>
<body>
<header typeof="role:banner schema:Organization">
<div>
<h1>
<a href="/" title="home" rel="home" accesskey="1">
<img class="logo" property="schema:image" src="my-image.png" width="160" alt="My logo">
</a>
</h1>
<h2>
<span property="schema:description">creative design and rock-solid development</span>
</h2>
</div>
</header>
...and so on...
</body>
</html>
你可以在这里阅读更多关于它的信息http://rdfa.info
于 2014-03-17T13:05:45.020 回答