blob: 16881a602e73481739e38a92064dff62786c419a [file] [log] [blame]
[
<c:forEach var="theResource" items="<%=resource.listChildren()%>" varStatus="status">
<%--Hiding the resource provider root. --%>
<c:if test="${theResource.path != '/reseditor'}">
<% Resource theResource = (Resource) pageContext.getAttribute("theResource");%>
{
"text": "<i class=\"jstree-icon node-icon open-icon\"></i><i class=\"jstree-icon node-icon remove-icon\"></i><i class=\"jstree-icon node-icon add-icon\"></i>${fn:escapeXml(theResource.name)} [<span class=\"node-type\">${theResource.resourceType}</span>]",
"li_attr": { "nodename" : "${fn:escapeXml(theResource.name)}" },
"a_attr": { "href" : "/reseditor${fn:escapeXml(theResource.path)}.html" },
"children" : <%= theResource.listChildren().hasNext() %> <%--${theResource.listChildren().hasNext()} will work in Servlet 3.0 --%>
}${!status.last ? ',': ''}
</c:if>
</c:forEach>
]