fix rdf syntax errors
This commit is contained in:
parent
3f02df3564
commit
f1cf05ce75
2 changed files with 3 additions and 3 deletions
|
@ -84,12 +84,12 @@ class Topic < ApplicationRecord
|
||||||
|
|
||||||
def as_rdf
|
def as_rdf
|
||||||
output = ''
|
output = ''
|
||||||
output += %(d:topic_#{id} a mm:topic\n)
|
output += %(d:topic_#{id} a mm:topic ;\n)
|
||||||
output += %( rdfs:label "#{name}";\n)
|
output += %( rdfs:label "#{name}";\n)
|
||||||
output += %( rdfs:comment "#{desc}";\n)
|
output += %( rdfs:comment "#{desc}";\n)
|
||||||
output += %( foaf:homepage <#{link}>;\n) if link.present?
|
output += %( foaf:homepage <#{link}>;\n) if link.present?
|
||||||
output += %( mm:mapper d:mapper_#{user_id} ;\n)
|
output += %( mm:mapper d:mapper_#{user_id} ;\n)
|
||||||
output += %( mm:metacode "#{metacode.name} ;\n)
|
output += %( mm:metacode "#{metacode.name}" ;\n)
|
||||||
output[-2] = '.' # change last ; to a .
|
output[-2] = '.' # change last ; to a .
|
||||||
output += %(\n)
|
output += %(\n)
|
||||||
output
|
output
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
@prefix mm: <http://metamaps.cc/owl/map.owl.ttl#> .
|
@prefix mm: <http://metamaps.cc/owl/map.owl.ttl#> .
|
||||||
|
|
||||||
: a owl:Ontology ;
|
: a owl:Ontology ;
|
||||||
rdfs:label "Metamaps Map"@en ;
|
rdfs:label "Metamaps Map"@en .
|
||||||
|
|
||||||
mm:topic a owl:Class ;
|
mm:topic a owl:Class ;
|
||||||
rdfs:label "One concept on a metamap"@en .
|
rdfs:label "One concept on a metamap"@en .
|
||||||
|
|
Loading…
Add table
Reference in a new issue