Changed name of IndividualProfileUrlMethod in template data model from "url" to "profileUrl"

This commit is contained in:
rjy7 2011-01-04 15:11:09 +00:00
parent 583ec198d5
commit 9011fc9425
4 changed files with 8 additions and 8 deletions

View file

@ -13,10 +13,10 @@
<#local linkedIndividual>
<#if statement.infoResource??>
<a href="${url(statement.infoResource)}">${statement.infoResourceName}</a>
<a href="${profileUrl(statement.infoResource)}">${statement.infoResourceName}</a>
<#else>
<#-- This shouldn't happen, but we must provide for it -->
<a href="${url(statement.authorship)}">${statement.authorshipName}</a> (no linked information resource)
<a href="${profileUrl(statement.authorship)}">${statement.authorshipName}</a> (no linked information resource)
</#if>
</#local>

View file

@ -19,10 +19,10 @@
<#local linkedIndividual>
<#if statement.org??>
<a href="${url(statement.org)}">${statement.orgName}</a>
<a href="${profileUrl(statement.org)}">${statement.orgName}</a>
<#else>
<#-- This shouldn't happen, but we must provide for it -->
<a href="${url(statement.edTraining)}">${statement.edTrainingName}</a> (no linked organization)
<a href="${profileUrl(statement.edTraining)}">${statement.edTrainingName}</a> (no linked organization)
</#if>
</#local>

View file

@ -12,10 +12,10 @@
<#local linkedIndividual>
<#if statement.person??>
<a href="${url(statement.person)}">${statement.personName}</a>
<a href="${profileUrl(statement.person)}">${statement.personName}</a>
<#else>
<#-- This shouldn't happen, but we must provide for it -->
<a href="${url(statement.authorship)}">${statement.authorshipName}</a> (no linked author)
<a href="${profileUrl(statement.authorship)}">${statement.authorshipName}</a> (no linked author)
</#if>
</#local>

View file

@ -13,10 +13,10 @@
<#local linkedIndividual>
<#if statement.org??>
<a href="${url(statement.org)}">${statement.orgName}</a>
<a href="${profileUrl(statement.org)}">${statement.orgName}</a>
<#else>
<#-- This shouldn't happen, but we must provide for it -->
<a href="${url(statement.position)}">${statement.positionName}</a> (no linked organization)
<a href="${profileUrl(statement.position)}">${statement.positionName}</a> (no linked organization)
</#if>
</#local>