Update of /cvsroot/cobricks/cobricks2/web/ADMIN/org.cobricks.item
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv7692
Added Files:
ontology.html.en
Removed Files:
cal-day.html cal-month.html cal-week.html ontology.html
Log Message:
--- NEW FILE: ontology.html.en ---
#parse ( "/ADMIN/pageheader.html" )
<em><a href="/ADMIN/index.html">Admin</a> -
<a href="/ADMIN/org.cobricks.item/index.html">Item Component</a></em>
<h1>Item Ontology</h1>
#foreach ( $o in $itemManager.getOntology().getClasses() )
<p><h3><b>$o.getName()</b>
#set ( $tmp = $!corePresenter.getOntologyClassParentName($o) )
#if ( $tmp != "" )
($tmp)
#end
</h3>
#set ( $tmp = "$!o.getJavaClassName()" )
#if ( $tmp != "" )
JavaClass: $tmp<br>
#end
#set ( $tmp = "$!o.getType()" )
#if ( $tmp != "" )
Type: $tmp<br>
#end
#foreach ( $l in $o.getDescriptionLangs() )
Description ($l): $o.getDescription($l)<br>
#end
<table border="1">
#foreach ( $an in $o.getAttributeNames() )
#set ( $a = $o.getAttribute($an) )
<tr><td>$!a.getName()</td><td>$!a.getType()</td><td>$!a.getDefault()</td><td>$!a.getContextClassName()</td></tr>
#end
</table>
#end
#parse ( "/ADMIN/pagefooter.html" )
--- cal-day.html DELETED ---
--- cal-month.html DELETED ---
--- cal-week.html DELETED ---
--- ontology.html DELETED ---
|