Skip to content

Commit

Permalink
Updated to the blue table and updated name of WD
Browse files Browse the repository at this point in the history
  • Loading branch information
riannella committed Jun 17, 2016
1 parent f4d13b1 commit 22401f7
Show file tree
Hide file tree
Showing 5 changed files with 996 additions and 984 deletions.
8 changes: 4 additions & 4 deletions tools/classes.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function propertyList($property, $skip = null) {
public function propertyRow($title, $property, $skip = null) {
$items = $this->propertyList($property, $skip);
if (count($items) > 0) {
return "<tr><th>$title:</th> <td>".implode(', ', $items)."</td></tr>\n";
return "<tr><td><b>$title:</b></td> <td>".implode(', ', $items)."</td></tr>\n";
} else {
return '';
}
Expand Down Expand Up @@ -325,8 +325,8 @@ public function htmlTerms($type, $title) {
}
$html .= "\n" . $description . "\n";;

$html .= "<table>\n";
$html .= " <tr><th>URI:</th> <td>".$term->htmlLink()."</td></tr>\n";
$html .= "<table class='def propdef'>\n";
$html .= " <tr><td><b>URI:</b></td> <td>".$term->htmlLink()."</td></tr>\n";
$html .= $term->propertyRow("Label", "rdfs:label");
$html .= $term->propertyRow("Status", "vs:term_status");
$html .= $term->propertyRow("Equivalent to", "owl:sameAs");
Expand All @@ -342,7 +342,7 @@ public function htmlTerms($type, $title) {
if ($term instanceof Phpspecgen_Class) {
$properties = $term->inheritedProperties();
if (count($properties) > 0)
$html .= " <tr><th>Inherited Properties:</th> ".
$html .= " <tr><td><b>Inherited Properties:</b></td> ".
"<td>".join(', ', $properties)."</td></tr>\n";
}
$html .= $term->propertyRow("Range", "rdfs:range");
Expand Down
6 changes: 3 additions & 3 deletions vocab/WD/ODRL30.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@

odrl:
a owl:Ontology , voaf:Vocabulary ;
rdfs:label "ODRL Version 3.0"@en ;
owl:versionInfo "3.0" ;
rdfs:label "ODRL Version 2.2"@en ;
owl:versionInfo "2.2" ;
vann:preferredNamespaceUri <http://w3.org/ns/odrl/2/> ;
vann:preferredNamespacePrefix "odrl" ;
vann:example :Asset ;
dct:creator "Mo McRoberts (BBC)", "Víctor Rodríguez Doncel (OEG-UPM)" ;
dct:issued "2016-06-13"^^xsd:date ;
dct:contributor "ODRL Community Group" ;
dct:description "ODRL provides flexible and interoperable mechanisms to support transparent and innovative use of digital content in publishing, distribution, and consumption of digital media across all sectors and communities. The ODRL Policy model is broad enough to support traditional rights expressions for commercial transaction, open access expressions for publicly distributed content, and privacy expressions for social media."@en ;
rdfs:comment "This is the RDF ontology for ODRL Version 3.0 (working draft)."@en ;
rdfs:comment "This is the RDF ontology for ODRL Version 2.2 (working draft)."@en ;
dct:license <http://www.w3.org/community/about/agreements/final/> .

<http://www.w3.org/ns/odrl/2/ODRL21.ttl>
Expand Down
2 changes: 1 addition & 1 deletion vocab/WD/config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var respecConfig = {
specStatus: "ED",
shortName: "odrl-vocab",
publishDate: "2016-05-14",
publishDate: "2016-05-17",
//previousPublishDate: "",
//previousMaturity: "",
//previousURI: "",
Expand Down
Loading

0 comments on commit 22401f7

Please sign in to comment.