taylor 2004/10/13 15:42:08 Modified: applications/jsf-demo/src/webapp tree.jsp Log: *** keyword substitution change *** Revision Changes Path 1.4 +70 -70 jakarta-jetspeed-2/applications/jsf-demo/src/webapp/tree.jsp Index: tree.jsp =================================================================== RCS file: /home/cvs/jakarta-jetspeed-2/applications/jsf-demo/src/webapp/tree.jsp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- tree.jsp 12 Oct 2004 21:30:17 -0000 1.3 +++ tree.jsp 13 Oct 2004 22:42:08 -0000 1.4 @@ -1,70 +1,70 @@ -<%@ page import="net.sourceforge.myfaces.custom.tree.DefaultMutableTreeNode,
- net.sourceforge.myfaces.custom.tree.model.DefaultTreeModel"%> -<%@ page session="true" contentType="text/html;charset=utf-8"%> -<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%> -<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%> -<%@ taglib uri="http://myfaces.sourceforge.net/tld/myfaces_ext_0_9.tld" prefix="x"%> - -<!-- -/* - * Copyright 2004 The Apache Software Foundation. - * - * Licensed 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. - */ -//--> - -<% - if (pageContext.getAttribute("treeModel", PageContext.SESSION_SCOPE) == null) { - DefaultMutableTreeNode root = new DefaultMutableTreeNode("XY"); - DefaultMutableTreeNode a = new DefaultMutableTreeNode("A"); - root.insert(a); - DefaultMutableTreeNode b = new DefaultMutableTreeNode("B"); - root.insert(b); - DefaultMutableTreeNode c = new DefaultMutableTreeNode("C"); - root.insert(c); - - DefaultMutableTreeNode node = new DefaultMutableTreeNode("a1"); - a.insert(node); - node = new DefaultMutableTreeNode("a2 "); - a.insert(node); - node = new DefaultMutableTreeNode("b "); - b.insert(node); - - a = node; - node = new DefaultMutableTreeNode("x1"); - a.insert(node); - node = new DefaultMutableTreeNode("x2"); - a.insert(node); - - pageContext.setAttribute("treeModel", new DefaultTreeModel(root), PageContext.SESSION_SCOPE); - } -%> - -<f:view> - <x:panelLayout id="page"> - <f:verbatim><h2>Here is a tree?</h2></f:verbatim> - - <h:form> - - <x:tree id="tree" value="#{treeModel}" - styleClass="tree" - nodeClass="treenode" - selectedNodeClass="treenodeSelected" - expandRoot="true"> - </x:tree> - <f:verbatim><br></f:verbatim> - - </h:form> - </x:panelLayout> - -</f:view> +<%@ page import="net.sourceforge.myfaces.custom.tree.DefaultMutableTreeNode, + net.sourceforge.myfaces.custom.tree.model.DefaultTreeModel"%> +<%@ page session="true" contentType="text/html;charset=utf-8"%> +<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%> +<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%> +<%@ taglib uri="http://myfaces.sourceforge.net/tld/myfaces_ext_0_9.tld" prefix="x"%> + +<!-- +/* + * Copyright 2004 The Apache Software Foundation. + * + * Licensed 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. + */ +//--> + +<% + if (pageContext.getAttribute("treeModel", PageContext.SESSION_SCOPE) == null) { + DefaultMutableTreeNode root = new DefaultMutableTreeNode("XY"); + DefaultMutableTreeNode a = new DefaultMutableTreeNode("A"); + root.insert(a); + DefaultMutableTreeNode b = new DefaultMutableTreeNode("B"); + root.insert(b); + DefaultMutableTreeNode c = new DefaultMutableTreeNode("C"); + root.insert(c); + + DefaultMutableTreeNode node = new DefaultMutableTreeNode("a1"); + a.insert(node); + node = new DefaultMutableTreeNode("a2 "); + a.insert(node); + node = new DefaultMutableTreeNode("b "); + b.insert(node); + + a = node; + node = new DefaultMutableTreeNode("x1"); + a.insert(node); + node = new DefaultMutableTreeNode("x2"); + a.insert(node); + + pageContext.setAttribute("treeModel", new DefaultTreeModel(root), PageContext.SESSION_SCOPE); + } +%> + +<f:view> + <x:panelLayout id="page"> + <f:verbatim><h2>Here is a tree?</h2></f:verbatim> + + <h:form> + + <x:tree id="tree" value="#{treeModel}" + styleClass="tree" + nodeClass="treenode" + selectedNodeClass="treenodeSelected" + expandRoot="true"> + </x:tree> + <f:verbatim><br></f:verbatim> + + </h:form> + </x:panelLayout> + +</f:view> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]