NIHVIVO-3311 Provide a way to get URLs from the ObjectPropertyStatmentTemplateModel without them being stepped on by AntiSamy.

This commit is contained in:
j2blake 2011-11-30 21:46:21 +00:00
parent 776b045911
commit c240321458

View file

@ -12,8 +12,8 @@
next statement -->
<#macro showConcept statement>
<#if statement.vocabularySourceName??>
<a href="${profileUrl(statement.concept)}" title="concept name">${statement.conceptLabel!statement.conceptName}</a> (${statement.vocabularySourceName})
<a href="${profileUrl(statement.uri("concept"))}" title="concept name">${statement.conceptLabel!statement.conceptName}</a> (${statement.vocabularySourceName})
<#else>
<a href="${profileUrl(statement.concept)}" title="concept name">${statement.conceptLabel!statement.conceptName}</a>
<a href="${profileUrl(statement.uri("concept"))}" title="concept name">${statement.conceptLabel!statement.conceptName}</a>
</#if>
</#macro>