<%-- 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. --%> <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> <%@ taglib uri="http://portals.apache.org/pluto" prefix="pluto" %> <%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt"%> <%@ page import="java.util.ArrayList,java.util.HashMap,org.apache.pluto.driver.services.portal.PageConfig" %> <% //Get everything into the map and ready. String delim = "/"; int delim_len = delim.length(); HashMap> categories = new HashMap>(); ArrayList catNames = new ArrayList(); HashMap shortNames = new HashMap(); PageConfig welcomePageConfig = null; String welcomePageName = "Welcome"; %> <% PageConfig pageConfig = (PageConfig)(pageContext.getAttribute("page")); String str = pageConfig.getName(); String cat; String pageName; if(!str.equals(welcomePageName)){ int index = str.indexOf(delim); if(index != -1){ cat = str.substring(0, index); pageName = str.substring(index+delim_len); }else{ cat = "Other"; pageName = str; } if(categories.get(cat)==null){ categories.put(cat, new ArrayList()); catNames.add(cat); } categories.get(cat).add(pageConfig); shortNames.put(str,pageName); }else{ welcomePageConfig = pageConfig; } %> <% String pageName; if(welcomePageConfig!=null){ pageContext.setAttribute("page",welcomePageConfig); pageName = welcomePageName; %> <%} %> <% //generate the output tree int catNames_len = catNames.size(); for(int i=0;i <% ArrayList list = categories.get(catName); int list_len = list.size(); for(int k=0;k <% } } %>