Remove unused templates; using macros to generate property list instead of including subtemplates.

This commit is contained in:
rjy7 2010-12-22 23:22:23 +00:00
parent 0bb02e34bf
commit e1e2959a8a
4 changed files with 0 additions and 32 deletions

View file

@ -1,7 +0,0 @@
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#-- Template to list statements for a data property -->
<#list property.statements as statement>
<li role="listitem">${statement.value}</li>
</#list>

View file

@ -1,10 +0,0 @@
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#-- Template for collated object property statement list -->
<p>Display of collated object property statements is in progress.</p>
<#list property.subclasses as subclass>
<h3>${subclass}</h3>
<@listStatements subclass.statements />
</#list>

View file

@ -1,9 +0,0 @@
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#-- Template to list statements for an object property -->
<#list statements as statement>
<li role="listitem">
<#include "${property.template}">
</li>
</#list>

View file

@ -1,6 +0,0 @@
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#-- Template for uncollated object property statement list -->
<#assign statements = property.statements>
<#include "objectPropertyList-statements.ftl">