blob: bf1b7edbe92aa55e74cfd755f384048fca527e4c [file] [log] [blame]
<%-- /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/ --%>
<%@include file="/libs/sling-cms/global.jsp"%>
<option value=""><fmt:message key="Select Component" /></option>
<c:forEach var="type" items="${fn:split(param.availableTypes,',')}">
<optgroup label="${sling:encode(type,'HTML_ATTR')}">
<c:set var="query" value="SELECT * FROM [sling:Component] WHERE [componentType]='${type}' ORDER BY [jcr:title]" />
<c:forEach var="component" items="${sling:findResources(resourceResolver,query,'JCR-SQL2')}">
<c:choose>
<c:when test="${fn:startsWith(component.path,'/apps/')}">
<option value="${fn:substringAfter(component.path,'/apps/')}"><sling:encode value="${component.valueMap['jcr:title']}" mode="HTML" /></option>
</c:when>
<c:otherwise>
<option value="${fn:substringAfter(component.path,'/libs/')}"><sling:encode value="${component.valueMap['jcr:title']}" mode="HTML" /></option>
</c:otherwise>
</c:choose>
</c:forEach>
</optgroup>
</c:forEach>