You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ma...@apache.org on 2010/11/10 09:14:02 UTC

svn commit: r1033391 [26/35] - in /myfaces/trinidad/trunk: scripts/ trinidad-examples/trinidad-blank/src/main/webapp/ trinidad-examples/trinidad-components-showcase/src/main/webapp/components/buttonsAndLinks/commandButton/ trinidad-examples/trinidad-co...

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/table.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/table.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/table.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/table.jspx Wed Nov 10 08:13:47 2010
@@ -1,93 +1,93 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-<!--
-    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.
-	   
--->
-<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
-          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
-          xmlns:trh="http://myfaces.apache.org/trinidad/html"
-          xmlns:tr="http://myfaces.apache.org/trinidad">
-  <jsp:directive.page contentType="text/html;charset=utf-8"/>
-  <f:view>
-    <tr:document title="Table Demo">
-      <tr:form>
-        <tr:messages/>
-        <tr:panelGroupLayout layout="vertical">
-          <f:facet name="separator">
-            <tr:separator/>
-          </f:facet>
-          <tr:panelGroupLayout layout="horizontal">
-            <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_table.html"
-                       text="Tag Documentation"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#table"
-                       text="Skinning Key Documentation"/>
-          </tr:panelGroupLayout>
-          <tr:outputFormatted styleUsage="instruction" value="&lt;b>table&lt;/b>"/>
-          <tr:table allDetailsEnabled="true" var="row" binding="#{editor.component}"
-                    rowBandingInterval="2" value="#{periodicTable.tableData}" rows="10"
-                    summary="Element information">
-            <f:facet name="actions">
-              <tr:outputText value="(Actions)"/>
-            </f:facet>
-            <tr:column headerText="Name">
-              <tr:outputText value="#{row.name}"/>
-            </tr:column>
-            <tr:column headerText="Symbol">
-              <tr:outputText value="#{row.symbol}"/>
-            </tr:column>
-            <tr:column headerText="Action Column">
-              <tr:commandButton text="Action" action="#{row.action}"/>
-            </tr:column>
-            <f:facet name="detailStamp">
-              <tr:panelGroupLayout layout="vertical">
-                <tr:outputText value="Element Name: #{row.name}"/>
-                <tr:outputText value="Atomic Number: #{row.number}"/>
-                <tr:outputText value="Symbol: #{row.symbol}"/>
-                <tr:outputText value="Group: #{row.group}"/>
-              </tr:panelGroupLayout>
-            </f:facet>
-          </tr:table>
-          <jsp:directive.include file="editor.jspf"/>
-          <tr:outputFormatted styleUsage="instruction" value="&lt;b>Editable table&lt;/b>"/>
-          <tr:table var="row" value="#{periodicTable.tableData}" rows="5"
-                    summary="Element information">
-            <tr:column headerText="Name">
-              <tr:inputText value="#{row.name}" shortDesc="#{row.name}"/>
-            </tr:column>
-            <tr:column headerText="Symbol">
-              <tr:inputText value="#{row.symbol}" shortDesc="#{row.symbol}"/>
-            </tr:column>
-          </tr:table>
-          <tr:commandButton text="Submit"/>
-          <tr:outputFormatted styleUsage="instruction" value="&lt;b>Empty table&lt;/b>"/>
-          <tr:table var="row" emptyText="No Records Found" rows="10" summary="Empty Table">
-            <tr:column headerText="int">
-              <tr:inputText value="#{row.int}" shortDesc="#{row.int}"/>
-            </tr:column>
-            <tr:column headerText="String">
-              <tr:inputText value="#{row.string}" shortDesc="#{row.string}"/>
-            </tr:column>
-          </tr:table>
-        </tr:panelGroupLayout>
-      </tr:form>
-    </tr:document>
-  </f:view>
-</jsp:root>
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!--
+    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.
+	   
+-->
+<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
+          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
+          xmlns:trh="http://myfaces.apache.org/trinidad/html"
+          xmlns:tr="http://myfaces.apache.org/trinidad">
+  <jsp:directive.page contentType="text/html;charset=utf-8"/>
+  <f:view>
+    <tr:document title="Table Demo">
+      <tr:form>
+        <tr:messages/>
+        <tr:panelGroupLayout layout="vertical">
+          <f:facet name="separator">
+            <tr:separator/>
+          </f:facet>
+          <tr:panelGroupLayout layout="horizontal">
+            <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_table.html"
+                       text="Tag Documentation"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#table"
+                       text="Skinning Key Documentation"/>
+          </tr:panelGroupLayout>
+          <tr:outputFormatted styleUsage="instruction" value="&lt;b>table&lt;/b>"/>
+          <tr:table allDetailsEnabled="true" var="row" binding="#{editor.component}"
+                    rowBandingInterval="2" value="#{periodicTable.tableData}" rows="10"
+                    summary="Element information">
+            <f:facet name="actions">
+              <tr:outputText value="(Actions)"/>
+            </f:facet>
+            <tr:column headerText="Name">
+              <tr:outputText value="#{row.name}"/>
+            </tr:column>
+            <tr:column headerText="Symbol">
+              <tr:outputText value="#{row.symbol}"/>
+            </tr:column>
+            <tr:column headerText="Action Column">
+              <tr:commandButton text="Action" action="#{row.action}"/>
+            </tr:column>
+            <f:facet name="detailStamp">
+              <tr:panelGroupLayout layout="vertical">
+                <tr:outputText value="Element Name: #{row.name}"/>
+                <tr:outputText value="Atomic Number: #{row.number}"/>
+                <tr:outputText value="Symbol: #{row.symbol}"/>
+                <tr:outputText value="Group: #{row.group}"/>
+              </tr:panelGroupLayout>
+            </f:facet>
+          </tr:table>
+          <jsp:directive.include file="editor.jspf"/>
+          <tr:outputFormatted styleUsage="instruction" value="&lt;b>Editable table&lt;/b>"/>
+          <tr:table var="row" value="#{periodicTable.tableData}" rows="5"
+                    summary="Element information">
+            <tr:column headerText="Name">
+              <tr:inputText value="#{row.name}" shortDesc="#{row.name}"/>
+            </tr:column>
+            <tr:column headerText="Symbol">
+              <tr:inputText value="#{row.symbol}" shortDesc="#{row.symbol}"/>
+            </tr:column>
+          </tr:table>
+          <tr:commandButton text="Submit"/>
+          <tr:outputFormatted styleUsage="instruction" value="&lt;b>Empty table&lt;/b>"/>
+          <tr:table var="row" emptyText="No Records Found" rows="10" summary="Empty Table">
+            <tr:column headerText="int">
+              <tr:inputText value="#{row.int}" shortDesc="#{row.int}"/>
+            </tr:column>
+            <tr:column headerText="String">
+              <tr:inputText value="#{row.string}" shortDesc="#{row.string}"/>
+            </tr:column>
+          </tr:table>
+        </tr:panelGroupLayout>
+      </tr:form>
+    </tr:document>
+  </f:view>
+</jsp:root>

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/table.jspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/table_nested.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/table_nested.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/table_nested.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/table_nested.jspx Wed Nov 10 08:13:47 2010
@@ -1,90 +1,90 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-<!--
-    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.
-	   
--->
-<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
-          xmlns:f="http://java.sun.com/jsf/core"
-          xmlns:h="http://java.sun.com/jsf/html"
-          xmlns:trh="http://myfaces.apache.org/trinidad/html" 
-          xmlns:tr="http://myfaces.apache.org/trinidad" >
-  <jsp:directive.page contentType="text/html;charset=utf-8"/>
-  <f:view>
- <tr:document title="Nested Table Demo">
-        <tr:form >
-          <tr:messages/>
-          <tr:panelGroupLayout layout="vertical">
-            <f:facet name="separator">
-              <tr:separator />
-            </f:facet>   
-            <tr:panelGroupLayout layout="horizontal">
-            <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_table.html"
-                       text="Tag Documentation"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#table"
-                       text="Skinning Key Documentation"/>
-          </tr:panelGroupLayout> 
-  
-            <tr:outputFormatted styleUsage="instruction" value="&lt;b>Nested table&lt;/b>"/>
-            <tr:table var="row"
-                      value="#{periodicTable.tableData}" rows="10"
-                      summary="Element data">
-              <tr:column>
-                <f:facet name="header">
-                  <tr:outputText value="Name"/>
-                </f:facet>
-                <tr:inputText value="#{row.name}" shortDesc="#{row.name}"/>
-              </tr:column>
-              <tr:column>
-                <f:facet name="header">
-                  <tr:outputText value="Symbol"/>
-                </f:facet>
-                <tr:inputText value="#{row.symbol}" shortDesc="#{row.symbol}"/>
-              </tr:column>
-              <f:facet name="detailStamp" >
-                <tr:table var="sub"
-                          value="#{periodicTable.tableData}" rows="3"
-                          summary="Detail element information">
-                  <tr:column>
-                    <f:facet name="header">
-                      <tr:outputText value="#{row.name}:Name"/>
-                    </f:facet>
-                    <tr:inputText value="#{sub.name}" shortDesc="#{sub.name}"/>
-                  </tr:column>
-                  <tr:column>
-                    <f:facet name="header">
-                      <tr:outputText value="Symbol"/>
-                    </f:facet>
-                    <tr:inputText value="#{sub.symbol}" shortDesc="#{sub.symbol}"/>
-                  </tr:column>
-                </tr:table>
-              </f:facet>
-            </tr:table>
-
-
-            <tr:commandButton text="Submit"/>
-
-
-            
-          </tr:panelGroupLayout>    
-        </tr:form>
- </tr:document>
-  </f:view>
-</jsp:root>
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!--
+    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.
+	   
+-->
+<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
+          xmlns:f="http://java.sun.com/jsf/core"
+          xmlns:h="http://java.sun.com/jsf/html"
+          xmlns:trh="http://myfaces.apache.org/trinidad/html" 
+          xmlns:tr="http://myfaces.apache.org/trinidad" >
+  <jsp:directive.page contentType="text/html;charset=utf-8"/>
+  <f:view>
+ <tr:document title="Nested Table Demo">
+        <tr:form >
+          <tr:messages/>
+          <tr:panelGroupLayout layout="vertical">
+            <f:facet name="separator">
+              <tr:separator />
+            </f:facet>   
+            <tr:panelGroupLayout layout="horizontal">
+            <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_table.html"
+                       text="Tag Documentation"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#table"
+                       text="Skinning Key Documentation"/>
+          </tr:panelGroupLayout> 
+  
+            <tr:outputFormatted styleUsage="instruction" value="&lt;b>Nested table&lt;/b>"/>
+            <tr:table var="row"
+                      value="#{periodicTable.tableData}" rows="10"
+                      summary="Element data">
+              <tr:column>
+                <f:facet name="header">
+                  <tr:outputText value="Name"/>
+                </f:facet>
+                <tr:inputText value="#{row.name}" shortDesc="#{row.name}"/>
+              </tr:column>
+              <tr:column>
+                <f:facet name="header">
+                  <tr:outputText value="Symbol"/>
+                </f:facet>
+                <tr:inputText value="#{row.symbol}" shortDesc="#{row.symbol}"/>
+              </tr:column>
+              <f:facet name="detailStamp" >
+                <tr:table var="sub"
+                          value="#{periodicTable.tableData}" rows="3"
+                          summary="Detail element information">
+                  <tr:column>
+                    <f:facet name="header">
+                      <tr:outputText value="#{row.name}:Name"/>
+                    </f:facet>
+                    <tr:inputText value="#{sub.name}" shortDesc="#{sub.name}"/>
+                  </tr:column>
+                  <tr:column>
+                    <f:facet name="header">
+                      <tr:outputText value="Symbol"/>
+                    </f:facet>
+                    <tr:inputText value="#{sub.symbol}" shortDesc="#{sub.symbol}"/>
+                  </tr:column>
+                </tr:table>
+              </f:facet>
+            </tr:table>
+
+
+            <tr:commandButton text="Submit"/>
+
+
+            
+          </tr:panelGroupLayout>    
+        </tr:form>
+ </tr:document>
+  </f:view>
+</jsp:root>

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/table_nested.jspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/table_selection.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/table_selection.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/table_selection.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/table_selection.jspx Wed Nov 10 08:13:47 2010
@@ -1,108 +1,108 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-<!--
-    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.
-	   
--->
-<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
-          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
-          xmlns:trh="http://myfaces.apache.org/trinidad/html"
-          xmlns:tr="http://myfaces.apache.org/trinidad">
-  <jsp:directive.page contentType="text/html;charset=utf-8"/>
-  <f:view>
-    <tr:document title="Table Selection Demo">
-      <tr:form>
-        <tr:panelGroupLayout layout="vertical">
-          <f:facet name="separator">
-            <tr:separator/>
-          </f:facet>
-          <tr:panelGroupLayout layout="horizontal">
-            <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_table.html"
-                       text="Tag Documentation"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#table"
-                       text="Skinning Key Documentation"/>
-          </tr:panelGroupLayout>
-          <tr:outputFormatted styleUsage="instruction" value="&lt;b>table selection&lt;/b>"/>
-          <tr:messages/>
-          <tr:selectOneChoice value="#{sessionScope.tableSelection}" autoSubmit="true" id="selType"
-                              label="Selection Type">
-            <tr:selectItem label="Single" value="#{null}"/>
-            <tr:selectItem label="Multiple" value="#{true}"/>
-          </tr:selectOneChoice>
-          <tr:table summary="Periodic table" binding="#{tableActions.table}"
-                    partialTriggers="selType"
-                    rowSelection="#{sessionScope.tableSelection ? 'multiple' : 'single'}"
-                    value="#{periodicTable.tableData}" var="row" rows="10">
-            <f:facet name="footer">
-              <tr:commandButton text="Report" actionListener="#{tableActions.performReport}"/>
-            </f:facet>
-            <tr:column>
-              <f:facet name="header">
-                <tr:outputText value="Name"/>
-              </f:facet>
-              <tr:outputText value="#{row.name}"/>
-            </tr:column>
-            <tr:column>
-              <f:facet name="header">
-                <tr:outputText value="Symbol"/>
-              </f:facet>
-              <tr:outputText value="#{row.symbol}"/>
-            </tr:column>
-            <tr:column>
-              <f:facet name="header">
-                <tr:outputText value="Action Column"/>
-              </f:facet>
-              <tr:commandButton immediate="true" text="Action" action="#{row.action}"/>
-            </tr:column>
-          </tr:table>
-          <tr:panelHeader text="Report Items">
-            <tr:table emptyText="Report is Empty" summary="Report"
-                      value="#{tableActions.reportItems}" var="row" rows="0">
-              <tr:column>
-                <f:facet name="header">
-                  <tr:outputText value="Name"/>
-                </f:facet>
-                <tr:outputText value="#{row.name}"/>
-              </tr:column>
-              <tr:column>
-                <f:facet name="header">
-                  <tr:outputText value="Symbol"/>
-                </f:facet>
-                <tr:outputText value="#{row.symbol}"/>
-              </tr:column>
-              <tr:column>
-                <f:facet name="header">
-                  <tr:outputText value="Number"/>
-                </f:facet>
-                <tr:outputText value="#{row.number}"/>
-              </tr:column>
-              <tr:column>
-                <f:facet name="header">
-                  <tr:outputText value="Group"/>
-                </f:facet>
-                <tr:outputText value="#{row.group}"/>
-              </tr:column>
-            </tr:table>
-          </tr:panelHeader>
-        </tr:panelGroupLayout>
-      </tr:form>
-    </tr:document>
-  </f:view>
-</jsp:root>
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!--
+    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.
+	   
+-->
+<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
+          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
+          xmlns:trh="http://myfaces.apache.org/trinidad/html"
+          xmlns:tr="http://myfaces.apache.org/trinidad">
+  <jsp:directive.page contentType="text/html;charset=utf-8"/>
+  <f:view>
+    <tr:document title="Table Selection Demo">
+      <tr:form>
+        <tr:panelGroupLayout layout="vertical">
+          <f:facet name="separator">
+            <tr:separator/>
+          </f:facet>
+          <tr:panelGroupLayout layout="horizontal">
+            <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_table.html"
+                       text="Tag Documentation"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#table"
+                       text="Skinning Key Documentation"/>
+          </tr:panelGroupLayout>
+          <tr:outputFormatted styleUsage="instruction" value="&lt;b>table selection&lt;/b>"/>
+          <tr:messages/>
+          <tr:selectOneChoice value="#{sessionScope.tableSelection}" autoSubmit="true" id="selType"
+                              label="Selection Type">
+            <tr:selectItem label="Single" value="#{null}"/>
+            <tr:selectItem label="Multiple" value="#{true}"/>
+          </tr:selectOneChoice>
+          <tr:table summary="Periodic table" binding="#{tableActions.table}"
+                    partialTriggers="selType"
+                    rowSelection="#{sessionScope.tableSelection ? 'multiple' : 'single'}"
+                    value="#{periodicTable.tableData}" var="row" rows="10">
+            <f:facet name="footer">
+              <tr:commandButton text="Report" actionListener="#{tableActions.performReport}"/>
+            </f:facet>
+            <tr:column>
+              <f:facet name="header">
+                <tr:outputText value="Name"/>
+              </f:facet>
+              <tr:outputText value="#{row.name}"/>
+            </tr:column>
+            <tr:column>
+              <f:facet name="header">
+                <tr:outputText value="Symbol"/>
+              </f:facet>
+              <tr:outputText value="#{row.symbol}"/>
+            </tr:column>
+            <tr:column>
+              <f:facet name="header">
+                <tr:outputText value="Action Column"/>
+              </f:facet>
+              <tr:commandButton immediate="true" text="Action" action="#{row.action}"/>
+            </tr:column>
+          </tr:table>
+          <tr:panelHeader text="Report Items">
+            <tr:table emptyText="Report is Empty" summary="Report"
+                      value="#{tableActions.reportItems}" var="row" rows="0">
+              <tr:column>
+                <f:facet name="header">
+                  <tr:outputText value="Name"/>
+                </f:facet>
+                <tr:outputText value="#{row.name}"/>
+              </tr:column>
+              <tr:column>
+                <f:facet name="header">
+                  <tr:outputText value="Symbol"/>
+                </f:facet>
+                <tr:outputText value="#{row.symbol}"/>
+              </tr:column>
+              <tr:column>
+                <f:facet name="header">
+                  <tr:outputText value="Number"/>
+                </f:facet>
+                <tr:outputText value="#{row.number}"/>
+              </tr:column>
+              <tr:column>
+                <f:facet name="header">
+                  <tr:outputText value="Group"/>
+                </f:facet>
+                <tr:outputText value="#{row.group}"/>
+              </tr:column>
+            </tr:table>
+          </tr:panelHeader>
+        </tr:panelGroupLayout>
+      </tr:form>
+    </tr:document>
+  </f:view>
+</jsp:root>

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/table_selection.jspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/template.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/template.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/template.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/template.jspx Wed Nov 10 08:13:47 2010
@@ -1,51 +1,51 @@
-<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
-<!--
-    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.
-	   
--->
-<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
-          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
-          xmlns:trh="http://myfaces.apache.org/trinidad/html"
-          xmlns:tr="http://myfaces.apache.org/trinidad">
-  <jsp:directive.page contentType="text/html;charset=utf-8"/>
-  <f:view>
-    <trh:html>
-      <trh:head title="Demo"/>
-      <trh:body>
-        <tr:form>
-          <tr:panelGroupLayout layout="vertical">
-            <f:facet name="separator">
-              <tr:separator/>
-            </f:facet>
-            <tr:panelGroupLayout layout="horizontal">
-              <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
-              <tr:spacer width="10"/>
-              <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_componentName.html"
-                         text="Tag Documentation"/>
-              <tr:spacer width="10"/>
-              <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#componentName"
-                         text="Skinning Key Documentation"/>
-            </tr:panelGroupLayout>
-            <tr:outputFormatted styleUsage="instruction" value="&lt;b> &lt;/b>"/>
-            <jsp:directive.include file="editor.jspf"/>
-          </tr:panelGroupLayout>
-        </tr:form>
-      </trh:body>
-    </trh:html>
-  </f:view>
-</jsp:root>
+<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
+<!--
+    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.
+	   
+-->
+<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
+          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
+          xmlns:trh="http://myfaces.apache.org/trinidad/html"
+          xmlns:tr="http://myfaces.apache.org/trinidad">
+  <jsp:directive.page contentType="text/html;charset=utf-8"/>
+  <f:view>
+    <trh:html>
+      <trh:head title="Demo"/>
+      <trh:body>
+        <tr:form>
+          <tr:panelGroupLayout layout="vertical">
+            <f:facet name="separator">
+              <tr:separator/>
+            </f:facet>
+            <tr:panelGroupLayout layout="horizontal">
+              <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
+              <tr:spacer width="10"/>
+              <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_componentName.html"
+                         text="Tag Documentation"/>
+              <tr:spacer width="10"/>
+              <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#componentName"
+                         text="Skinning Key Documentation"/>
+            </tr:panelGroupLayout>
+            <tr:outputFormatted styleUsage="instruction" value="&lt;b> &lt;/b>"/>
+            <jsp:directive.include file="editor.jspf"/>
+          </tr:panelGroupLayout>
+        </tr:form>
+      </trh:body>
+    </trh:html>
+  </f:view>
+</jsp:root>

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/template.jspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train.jspx Wed Nov 10 08:13:47 2010
@@ -1,61 +1,61 @@
-<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
-<!--
-    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.
-	   
--->
-<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
-          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
-          xmlns:trh="http://myfaces.apache.org/trinidad/html"
-          xmlns:tr="http://myfaces.apache.org/trinidad">
-  <jsp:directive.page contentType="text/html;charset=utf-8"/>
-  <f:view>
-    <tr:document title="Train Demo">
-      <tr:form>
-        <tr:panelGroupLayout layout="vertical">
-          <f:facet name="separator">
-            <tr:separator/>
-          </f:facet>
-          <tr:panelGroupLayout layout="horizontal">
-            <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_train.html"
-                       text="Tag Documentation"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#train"
-                       text="Skinning Key Documentation"/>
-          </tr:panelGroupLayout>
-          <tr:outputFormatted styleUsage="instruction" value="&lt;b>train&lt;/b>"/>
-          <tr:outputFormatted styleUsage="instruction"
-                              value="&lt;b>Link below to process using 'Plus One' described in the javadoc for org.apache.myfaces.trinidad.ProcessMenuModel&lt;/b>"/>
-          <tr:commandLink action="guide.page_p1" text="Plus One Process"/>
-          <tr:outputFormatted styleUsage="instruction"
-                              value="&lt;b>process using 'Max Visited' described in the javadoc for org.apache.myfaces.trinidad.ProcessMenuModel&lt;/b>"/>
-          <tr:train binding="#{editor.component}" var="foo" value="#{processTrainMenuModel}">
-            <f:facet name="nodeStamp">
-              <tr:commandNavigationItem text="#{foo.label}" action="#{foo.getOutcome}"
-                                        immediate="#{processTrainMenuModel.immediate}"
-                                        disabled="#{processTrainMenuModel.readOnly}"
-                                        visited="#{processTrainMenuModel.visited}"/>
-            </f:facet>
-          </tr:train>
-          <jsp:directive.include file="editor.jspf"/>
-        </tr:panelGroupLayout>
-      </tr:form>
-    </tr:document>
-  </f:view>
-</jsp:root>
+<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
+<!--
+    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.
+	   
+-->
+<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
+          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
+          xmlns:trh="http://myfaces.apache.org/trinidad/html"
+          xmlns:tr="http://myfaces.apache.org/trinidad">
+  <jsp:directive.page contentType="text/html;charset=utf-8"/>
+  <f:view>
+    <tr:document title="Train Demo">
+      <tr:form>
+        <tr:panelGroupLayout layout="vertical">
+          <f:facet name="separator">
+            <tr:separator/>
+          </f:facet>
+          <tr:panelGroupLayout layout="horizontal">
+            <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_train.html"
+                       text="Tag Documentation"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#train"
+                       text="Skinning Key Documentation"/>
+          </tr:panelGroupLayout>
+          <tr:outputFormatted styleUsage="instruction" value="&lt;b>train&lt;/b>"/>
+          <tr:outputFormatted styleUsage="instruction"
+                              value="&lt;b>Link below to process using 'Plus One' described in the javadoc for org.apache.myfaces.trinidad.ProcessMenuModel&lt;/b>"/>
+          <tr:commandLink action="guide.page_p1" text="Plus One Process"/>
+          <tr:outputFormatted styleUsage="instruction"
+                              value="&lt;b>process using 'Max Visited' described in the javadoc for org.apache.myfaces.trinidad.ProcessMenuModel&lt;/b>"/>
+          <tr:train binding="#{editor.component}" var="foo" value="#{processTrainMenuModel}">
+            <f:facet name="nodeStamp">
+              <tr:commandNavigationItem text="#{foo.label}" action="#{foo.getOutcome}"
+                                        immediate="#{processTrainMenuModel.immediate}"
+                                        disabled="#{processTrainMenuModel.readOnly}"
+                                        visited="#{processTrainMenuModel.visited}"/>
+            </f:facet>
+          </tr:train>
+          <jsp:directive.include file="editor.jspf"/>
+        </tr:panelGroupLayout>
+      </tr:form>
+    </tr:document>
+  </f:view>
+</jsp:root>

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train.jspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train2.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train2.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train2.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train2.jspx Wed Nov 10 08:13:47 2010
@@ -1,56 +1,56 @@
-<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
-<!--
-    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.
-	   
--->
-<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
-          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
-          xmlns:trh="http://myfaces.apache.org/trinidad/html"
-          xmlns:tr="http://myfaces.apache.org/trinidad">
-  <jsp:directive.page contentType="text/html;charset=utf-8"/>
-  <f:view>
-    <tr:document title="Train Demo">
-      <tr:form>
-        <tr:panelGroupLayout layout="vertical">
-          <f:facet name="separator">
-            <tr:separator/>
-          </f:facet>
-          <tr:panelGroupLayout layout="horizontal">
-            <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_train.html"
-                       text="Tag Documentation"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#train"
-                       text="Skinning Key Documentation"/>
-          </tr:panelGroupLayout>
-          <tr:outputFormatted styleUsage="instruction"
-                              value="&lt;b>Second Step -- train with navigation&lt;/b>"/>
-          <tr:train var="foo" value="#{processTrainMenuModel}">
-            <f:facet name="nodeStamp">
-              <tr:commandNavigationItem text="#{foo.label}" action="#{foo.getOutcome}"
-                                        immediate="#{processTrainMenuModel.immediate}"
-                                        disabled="#{processTrainMenuModel.readOnly}"
-                                        visited="#{processTrainMenuModel.visited}"/>
-            </f:facet>
-          </tr:train>
-        </tr:panelGroupLayout>
-      </tr:form>
-    </tr:document>
-  </f:view>
-</jsp:root>
+<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
+<!--
+    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.
+	   
+-->
+<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
+          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
+          xmlns:trh="http://myfaces.apache.org/trinidad/html"
+          xmlns:tr="http://myfaces.apache.org/trinidad">
+  <jsp:directive.page contentType="text/html;charset=utf-8"/>
+  <f:view>
+    <tr:document title="Train Demo">
+      <tr:form>
+        <tr:panelGroupLayout layout="vertical">
+          <f:facet name="separator">
+            <tr:separator/>
+          </f:facet>
+          <tr:panelGroupLayout layout="horizontal">
+            <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_train.html"
+                       text="Tag Documentation"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#train"
+                       text="Skinning Key Documentation"/>
+          </tr:panelGroupLayout>
+          <tr:outputFormatted styleUsage="instruction"
+                              value="&lt;b>Second Step -- train with navigation&lt;/b>"/>
+          <tr:train var="foo" value="#{processTrainMenuModel}">
+            <f:facet name="nodeStamp">
+              <tr:commandNavigationItem text="#{foo.label}" action="#{foo.getOutcome}"
+                                        immediate="#{processTrainMenuModel.immediate}"
+                                        disabled="#{processTrainMenuModel.readOnly}"
+                                        visited="#{processTrainMenuModel.visited}"/>
+            </f:facet>
+          </tr:train>
+        </tr:panelGroupLayout>
+      </tr:form>
+    </tr:document>
+  </f:view>
+</jsp:root>

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train2.jspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train3.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train3.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train3.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train3.jspx Wed Nov 10 08:13:47 2010
@@ -1,56 +1,56 @@
-<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
-<!--
-    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.
-	   
--->
-<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
-          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
-          xmlns:trh="http://myfaces.apache.org/trinidad/html"
-          xmlns:tr="http://myfaces.apache.org/trinidad">
-  <jsp:directive.page contentType="text/html;charset=utf-8"/>
-  <f:view>
-    <tr:document title="Train Demo">
-      <tr:form>
-        <tr:panelGroupLayout layout="vertical">
-          <f:facet name="separator">
-            <tr:separator/>
-          </f:facet>
-          <tr:panelGroupLayout layout="horizontal">
-            <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_train.html"
-                       text="Tag Documentation"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#train"
-                       text="Skinning Key Documentation"/>
-          </tr:panelGroupLayout>
-          <tr:outputFormatted styleUsage="instruction"
-                              value="&lt;b>Third Step -- train with navigation&lt;/b>"/>
-          <tr:train var="foo" value="#{processTrainMenuModel}">
-            <f:facet name="nodeStamp">
-              <tr:commandNavigationItem text="#{foo.label}" action="#{foo.getOutcome}"
-                                        immediate="#{processTrainMenuModel.immediate}"
-                                        disabled="#{processTrainMenuModel.readOnly}"
-                                        visited="#{processTrainMenuModel.visited}"/>
-            </f:facet>
-          </tr:train>
-        </tr:panelGroupLayout>
-      </tr:form>
-    </tr:document>
-  </f:view>
-</jsp:root>
+<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
+<!--
+    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.
+	   
+-->
+<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
+          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
+          xmlns:trh="http://myfaces.apache.org/trinidad/html"
+          xmlns:tr="http://myfaces.apache.org/trinidad">
+  <jsp:directive.page contentType="text/html;charset=utf-8"/>
+  <f:view>
+    <tr:document title="Train Demo">
+      <tr:form>
+        <tr:panelGroupLayout layout="vertical">
+          <f:facet name="separator">
+            <tr:separator/>
+          </f:facet>
+          <tr:panelGroupLayout layout="horizontal">
+            <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_train.html"
+                       text="Tag Documentation"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#train"
+                       text="Skinning Key Documentation"/>
+          </tr:panelGroupLayout>
+          <tr:outputFormatted styleUsage="instruction"
+                              value="&lt;b>Third Step -- train with navigation&lt;/b>"/>
+          <tr:train var="foo" value="#{processTrainMenuModel}">
+            <f:facet name="nodeStamp">
+              <tr:commandNavigationItem text="#{foo.label}" action="#{foo.getOutcome}"
+                                        immediate="#{processTrainMenuModel.immediate}"
+                                        disabled="#{processTrainMenuModel.readOnly}"
+                                        visited="#{processTrainMenuModel.visited}"/>
+            </f:facet>
+          </tr:train>
+        </tr:panelGroupLayout>
+      </tr:form>
+    </tr:document>
+  </f:view>
+</jsp:root>

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train3.jspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train4.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train4.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train4.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train4.jspx Wed Nov 10 08:13:47 2010
@@ -1,60 +1,60 @@
-<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
-<!--
-    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.
-	   
--->
-<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
-          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
-          xmlns:trh="http://myfaces.apache.org/trinidad/html"
-          xmlns:tr="http://myfaces.apache.org/trinidad">
-  <jsp:directive.page contentType="text/html;charset=utf-8"/>
-  <f:view>
-    <trh:html>
-      <trh:head title="Train Demo"/>
-      <trh:body>
-        <tr:form>
-          <tr:panelGroupLayout layout="vertical">
-            <f:facet name="separator">
-              <tr:separator/>
-            </f:facet>
-            <tr:panelGroupLayout layout="horizontal">
-              <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
-              <tr:spacer width="10"/>
-              <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_train.html"
-                         text="Tag Documentation"/>
-              <tr:spacer width="10"/>
-              <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#train"
-                         text="Skinning Key Documentation"/>
-            </tr:panelGroupLayout>
-            <tr:outputFormatted styleUsage="instruction"
-                                value="&lt;b>Fourth Step -- train with navigation&lt;/b>"/>
-            <tr:train var="foo" value="#{processTrainMenuModel}">
-              <f:facet name="nodeStamp">
-                <tr:commandNavigationItem text="#{foo.label}" action="#{foo.getOutcome}"
-                                          immediate="#{processTrainMenuModel.immediate}"
-                                          disabled="#{processTrainMenuModel.readOnly}"
-                                          visited="#{processTrainMenuModel.visited}"/>
-              </f:facet>
-            </tr:train>
-            <tr:commandLink action="guide.train4a" text="Go to subprocess"/>
-          </tr:panelGroupLayout>
-        </tr:form>
-      </trh:body>
-    </trh:html>
-  </f:view>
-</jsp:root>
+<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
+<!--
+    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.
+	   
+-->
+<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
+          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
+          xmlns:trh="http://myfaces.apache.org/trinidad/html"
+          xmlns:tr="http://myfaces.apache.org/trinidad">
+  <jsp:directive.page contentType="text/html;charset=utf-8"/>
+  <f:view>
+    <trh:html>
+      <trh:head title="Train Demo"/>
+      <trh:body>
+        <tr:form>
+          <tr:panelGroupLayout layout="vertical">
+            <f:facet name="separator">
+              <tr:separator/>
+            </f:facet>
+            <tr:panelGroupLayout layout="horizontal">
+              <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
+              <tr:spacer width="10"/>
+              <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_train.html"
+                         text="Tag Documentation"/>
+              <tr:spacer width="10"/>
+              <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#train"
+                         text="Skinning Key Documentation"/>
+            </tr:panelGroupLayout>
+            <tr:outputFormatted styleUsage="instruction"
+                                value="&lt;b>Fourth Step -- train with navigation&lt;/b>"/>
+            <tr:train var="foo" value="#{processTrainMenuModel}">
+              <f:facet name="nodeStamp">
+                <tr:commandNavigationItem text="#{foo.label}" action="#{foo.getOutcome}"
+                                          immediate="#{processTrainMenuModel.immediate}"
+                                          disabled="#{processTrainMenuModel.readOnly}"
+                                          visited="#{processTrainMenuModel.visited}"/>
+              </f:facet>
+            </tr:train>
+            <tr:commandLink action="guide.train4a" text="Go to subprocess"/>
+          </tr:panelGroupLayout>
+        </tr:form>
+      </trh:body>
+    </trh:html>
+  </f:view>
+</jsp:root>

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train4.jspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train4a.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train4a.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train4a.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train4a.jspx Wed Nov 10 08:13:47 2010
@@ -1,58 +1,58 @@
-<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
-<!--
-    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.
-	   
--->
-<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
-          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
-          xmlns:trh="http://myfaces.apache.org/trinidad/html"
-          xmlns:tr="http://myfaces.apache.org/trinidad">
-  <jsp:directive.page contentType="text/html;charset=utf-8"/>
-  <f:view>
-    <trh:html>
-      <trh:head title="Train Demo"/>
-      <trh:body>
-        <tr:form>
-          <tr:panelGroupLayout layout="vertical">
-            <f:facet name="separator">
-              <tr:separator/>
-            </f:facet>
-            <tr:panelGroupLayout layout="horizontal">
-              <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
-              <tr:spacer width="10"/>
-              <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_train.html"
-                         text="Tag Documentation"/>
-              <tr:spacer width="10"/>
-              <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#train"
-                         text="Skinning Key Documentation"/>
-            </tr:panelGroupLayout>
-            <tr:outputFormatted styleUsage="instruction" value="&lt;b>SubTrain A&lt;/b>"/>
-            <tr:train var="foo" value="#{processTrainMenuModel}">
-              <f:facet name="nodeStamp">
-                <tr:commandNavigationItem text="#{foo.label}" action="#{foo.getOutcome}"
-                                          immediate="#{processTrainMenuModel.immediate}"
-                                          disabled="#{processTrainMenuModel.readOnly}"
-                                          visited="#{processTrainMenuModel.visited}"/>
-              </f:facet>
-            </tr:train>
-          </tr:panelGroupLayout>
-        </tr:form>
-      </trh:body>
-    </trh:html>
-  </f:view>
-</jsp:root>
+<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
+<!--
+    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.
+	   
+-->
+<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
+          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
+          xmlns:trh="http://myfaces.apache.org/trinidad/html"
+          xmlns:tr="http://myfaces.apache.org/trinidad">
+  <jsp:directive.page contentType="text/html;charset=utf-8"/>
+  <f:view>
+    <trh:html>
+      <trh:head title="Train Demo"/>
+      <trh:body>
+        <tr:form>
+          <tr:panelGroupLayout layout="vertical">
+            <f:facet name="separator">
+              <tr:separator/>
+            </f:facet>
+            <tr:panelGroupLayout layout="horizontal">
+              <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
+              <tr:spacer width="10"/>
+              <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_train.html"
+                         text="Tag Documentation"/>
+              <tr:spacer width="10"/>
+              <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#train"
+                         text="Skinning Key Documentation"/>
+            </tr:panelGroupLayout>
+            <tr:outputFormatted styleUsage="instruction" value="&lt;b>SubTrain A&lt;/b>"/>
+            <tr:train var="foo" value="#{processTrainMenuModel}">
+              <f:facet name="nodeStamp">
+                <tr:commandNavigationItem text="#{foo.label}" action="#{foo.getOutcome}"
+                                          immediate="#{processTrainMenuModel.immediate}"
+                                          disabled="#{processTrainMenuModel.readOnly}"
+                                          visited="#{processTrainMenuModel.visited}"/>
+              </f:facet>
+            </tr:train>
+          </tr:panelGroupLayout>
+        </tr:form>
+      </trh:body>
+    </trh:html>
+  </f:view>
+</jsp:root>

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train4a.jspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train4b.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train4b.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train4b.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train4b.jspx Wed Nov 10 08:13:47 2010
@@ -1,58 +1,58 @@
-<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
-<!--
-    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.
-	   
--->
-<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
-          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
-          xmlns:trh="http://myfaces.apache.org/trinidad/html"
-          xmlns:tr="http://myfaces.apache.org/trinidad">
-  <jsp:directive.page contentType="text/html;charset=utf-8"/>
-  <f:view>
-    <trh:html>
-      <trh:head title="train Demo"/>
-      <trh:body>
-        <tr:form>
-          <tr:panelGroupLayout layout="vertical">
-            <f:facet name="separator">
-              <tr:separator/>
-            </f:facet>
-            <tr:panelGroupLayout layout="horizontal">
-              <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
-              <tr:spacer width="10"/>
-              <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_train.html"
-                         text="Tag Documentation"/>
-              <tr:spacer width="10"/>
-              <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#train"
-                         text="Skinning Key Documentation"/>
-            </tr:panelGroupLayout>
-            <tr:outputFormatted styleUsage="instruction" value="&lt;b>SubTrain B&lt;/b>"/>
-            <tr:train var="foo" value="#{processTrainMenuModel}">
-              <f:facet name="nodeStamp">
-                <tr:commandNavigationItem text="#{foo.label}" action="#{foo.getOutcome}"
-                                          immediate="#{processTrainMenuModel.immediate}"
-                                          disabled="#{processTrainMenuModel.readOnly}"
-                                          visited="#{processTrainMenuModel.visited}"/>
-              </f:facet>
-            </tr:train>
-          </tr:panelGroupLayout>
-        </tr:form>
-      </trh:body>
-    </trh:html>
-  </f:view>
-</jsp:root>
+<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
+<!--
+    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.
+	   
+-->
+<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
+          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
+          xmlns:trh="http://myfaces.apache.org/trinidad/html"
+          xmlns:tr="http://myfaces.apache.org/trinidad">
+  <jsp:directive.page contentType="text/html;charset=utf-8"/>
+  <f:view>
+    <trh:html>
+      <trh:head title="train Demo"/>
+      <trh:body>
+        <tr:form>
+          <tr:panelGroupLayout layout="vertical">
+            <f:facet name="separator">
+              <tr:separator/>
+            </f:facet>
+            <tr:panelGroupLayout layout="horizontal">
+              <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
+              <tr:spacer width="10"/>
+              <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_train.html"
+                         text="Tag Documentation"/>
+              <tr:spacer width="10"/>
+              <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#train"
+                         text="Skinning Key Documentation"/>
+            </tr:panelGroupLayout>
+            <tr:outputFormatted styleUsage="instruction" value="&lt;b>SubTrain B&lt;/b>"/>
+            <tr:train var="foo" value="#{processTrainMenuModel}">
+              <f:facet name="nodeStamp">
+                <tr:commandNavigationItem text="#{foo.label}" action="#{foo.getOutcome}"
+                                          immediate="#{processTrainMenuModel.immediate}"
+                                          disabled="#{processTrainMenuModel.readOnly}"
+                                          visited="#{processTrainMenuModel.visited}"/>
+              </f:facet>
+            </tr:train>
+          </tr:panelGroupLayout>
+        </tr:form>
+      </trh:body>
+    </trh:html>
+  </f:view>
+</jsp:root>

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train4b.jspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train4c.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train4c.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train4c.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train4c.jspx Wed Nov 10 08:13:47 2010
@@ -1,59 +1,59 @@
-<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
-<!--
-    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.
-	   
--->
-<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
-          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
-          xmlns:trh="http://myfaces.apache.org/trinidad/html"
-          xmlns:tr="http://myfaces.apache.org/trinidad">
-  <jsp:directive.page contentType="text/html;charset=utf-8"/>
-  <f:view>
-    <trh:html>
-      <trh:head title="Train Demo"/>
-      <trh:body>
-        <tr:form>
-          <tr:panelGroupLayout layout="vertical">
-            <f:facet name="separator">
-              <tr:separator/>
-            </f:facet>
-            <tr:panelGroupLayout layout="horizontal">
-              <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
-              <tr:spacer width="10"/>
-              <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_train.html"
-                         text="Tag Documentation"/>
-              <tr:spacer width="10"/>
-              <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#train"
-                         text="Skinning Key Documentation"/>
-            </tr:panelGroupLayout>
-            <tr:outputFormatted styleUsage="instruction" value="&lt;b>SubTrain C&lt;/b>"/>
-            <tr:train var="foo" value="#{processTrainMenuModel}">
-              <f:facet name="nodeStamp">
-                <tr:commandNavigationItem text="#{foo.label}" action="#{foo.getOutcome}"
-                                          immediate="#{processTrainMenuModel.immediate}"
-                                          disabled="#{processTrainMenuModel.readOnly}"
-                                          visited="#{processTrainMenuModel.visited}"/>
-              </f:facet>
-            </tr:train>
-            <tr:commandLink action="guide.train4" text="back to main process"/>
-          </tr:panelGroupLayout>
-        </tr:form>
-      </trh:body>
-    </trh:html>
-  </f:view>
-</jsp:root>
+<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
+<!--
+    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.
+	   
+-->
+<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
+          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
+          xmlns:trh="http://myfaces.apache.org/trinidad/html"
+          xmlns:tr="http://myfaces.apache.org/trinidad">
+  <jsp:directive.page contentType="text/html;charset=utf-8"/>
+  <f:view>
+    <trh:html>
+      <trh:head title="Train Demo"/>
+      <trh:body>
+        <tr:form>
+          <tr:panelGroupLayout layout="vertical">
+            <f:facet name="separator">
+              <tr:separator/>
+            </f:facet>
+            <tr:panelGroupLayout layout="horizontal">
+              <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
+              <tr:spacer width="10"/>
+              <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_train.html"
+                         text="Tag Documentation"/>
+              <tr:spacer width="10"/>
+              <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#train"
+                         text="Skinning Key Documentation"/>
+            </tr:panelGroupLayout>
+            <tr:outputFormatted styleUsage="instruction" value="&lt;b>SubTrain C&lt;/b>"/>
+            <tr:train var="foo" value="#{processTrainMenuModel}">
+              <f:facet name="nodeStamp">
+                <tr:commandNavigationItem text="#{foo.label}" action="#{foo.getOutcome}"
+                                          immediate="#{processTrainMenuModel.immediate}"
+                                          disabled="#{processTrainMenuModel.readOnly}"
+                                          visited="#{processTrainMenuModel.visited}"/>
+              </f:facet>
+            </tr:train>
+            <tr:commandLink action="guide.train4" text="back to main process"/>
+          </tr:panelGroupLayout>
+        </tr:form>
+      </trh:body>
+    </trh:html>
+  </f:view>
+</jsp:root>

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train4c.jspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train5.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train5.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train5.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train5.jspx Wed Nov 10 08:13:47 2010
@@ -1,56 +1,56 @@
-<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
-<!--
-    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.
-	   
--->
-<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
-          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
-          xmlns:trh="http://myfaces.apache.org/trinidad/html"
-          xmlns:tr="http://myfaces.apache.org/trinidad">
-  <jsp:directive.page contentType="text/html;charset=utf-8"/>
-  <f:view>
-    <tr:document title="Train Demo">
-      <tr:form>
-        <tr:panelGroupLayout layout="vertical">
-          <f:facet name="separator">
-            <tr:separator/>
-          </f:facet>
-          <tr:panelGroupLayout layout="horizontal">
-            <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_train.html"
-                       text="Tag Documentation"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#train"
-                       text="Skinning Key Documentation"/>
-          </tr:panelGroupLayout>
-          <tr:outputFormatted styleUsage="instruction"
-                              value="&lt;b>Fifth Step -- train with navigation&lt;/b>"/>
-          <tr:train var="foo" value="#{processTrainMenuModel}">
-            <f:facet name="nodeStamp">
-              <tr:commandNavigationItem text="#{foo.label}" action="#{foo.getOutcome}"
-                                        immediate="#{processTrainMenuModel.immediate}"
-                                        disabled="#{processTrainMenuModel.readOnly}"
-                                        visited="#{processTrainMenuModel.visited}"/>
-            </f:facet>
-          </tr:train>
-        </tr:panelGroupLayout>
-      </tr:form>
-    </tr:document>
-  </f:view>
-</jsp:root>
+<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
+<!--
+    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.
+	   
+-->
+<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
+          xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
+          xmlns:trh="http://myfaces.apache.org/trinidad/html"
+          xmlns:tr="http://myfaces.apache.org/trinidad">
+  <jsp:directive.page contentType="text/html;charset=utf-8"/>
+  <f:view>
+    <tr:document title="Train Demo">
+      <tr:form>
+        <tr:panelGroupLayout layout="vertical">
+          <f:facet name="separator">
+            <tr:separator/>
+          </f:facet>
+          <tr:panelGroupLayout layout="horizontal">
+            <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_train.html"
+                       text="Tag Documentation"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#train"
+                       text="Skinning Key Documentation"/>
+          </tr:panelGroupLayout>
+          <tr:outputFormatted styleUsage="instruction"
+                              value="&lt;b>Fifth Step -- train with navigation&lt;/b>"/>
+          <tr:train var="foo" value="#{processTrainMenuModel}">
+            <f:facet name="nodeStamp">
+              <tr:commandNavigationItem text="#{foo.label}" action="#{foo.getOutcome}"
+                                        immediate="#{processTrainMenuModel.immediate}"
+                                        disabled="#{processTrainMenuModel.readOnly}"
+                                        visited="#{processTrainMenuModel.visited}"/>
+            </f:facet>
+          </tr:train>
+        </tr:panelGroupLayout>
+      </tr:form>
+    </tr:document>
+  </f:view>
+</jsp:root>

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/train5.jspx
------------------------------------------------------------------------------
    svn:eol-style = native