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 [18/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/inputDate.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputDate.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputDate.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputDate.jspx Wed Nov 10 08:13:47 2010
@@ -1,90 +1,90 @@
-<?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:tr="http://myfaces.apache.org/trinidad">
-  <jsp:directive.page contentType="text/html;charset=utf-8"/>
-  <f:view>
-    <tr:document title="InputDate Demo">
-      <tr:form>
-        <tr:panelPage>
-          <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_inputDate.html"
-                         text="Tag Documentation"/>
-              <tr:spacer width="10"/>
-              <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#inputDate"
-                         text="Skinning Key Documentation"/>
-            </tr:panelGroupLayout>
-            <tr:outputFormatted styleUsage="instruction"
-                                value="&lt;b>A basic inputDate, no converter &lt;/b>"/>
-            <tr:inputDate binding="#{editor.component}" id="mdf1" value="#{date.date1}"
-                          label="no converter"/>
-            <jsp:directive.include file="editor.jspf"/>
-            <tr:outputFormatted styleUsage="instruction"
-                                value="&lt;b>A inputDate with a converter attached that has dateStyle set to 'long' &lt;/b>"/>
-            <tr:inputDate id="mdf2" value="#{date.date2}" label="has converter">
-              <f:convertDateTime dateStyle="long"/>
-            </tr:inputDate>
-            <tr:outputFormatted styleUsage="instruction"
-                                value="&lt;b>A inputDate with a validator that sets a maximum date&lt;/b>"/>
-            <tr:inputDate id="mdf3" value="#{date.date3}" label="max validator">
-              <tr:validateDateTimeRange maximum="#{date.maxDate}"/>
-            </tr:inputDate>
-            <tr:outputFormatted styleUsage="instruction"
-                                value="&lt;b>A inputDate with a validator that sets a minimum date&lt;/b>"/>
-            <tr:inputDate id="mdf4" value="#{date.date4}" label="min validator">
-              <tr:validateDateTimeRange minimum="#{date.minDate}"/>
-            </tr:inputDate>
-            <tr:outputFormatted styleUsage="instruction" value="&lt;b>A inputDate with a converter attached 
-                  that has pattern as 'yyyy/M/d' and secondary pattern as 'd/M/yyyy' &lt;/b>"/>
-            <tr:inputDate id="mdf5" value="2004/09/06" label="attached converter">
-              <tr:convertDateTime secondaryPattern="d/M/yyyy" pattern="yyyy/M/d"/>
-            </tr:inputDate>
-            <tr:outputFormatted styleUsage="instruction"
-                                value="&lt;b>A inputDate with a converter attached from fr_FR locale (has 2-digit display for hours)&lt;/b>"/>
-            <tr:inputDate id="mdf6" value="#{date.date5}"
-                          label="attached converter with locale fr_FR">
-              <tr:convertDateTime locale="fr_FR" type="both" dateStyle="full"/>
-            </tr:inputDate>
-            <tr:outputFormatted styleUsage="instruction"
-                                value="&lt;b>A inputDate with a converter attached from fr_BE locale (has 1-digit display for hours)&lt;/b>"/>
-            <tr:inputDate id="mdf7" value="#{date.date5}"
-                          label="attached converter with locale fr_BE">
-              <tr:convertDateTime locale="fr_BE" type="both" dateStyle="full"/>
-            </tr:inputDate>
-            <tr:outputFormatted styleUsage="instruction"
-                                value="&lt;b>A inputDate with a converter attached from ja locale&lt;/b>"/>
-            <tr:inputDate id="mdf8" value="#{date.date5}" label="attached converter with locale ja">
-              <tr:convertDateTime locale="ja" type="date" dateStyle="full"/>
-            </tr:inputDate>
-          </tr:panelGroupLayout>
-          <tr:commandButton text="Submit"/>
-        </tr:panelPage>
-      </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:tr="http://myfaces.apache.org/trinidad">
+  <jsp:directive.page contentType="text/html;charset=utf-8"/>
+  <f:view>
+    <tr:document title="InputDate Demo">
+      <tr:form>
+        <tr:panelPage>
+          <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_inputDate.html"
+                         text="Tag Documentation"/>
+              <tr:spacer width="10"/>
+              <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#inputDate"
+                         text="Skinning Key Documentation"/>
+            </tr:panelGroupLayout>
+            <tr:outputFormatted styleUsage="instruction"
+                                value="&lt;b>A basic inputDate, no converter &lt;/b>"/>
+            <tr:inputDate binding="#{editor.component}" id="mdf1" value="#{date.date1}"
+                          label="no converter"/>
+            <jsp:directive.include file="editor.jspf"/>
+            <tr:outputFormatted styleUsage="instruction"
+                                value="&lt;b>A inputDate with a converter attached that has dateStyle set to 'long' &lt;/b>"/>
+            <tr:inputDate id="mdf2" value="#{date.date2}" label="has converter">
+              <f:convertDateTime dateStyle="long"/>
+            </tr:inputDate>
+            <tr:outputFormatted styleUsage="instruction"
+                                value="&lt;b>A inputDate with a validator that sets a maximum date&lt;/b>"/>
+            <tr:inputDate id="mdf3" value="#{date.date3}" label="max validator">
+              <tr:validateDateTimeRange maximum="#{date.maxDate}"/>
+            </tr:inputDate>
+            <tr:outputFormatted styleUsage="instruction"
+                                value="&lt;b>A inputDate with a validator that sets a minimum date&lt;/b>"/>
+            <tr:inputDate id="mdf4" value="#{date.date4}" label="min validator">
+              <tr:validateDateTimeRange minimum="#{date.minDate}"/>
+            </tr:inputDate>
+            <tr:outputFormatted styleUsage="instruction" value="&lt;b>A inputDate with a converter attached 
+                  that has pattern as 'yyyy/M/d' and secondary pattern as 'd/M/yyyy' &lt;/b>"/>
+            <tr:inputDate id="mdf5" value="2004/09/06" label="attached converter">
+              <tr:convertDateTime secondaryPattern="d/M/yyyy" pattern="yyyy/M/d"/>
+            </tr:inputDate>
+            <tr:outputFormatted styleUsage="instruction"
+                                value="&lt;b>A inputDate with a converter attached from fr_FR locale (has 2-digit display for hours)&lt;/b>"/>
+            <tr:inputDate id="mdf6" value="#{date.date5}"
+                          label="attached converter with locale fr_FR">
+              <tr:convertDateTime locale="fr_FR" type="both" dateStyle="full"/>
+            </tr:inputDate>
+            <tr:outputFormatted styleUsage="instruction"
+                                value="&lt;b>A inputDate with a converter attached from fr_BE locale (has 1-digit display for hours)&lt;/b>"/>
+            <tr:inputDate id="mdf7" value="#{date.date5}"
+                          label="attached converter with locale fr_BE">
+              <tr:convertDateTime locale="fr_BE" type="both" dateStyle="full"/>
+            </tr:inputDate>
+            <tr:outputFormatted styleUsage="instruction"
+                                value="&lt;b>A inputDate with a converter attached from ja locale&lt;/b>"/>
+            <tr:inputDate id="mdf8" value="#{date.date5}" label="attached converter with locale ja">
+              <tr:convertDateTime locale="ja" type="date" dateStyle="full"/>
+            </tr:inputDate>
+          </tr:panelGroupLayout>
+          <tr:commandButton text="Submit"/>
+        </tr:panelPage>
+      </tr:form>
+    </tr:document>
+  </f:view>
+</jsp:root>

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

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputHidden.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputHidden.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputHidden.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputHidden.jspx Wed Nov 10 08:13:47 2010
@@ -1,50 +1,50 @@
-<?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="InputHidden 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_inputHidden.html"
-                         text="Tag Documentation"/>
-            </tr:panelGroupLayout>
-            <tr:outputFormatted styleUsage="instruction" value="&lt;b>inputHidden&lt;/b>"/>
-            <tr:inputHidden binding="#{editor.component}" value="Some text"/>
-            <tr:commandButton text="Submit"/>
-            <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="InputHidden 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_inputHidden.html"
+                         text="Tag Documentation"/>
+            </tr:panelGroupLayout>
+            <tr:outputFormatted styleUsage="instruction" value="&lt;b>inputHidden&lt;/b>"/>
+            <tr:inputHidden binding="#{editor.component}" value="Some text"/>
+            <tr:commandButton text="Submit"/>
+            <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/inputHidden.jspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputListOfValues.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputListOfValues.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputListOfValues.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputListOfValues.jspx Wed Nov 10 08:13:47 2010
@@ -1,65 +1,65 @@
-<?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:tr="http://myfaces.apache.org/trinidad">
-  <jsp:directive.page contentType="text/html;charset=utf-8"/>
-  <f:view>
-    <tr:document title="InputListOfValues Demo">
-      <tr:form>
-        <tr:panelPage>
-          <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_inputListOfValues.html"
-                         text="Tag Documentation"/>
-              <tr:spacer width="10"/>
-              <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#inputListOfValues"
-                         text="Skinning Key Documentation"/>
-            </tr:panelGroupLayout>
-            <tr:outputFormatted styleUsage="instruction" value="&lt;b>inputListOfValues&lt;/b>"/>
-            <tr:inputListOfValues label="Atomic element:" value="(Empty)"
-                                  binding="#{editor.component}" searchDesc="Pick an element"
-                                  columns="10" action="dialog:periodicTable"/>
-            <jsp:directive.include file="editor.jspf"/>
-            <tr:outputFormatted styleUsage="instruction"
-                                value="&lt;b>inputListOfValues inside a table &lt;/b>"/>
-            <tr:table value="#{table}" var="row" width="40%">
-              <tr:column>
-                <tr:outputText value="#{row.int}"/>
-              </tr:column>
-              <tr:column width="100%" noWrap="true">
-                <tr:inputListOfValues value="(Empty)" columns="10" searchDesc="Pick an element"
-                                      shortDesc="Enter element name or pick a element"
-                                      action="dialog:periodicTable"/>
-              </tr:column>
-            </tr:table>
-          </tr:panelGroupLayout>
-          <tr:commandButton text="Submit"/>
-        </tr:panelPage>
-      </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:tr="http://myfaces.apache.org/trinidad">
+  <jsp:directive.page contentType="text/html;charset=utf-8"/>
+  <f:view>
+    <tr:document title="InputListOfValues Demo">
+      <tr:form>
+        <tr:panelPage>
+          <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_inputListOfValues.html"
+                         text="Tag Documentation"/>
+              <tr:spacer width="10"/>
+              <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#inputListOfValues"
+                         text="Skinning Key Documentation"/>
+            </tr:panelGroupLayout>
+            <tr:outputFormatted styleUsage="instruction" value="&lt;b>inputListOfValues&lt;/b>"/>
+            <tr:inputListOfValues label="Atomic element:" value="(Empty)"
+                                  binding="#{editor.component}" searchDesc="Pick an element"
+                                  columns="10" action="dialog:periodicTable"/>
+            <jsp:directive.include file="editor.jspf"/>
+            <tr:outputFormatted styleUsage="instruction"
+                                value="&lt;b>inputListOfValues inside a table &lt;/b>"/>
+            <tr:table value="#{table}" var="row" width="40%">
+              <tr:column>
+                <tr:outputText value="#{row.int}"/>
+              </tr:column>
+              <tr:column width="100%" noWrap="true">
+                <tr:inputListOfValues value="(Empty)" columns="10" searchDesc="Pick an element"
+                                      shortDesc="Enter element name or pick a element"
+                                      action="dialog:periodicTable"/>
+              </tr:column>
+            </tr:table>
+          </tr:panelGroupLayout>
+          <tr:commandButton text="Submit"/>
+        </tr:panelPage>
+      </tr:form>
+    </tr:document>
+  </f:view>
+</jsp:root>

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

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputListOfValues_dialog.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputListOfValues_dialog.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputListOfValues_dialog.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputListOfValues_dialog.jspx Wed Nov 10 08:13:47 2010
@@ -1,57 +1,57 @@
-<?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:tr="http://myfaces.apache.org/trinidad" >
-  <jsp:directive.page contentType="text/html;charset=utf-8"/>
-  <f:view>
-    <tr:document title="Choose an atomic element">
-       <tr:form >
-         <tr:panelPage id="plId">
-           <tr:messages/>
-           <tr:table summary="Periodic Table"
-                     value="#{periodicTable.tableData}" var="row" rows="10"
-                     rowSelection="single"
-                     binding="#{periodicDialog.table}">
-             <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:table>
-           <tr:panelButtonBar>
-             <tr:commandButton text="Cancel" immediate="true"
-                               action="#{periodicDialog.cancel}"/>
-             <tr:commandButton text="Select"
-                               action="#{periodicDialog.select}"/>
-           </tr:panelButtonBar>
-         </tr:panelPage>
-       </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:tr="http://myfaces.apache.org/trinidad" >
+  <jsp:directive.page contentType="text/html;charset=utf-8"/>
+  <f:view>
+    <tr:document title="Choose an atomic element">
+       <tr:form >
+         <tr:panelPage id="plId">
+           <tr:messages/>
+           <tr:table summary="Periodic Table"
+                     value="#{periodicTable.tableData}" var="row" rows="10"
+                     rowSelection="single"
+                     binding="#{periodicDialog.table}">
+             <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:table>
+           <tr:panelButtonBar>
+             <tr:commandButton text="Cancel" immediate="true"
+                               action="#{periodicDialog.cancel}"/>
+             <tr:commandButton text="Select"
+                               action="#{periodicDialog.select}"/>
+           </tr:panelButtonBar>
+         </tr:panelPage>
+       </tr:form>
+    </tr:document>
+  </f:view>
+</jsp:root>

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

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputNumberSpinbox.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputNumberSpinbox.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputNumberSpinbox.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputNumberSpinbox.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:tr="http://myfaces.apache.org/trinidad">
-  <jsp:directive.page contentType="text/html;charset=utf-8"/>
-  <f:view>
-    <tr:document title="InputNumberSpinbox 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_inputNumberSpinbox.html"
-                       text="Tag Documentation"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#inputNumberSpinbox"
-                       text="Skinning Key Documentation"/>
-          </tr:panelGroupLayout>
-          <tr:outputFormatted styleUsage="instruction" value="&lt;b>inputNumberSpinbox&lt;/b>"/>
-          <tr:inputNumberSpinbox binding="#{editor.component}" label="Label" value="2000"
-                                 minimum="1976" maximum="2010" stepSize="1"
-                                 onclick="alert('hello');"/>
-          <tr:commandButton text="Submit"/>
-          <jsp:directive.include file="editor.jspf"/>
-          <tr:inputNumberSpinbox label="With ValidateLongRange" value="2000" minimum="1976"
-                                 maximum="2010" stepSize="1"
-                                 shortDesc="enter # between 1976 and 2010">
-            <f:validateLongRange minimum="1976" maximum="2010"/>
-          </tr:inputNumberSpinbox>
-          <tr:commandButton text="Submit"/>
-        </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:tr="http://myfaces.apache.org/trinidad">
+  <jsp:directive.page contentType="text/html;charset=utf-8"/>
+  <f:view>
+    <tr:document title="InputNumberSpinbox 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_inputNumberSpinbox.html"
+                       text="Tag Documentation"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#inputNumberSpinbox"
+                       text="Skinning Key Documentation"/>
+          </tr:panelGroupLayout>
+          <tr:outputFormatted styleUsage="instruction" value="&lt;b>inputNumberSpinbox&lt;/b>"/>
+          <tr:inputNumberSpinbox binding="#{editor.component}" label="Label" value="2000"
+                                 minimum="1976" maximum="2010" stepSize="1"
+                                 onclick="alert('hello');"/>
+          <tr:commandButton text="Submit"/>
+          <jsp:directive.include file="editor.jspf"/>
+          <tr:inputNumberSpinbox label="With ValidateLongRange" value="2000" minimum="1976"
+                                 maximum="2010" stepSize="1"
+                                 shortDesc="enter # between 1976 and 2010">
+            <f:validateLongRange minimum="1976" maximum="2010"/>
+          </tr:inputNumberSpinbox>
+          <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/inputNumberSpinbox.jspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputText.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputText.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputText.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/inputText.jspx Wed Nov 10 08:13:47 2010
@@ -1,62 +1,62 @@
-<?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:tr="http://myfaces.apache.org/trinidad">
-  <jsp:directive.page contentType="text/html;charset=utf-8"/>
-  <f:view>
-    <tr:document title="InputText 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_inputText.html"
-                       text="Tag Documentation"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#inputText"
-                       text="Skinning Key Documentation"/>
-          </tr:panelGroupLayout>
-          <tr:outputFormatted styleUsage="instruction" value="&lt;b>inputText&lt;/b>"/>
-          <tr:inputText binding="#{editor.component}" label="Label" value="Some text"/>
-          <tr:commandButton text="Submit"/>
-          <jsp:directive.include file="editor.jspf"/>
-          <tr:outputFormatted styleUsage="instruction"
-                              value="&lt;b>InputText Bound To Date&lt;/b>"/>
-          <tr:inputText label="Label2" value="#{date.date1}" autoSubmit="true">
-            <f:convertDateTime dateStyle="long"/>
-          </tr:inputText>
-          <tr:outputText styleClass="AFInstructionText" value="The submitted value was: "/>
-          <tr:outputText value="#{date.date1}"/>
-          <tr:outputFormatted styleUsage="instruction"
-                              value="&lt;b>InputText with help facet&lt;/b>"/>
-          <tr:inputText label="Label3">
-            <f:facet name="help">
-              <tr:outputText value="Help facet text"/>
-            </f:facet>
-          </tr:inputText>
-        </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:tr="http://myfaces.apache.org/trinidad">
+  <jsp:directive.page contentType="text/html;charset=utf-8"/>
+  <f:view>
+    <tr:document title="InputText 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_inputText.html"
+                       text="Tag Documentation"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#inputText"
+                       text="Skinning Key Documentation"/>
+          </tr:panelGroupLayout>
+          <tr:outputFormatted styleUsage="instruction" value="&lt;b>inputText&lt;/b>"/>
+          <tr:inputText binding="#{editor.component}" label="Label" value="Some text"/>
+          <tr:commandButton text="Submit"/>
+          <jsp:directive.include file="editor.jspf"/>
+          <tr:outputFormatted styleUsage="instruction"
+                              value="&lt;b>InputText Bound To Date&lt;/b>"/>
+          <tr:inputText label="Label2" value="#{date.date1}" autoSubmit="true">
+            <f:convertDateTime dateStyle="long"/>
+          </tr:inputText>
+          <tr:outputText styleClass="AFInstructionText" value="The submitted value was: "/>
+          <tr:outputText value="#{date.date1}"/>
+          <tr:outputFormatted styleUsage="instruction"
+                              value="&lt;b>InputText with help facet&lt;/b>"/>
+          <tr:inputText label="Label3">
+            <f:facet name="help">
+              <tr:outputText value="Help facet text"/>
+            </f:facet>
+          </tr:inputText>
+        </tr:panelGroupLayout>
+      </tr:form>
+    </tr:document>
+  </f:view>
+</jsp:root>

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

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/iterator.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/iterator.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/iterator.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/iterator.jspx Wed Nov 10 08:13:47 2010
@@ -1,58 +1,58 @@
-<?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="Iterator 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_iterator.html"
-                       text="Tag Documentation"/>
-          </tr:panelGroupLayout>
-          <tr:outputFormatted styleUsage="instruction"
-                              value="&lt;b>iterator with VarStatus&lt;/b>"/>
-          <tr:iterator var="row" first="3" rows="3" varStatus="stat" binding="#{editor.component}"
-                       value="#{periodicTable.tableData}">
-            <tr:outputText value="#{stat.count}. Index:#{stat.index} of #{stat.model.rowCount}"/>
-            <tr:inputText label="Element Name" value="#{row.name}"/>
-            <tr:inputText label="Atomic Number" value="#{row.number}"/>
-            <tr:inputText label="Symbol" value="#{row.symbol}"/>
-            <tr:inputText label="Group" value="#{row.group}"/>
-            <tr:separator/>
-          </tr:iterator>
-          <tr:outputFormatted styleUsage="instruction"
-                              value="&lt;b>Use the editor to change the range:&lt;/b>"/>
-          <jsp:directive.include file="editor.jspf"/>
-        </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="Iterator 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_iterator.html"
+                       text="Tag Documentation"/>
+          </tr:panelGroupLayout>
+          <tr:outputFormatted styleUsage="instruction"
+                              value="&lt;b>iterator with VarStatus&lt;/b>"/>
+          <tr:iterator var="row" first="3" rows="3" varStatus="stat" binding="#{editor.component}"
+                       value="#{periodicTable.tableData}">
+            <tr:outputText value="#{stat.count}. Index:#{stat.index} of #{stat.model.rowCount}"/>
+            <tr:inputText label="Element Name" value="#{row.name}"/>
+            <tr:inputText label="Atomic Number" value="#{row.number}"/>
+            <tr:inputText label="Symbol" value="#{row.symbol}"/>
+            <tr:inputText label="Group" value="#{row.group}"/>
+            <tr:separator/>
+          </tr:iterator>
+          <tr:outputFormatted styleUsage="instruction"
+                              value="&lt;b>Use the editor to change the range:&lt;/b>"/>
+          <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/iterator.jspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/legend.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/legend.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/legend.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/legend.jspx Wed Nov 10 08:13:47 2010
@@ -1,46 +1,46 @@
-<?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="ObjectLegend 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_legend.html"
-                       text="Tag Documentation"/>
-          </tr:panelGroupLayout>
-          <tr:outputFormatted styleUsage="instruction" value="&lt;b>legend&lt;/b>"/>
-          <tr:legend binding="#{editor.component}" name="required"/>
-          <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="ObjectLegend 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_legend.html"
+                       text="Tag Documentation"/>
+          </tr:panelGroupLayout>
+          <tr:outputFormatted styleUsage="instruction" value="&lt;b>legend&lt;/b>"/>
+          <tr:legend binding="#{editor.component}" name="required"/>
+          <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/legend.jspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/media.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/media.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/media.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/media.jspx Wed Nov 10 08:13:47 2010
@@ -1,48 +1,48 @@
-<?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="Media 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_media.html"
-                       text="Tag Documentation"/>
-          </tr:panelGroupLayout>
-          <tr:outputFormatted styleUsage="instruction" value="&lt;b>media &lt;/b>"/>
-          <tr:media source="/components/images/seattle.wmv" innerWidth="160" innerHeight="112"
-                    autostart="true" controls="all" shortDesc="Visit Seattle"
-                    binding="#{editor.component}"/>
-          <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="Media 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_media.html"
+                       text="Tag Documentation"/>
+          </tr:panelGroupLayout>
+          <tr:outputFormatted styleUsage="instruction" value="&lt;b>media &lt;/b>"/>
+          <tr:media source="/components/images/seattle.wmv" innerWidth="160" innerHeight="112"
+                    autostart="true" controls="all" shortDesc="Visit Seattle"
+                    binding="#{editor.component}"/>
+          <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/media.jspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/message.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/message.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/message.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/message.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>
-    <tr:document title="Message Demo">
-      <tr:form defaultCommand="message">
-        <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_message.html"
-                       text="Tag Documentation"/>
-          </tr:panelGroupLayout>
-          <tr:outputFormatted styleUsage="instruction" value="&lt;b>message&lt;/b>"/>
-          <tr:outputText value="Type 'cat' to see an error message"/>
-          <tr:panelGroupLayout layout="vertical">
-            <tr:outputLabel for="foo" value="Label"/>
-            <tr:message for="foo" binding="#{editor.component}" inlineStyle="background-color:red">
-              <f:facet name="help">
-                <tr:outputText value="Help facet text"/>
-              </f:facet>
-            </tr:message>
-            <tr:inputText id="foo" simple="true" label="BigInteger field">
-              <f:converter converterId="javax.faces.BigInteger"/>
-            </tr:inputText>
-            <tr:commandButton id="message" text="Submit"/>
-          </tr:panelGroupLayout>
-          <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="Message Demo">
+      <tr:form defaultCommand="message">
+        <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_message.html"
+                       text="Tag Documentation"/>
+          </tr:panelGroupLayout>
+          <tr:outputFormatted styleUsage="instruction" value="&lt;b>message&lt;/b>"/>
+          <tr:outputText value="Type 'cat' to see an error message"/>
+          <tr:panelGroupLayout layout="vertical">
+            <tr:outputLabel for="foo" value="Label"/>
+            <tr:message for="foo" binding="#{editor.component}" inlineStyle="background-color:red">
+              <f:facet name="help">
+                <tr:outputText value="Help facet text"/>
+              </f:facet>
+            </tr:message>
+            <tr:inputText id="foo" simple="true" label="BigInteger field">
+              <f:converter converterId="javax.faces.BigInteger"/>
+            </tr:inputText>
+            <tr:commandButton id="message" text="Submit"/>
+          </tr:panelGroupLayout>
+          <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/message.jspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/messages.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/messages.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/messages.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/messages.jspx Wed Nov 10 08:13:47 2010
@@ -1,70 +1,70 @@
-<?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="Messages Demo">
-      <tr:form defaultCommand="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_messages.html"
-                       text="Tag Documentation"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#messages"
-                       text="Skinning Key Documentation"/>
-          </tr:panelGroupLayout>
-          <tr:outputFormatted styleUsage="instruction" value="&lt;b>messages&lt;/b>"/>
-          <tr:messages binding="#{editor.component}"/>
-          <tr:panelFormLayout>
-            <tr:inputText label="Amount">
-              <f:facet name="help">
-                <tr:outputText value="Type 'cat' to see an error in the message box"/>
-              </f:facet>
-              <f:converter converterId="javax.faces.BigInteger"/>
-            </tr:inputText>
-            <tr:inputText label="Threshold">
-              <f:facet name="help">
-                <tr:outputText value="type='percent' locale='en_US' - This results in fraction displayed as integer value with % symbol"/>
-              </f:facet>
-              <f:convertNumber type="percent" locale="en_US"/>
-            </tr:inputText>
-          </tr:panelFormLayout>
-          <tr:commandButton id="messages" text="Submit"/>
-          <tr:panelHorizontalLayout>
-            <tr:commandButton text="Add Message" action="#{messages.createGlobalMessage}"
-                              immediate="true"></tr:commandButton>
-            <tr:commandButton text="Add Multiple Messages"
-                              action="#{messages.createMultipleGlobalMessages}" immediate="true"></tr:commandButton>
-          </tr:panelHorizontalLayout>
-          <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="Messages Demo">
+      <tr:form defaultCommand="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_messages.html"
+                       text="Tag Documentation"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#messages"
+                       text="Skinning Key Documentation"/>
+          </tr:panelGroupLayout>
+          <tr:outputFormatted styleUsage="instruction" value="&lt;b>messages&lt;/b>"/>
+          <tr:messages binding="#{editor.component}"/>
+          <tr:panelFormLayout>
+            <tr:inputText label="Amount">
+              <f:facet name="help">
+                <tr:outputText value="Type 'cat' to see an error in the message box"/>
+              </f:facet>
+              <f:converter converterId="javax.faces.BigInteger"/>
+            </tr:inputText>
+            <tr:inputText label="Threshold">
+              <f:facet name="help">
+                <tr:outputText value="type='percent' locale='en_US' - This results in fraction displayed as integer value with % symbol"/>
+              </f:facet>
+              <f:convertNumber type="percent" locale="en_US"/>
+            </tr:inputText>
+          </tr:panelFormLayout>
+          <tr:commandButton id="messages" text="Submit"/>
+          <tr:panelHorizontalLayout>
+            <tr:commandButton text="Add Message" action="#{messages.createGlobalMessage}"
+                              immediate="true"></tr:commandButton>
+            <tr:commandButton text="Add Multiple Messages"
+                              action="#{messages.createMultipleGlobalMessages}" immediate="true"></tr:commandButton>
+          </tr:panelHorizontalLayout>
+          <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/messages.jspx
------------------------------------------------------------------------------
    svn:eol-style = native