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 [15/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-components-showcase/src/main/webapp/pages/componentDemo.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/pages/componentDemo.xhtml?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/pages/componentDemo.xhtml (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/pages/componentDemo.xhtml Wed Nov 10 08:13:47 2010
@@ -1,122 +1,122 @@
-<!--
-    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.	   
--->
-
-<ui:composition xmlns="http://www.w3.org/1999/xhtml"
-                xmlns:ui="http://java.sun.com/jsf/facelets"
-                xmlns:h="http://java.sun.com/jsf/html"
-                xmlns:f="http://java.sun.com/jsf/core"
-                xmlns:c="http://java.sun.com/jsp/jstl/core"
-                xmlns:tr="http://myfaces.apache.org/trinidad"
-                xmlns:trd="http://localhost:8080/trinidad-demo"
-                template="/template/componentsShowCaseTemplate.xhtml">
-
-    <ui:define name="componentContent">
-
-        <tr:subform>
-            <table width="100%" cellpadding="0" cellspacing="0" border="0">
-                <tr>
-                    <td align="left" width="70%">
-                        <h1>
-                            #{navigationHandler.currentComponentVariantDemo.title}
-                        </h1>
-                    </td>
-                    <td align="right" width="25%">
-                        <tr:statusIndicator>
-                            <f:facet name="busy">
-                                <tr:outputText value="Loading, please wait..." inlineStyle="color: #cc3300;"/>
-                            </f:facet>
-                        </tr:statusIndicator>
-                    </td>
-                    <td align="right" width="5%" style="padding-right: 12px">
-                        <tr:statusIndicator/>
-                    </td>
-                </tr>
-            </table>
-        </tr:subform>
-      
-        <tr:panelGroupLayout layout="vertical" inlineStyle="margin-top: 22px;" styleClass="rightColumn">
-
-            <tr:subform>
-                <h:panelGrid columns="2" width="100%" style="width: 100%;" cellpadding="0" cellspacing="0"
-                             columnClasses="#{navigationHandler.currentComponentDemo.columnStyleClassNames}">
-
-                    <tr:panelBox text="Component Demo" inlineStyle="width: 100%">
-                        <ui:insert name="demoContent"/>
-                    </tr:panelBox>
-
-                    <tr:panelBox text="Variant" inlineStyle="width: 100%;"
-                                 rendered="#{navigationHandler.currentComponentDemo.supportsMultipleVariants}"
-                                 styleClass="component_variations af_panelBox_light">
-                        <tr:navigationPane hint="list" var="aComponentVariant"
-                                           value="#{navigationHandler.currentComponentDemo.variants}">
-                            <f:facet name="nodeStamp">
-                                <tr:commandNavigationItem text="#{aComponentVariant.variantDisplayName}"
-                                                          selected="#{navigationHandler.componentVariantDemoSelected[aComponentVariant]}"
-                                                          destination="#{aComponentVariant.destination}">
-                                </tr:commandNavigationItem>
-                            </f:facet>
-                        </tr:navigationPane>
-                    </tr:panelBox>
-
-                </h:panelGrid>
-            </tr:subform>
-
-            <tr:subform>
-                <h2 class="page">Sumary</h2>
-                <ui:include src="#{navigationHandler.currentComponentVariantDemo.summaryResourcePath}"/>
-                <tr:spacer height="10px"/>
-                <tr:panelGroupLayout rendered="#{navigationHandler.currentComponentDemo.tagDocumentationLink != null ||
-                                                    navigationHandler.currentComponentDemo.skinDocumentationLink != null}">
-                    <div style="background:#F6F4F0; border: 1px solid #BBB1AA; padding:5px;">
-                        <tr:outputText value="Read more on MyFaces: "/>
-                        <tr:goLink text="Tag Documentation" destination="#{navigationHandler.currentComponentDemo.tagDocumentationLink}"
-                                   targetFrame="_blank" rendered="#{navigationHandler.currentComponentDemo.tagDocumentationLink != null}"/>
-                        <tr:outputText value=" | " rendered="#{(navigationHandler.currentComponentDemo.tagDocumentationLink != null) and
-                                                             (navigationHandler.currentComponentDemo.skinDocumentationLink != null)}"/>
-                        <tr:goLink text="Skinning Key Documentation" destination="#{navigationHandler.currentComponentDemo.skinDocumentationLink}"
-                                   targetFrame="_blank" rendered="#{navigationHandler.currentComponentDemo.skinDocumentationLink != null}"/>
-                    </div>
-                </tr:panelGroupLayout>
-            </tr:subform>
-
-            <tr:subform>
-                <div class="samples">
-                    <h2 class="page">Code samples</h2>
-                    <tr:panelTabbed position="above">
-
-                        <c:forEach items="#{navigationHandler.currentComponentVariantDemo.jsfResourcePaths}" var="aJsfPath">
-                            <tr:showDetailItem text="JSF Page">
-                                <trd:outputSource value="#{aJsfPath}"
-                                                  styleClass="sourceCode" styleUsage="xml"/>
-                            </tr:showDetailItem>
-                        </c:forEach>
-
-                        <tr:showDetailItem text="Backing Beans" rendered="#{!navigationHandler.currentComponentVariantDemo.static}">
-                            <trd:outputSource value="#{navigationHandler.currentComponentVariantDemo.backingBeanResourcePath}"
-                                              pathPrefix="/WEB-INF/src" styleClass="sourceCode" styleUsage="java"/>
-                        </tr:showDetailItem>
-                    </tr:panelTabbed>
-                </div>
-            </tr:subform>
-
-        </tr:panelGroupLayout>
-
-    </ui:define>
-
-</ui:composition>
+<!--
+    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.	   
+-->
+
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:h="http://java.sun.com/jsf/html"
+                xmlns:f="http://java.sun.com/jsf/core"
+                xmlns:c="http://java.sun.com/jsp/jstl/core"
+                xmlns:tr="http://myfaces.apache.org/trinidad"
+                xmlns:trd="http://localhost:8080/trinidad-demo"
+                template="/template/componentsShowCaseTemplate.xhtml">
+
+    <ui:define name="componentContent">
+
+        <tr:subform>
+            <table width="100%" cellpadding="0" cellspacing="0" border="0">
+                <tr>
+                    <td align="left" width="70%">
+                        <h1>
+                            #{navigationHandler.currentComponentVariantDemo.title}
+                        </h1>
+                    </td>
+                    <td align="right" width="25%">
+                        <tr:statusIndicator>
+                            <f:facet name="busy">
+                                <tr:outputText value="Loading, please wait..." inlineStyle="color: #cc3300;"/>
+                            </f:facet>
+                        </tr:statusIndicator>
+                    </td>
+                    <td align="right" width="5%" style="padding-right: 12px">
+                        <tr:statusIndicator/>
+                    </td>
+                </tr>
+            </table>
+        </tr:subform>
+      
+        <tr:panelGroupLayout layout="vertical" inlineStyle="margin-top: 22px;" styleClass="rightColumn">
+
+            <tr:subform>
+                <h:panelGrid columns="2" width="100%" style="width: 100%;" cellpadding="0" cellspacing="0"
+                             columnClasses="#{navigationHandler.currentComponentDemo.columnStyleClassNames}">
+
+                    <tr:panelBox text="Component Demo" inlineStyle="width: 100%">
+                        <ui:insert name="demoContent"/>
+                    </tr:panelBox>
+
+                    <tr:panelBox text="Variant" inlineStyle="width: 100%;"
+                                 rendered="#{navigationHandler.currentComponentDemo.supportsMultipleVariants}"
+                                 styleClass="component_variations af_panelBox_light">
+                        <tr:navigationPane hint="list" var="aComponentVariant"
+                                           value="#{navigationHandler.currentComponentDemo.variants}">
+                            <f:facet name="nodeStamp">
+                                <tr:commandNavigationItem text="#{aComponentVariant.variantDisplayName}"
+                                                          selected="#{navigationHandler.componentVariantDemoSelected[aComponentVariant]}"
+                                                          destination="#{aComponentVariant.destination}">
+                                </tr:commandNavigationItem>
+                            </f:facet>
+                        </tr:navigationPane>
+                    </tr:panelBox>
+
+                </h:panelGrid>
+            </tr:subform>
+
+            <tr:subform>
+                <h2 class="page">Sumary</h2>
+                <ui:include src="#{navigationHandler.currentComponentVariantDemo.summaryResourcePath}"/>
+                <tr:spacer height="10px"/>
+                <tr:panelGroupLayout rendered="#{navigationHandler.currentComponentDemo.tagDocumentationLink != null ||
+                                                    navigationHandler.currentComponentDemo.skinDocumentationLink != null}">
+                    <div style="background:#F6F4F0; border: 1px solid #BBB1AA; padding:5px;">
+                        <tr:outputText value="Read more on MyFaces: "/>
+                        <tr:goLink text="Tag Documentation" destination="#{navigationHandler.currentComponentDemo.tagDocumentationLink}"
+                                   targetFrame="_blank" rendered="#{navigationHandler.currentComponentDemo.tagDocumentationLink != null}"/>
+                        <tr:outputText value=" | " rendered="#{(navigationHandler.currentComponentDemo.tagDocumentationLink != null) and
+                                                             (navigationHandler.currentComponentDemo.skinDocumentationLink != null)}"/>
+                        <tr:goLink text="Skinning Key Documentation" destination="#{navigationHandler.currentComponentDemo.skinDocumentationLink}"
+                                   targetFrame="_blank" rendered="#{navigationHandler.currentComponentDemo.skinDocumentationLink != null}"/>
+                    </div>
+                </tr:panelGroupLayout>
+            </tr:subform>
+
+            <tr:subform>
+                <div class="samples">
+                    <h2 class="page">Code samples</h2>
+                    <tr:panelTabbed position="above">
+
+                        <c:forEach items="#{navigationHandler.currentComponentVariantDemo.jsfResourcePaths}" var="aJsfPath">
+                            <tr:showDetailItem text="JSF Page">
+                                <trd:outputSource value="#{aJsfPath}"
+                                                  styleClass="sourceCode" styleUsage="xml"/>
+                            </tr:showDetailItem>
+                        </c:forEach>
+
+                        <tr:showDetailItem text="Backing Beans" rendered="#{!navigationHandler.currentComponentVariantDemo.static}">
+                            <trd:outputSource value="#{navigationHandler.currentComponentVariantDemo.backingBeanResourcePath}"
+                                              pathPrefix="/WEB-INF/src" styleClass="sourceCode" styleUsage="java"/>
+                        </tr:showDetailItem>
+                    </tr:panelTabbed>
+                </div>
+            </tr:subform>
+
+        </tr:panelGroupLayout>
+
+    </ui:define>
+
+</ui:composition>

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/pages/componentDemo.xhtml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/pages/demoSearch.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/pages/demoSearch.xhtml?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/pages/demoSearch.xhtml (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/pages/demoSearch.xhtml Wed Nov 10 08:13:47 2010
@@ -1,55 +1,55 @@
-<!--
-    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.	   
--->
-
-<ui:composition xmlns="http://www.w3.org/1999/xhtml"
-                xmlns:ui="http://java.sun.com/jsf/facelets"
-                xmlns:h="http://java.sun.com/jsf/html"
-                xmlns:f="http://java.sun.com/jsf/core"
-                xmlns:tr="http://myfaces.apache.org/trinidad"
-                template="/template/componentsShowCaseTemplate.xhtml">
-                                               
-    <ui:define name="componentContent">
-
-        <!-- Google Custom Search Element -->
-
-        <script src="http://www.google.com/jsapi" type="text/javascript"></script>
-        <script type="text/javascript">
-
-            google.load('search', '1');
-
-            function doSearch(searchText) {
-                var searchControl = new google.search.CustomSearchControl('006246683555132490191:_drixd4i10u');
-
-                var el;
-                el = document.getElementById("searchInput");
-                searchControl.draw('cse');
-                searchControl.setLinkTarget(google.search.Search.LINK_TARGET_SELF);
-                searchControl.execute(el.value);
-                searchControl.setNoResultsString("No match");
-            }
-
-            google.setOnLoadCallback(doSearch, true);
-
-        </script>
-
-        <div id="cse" style="width:100%;"/>
-
-    </ui:define>
-
-</ui:composition>
+<!--
+    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.	   
+-->
+
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:h="http://java.sun.com/jsf/html"
+                xmlns:f="http://java.sun.com/jsf/core"
+                xmlns:tr="http://myfaces.apache.org/trinidad"
+                template="/template/componentsShowCaseTemplate.xhtml">
+                                               
+    <ui:define name="componentContent">
+
+        <!-- Google Custom Search Element -->
+
+        <script src="http://www.google.com/jsapi" type="text/javascript"></script>
+        <script type="text/javascript">
+
+            google.load('search', '1');
+
+            function doSearch(searchText) {
+                var searchControl = new google.search.CustomSearchControl('006246683555132490191:_drixd4i10u');
+
+                var el;
+                el = document.getElementById("searchInput");
+                searchControl.draw('cse');
+                searchControl.setLinkTarget(google.search.Search.LINK_TARGET_SELF);
+                searchControl.execute(el.value);
+                searchControl.setNoResultsString("No match");
+            }
+
+            google.setOnLoadCallback(doSearch, true);
+
+        </script>
+
+        <div id="cse" style="width:100%;"/>
+
+    </ui:define>
+
+</ui:composition>

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/pages/demoSearch.xhtml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/pages/demoStart.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/pages/demoStart.xhtml?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/pages/demoStart.xhtml (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/pages/demoStart.xhtml Wed Nov 10 08:13:47 2010
@@ -1,50 +1,50 @@
-<!--
-    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.	   
--->
-
-<ui:composition xmlns="http://www.w3.org/1999/xhtml"
-                xmlns:ui="http://java.sun.com/jsf/facelets"
-                xmlns:h="http://java.sun.com/jsf/html"
-                xmlns:f="http://java.sun.com/jsf/core"
-                xmlns:tr="http://myfaces.apache.org/trinidad"
-                template="/template/componentsShowCaseTemplate.xhtml">
-
-    <ui:define name="componentContent">
-
-        <tr:messages/>
-
-        <h1>Welcome to Trinidad Components Demo</h1>
-
-        <tr:spacer height="20px"/>
-
-        <tr:outputText value=" Apache MyFaces Trinidad is a JSF framework including a large, enterprise
-            quality component library, supporting critical features such as accessibility (e.g. Section 508),
-            right-to-left languages, etc. It also includes a set of framework features, including :"/>
-        
-        <tr:spacer height="12px"/>
-        
-        <tr:panelList rows="4">
-            <tr:outputText value="Partial-page rendering support for the entire component set"/>
-            <tr:outputText value="Integrated client-side validation"/>
-            <tr:outputText value="A dialog framework"/>
-            <tr:outputText value="pageFlowScope, for communicating between pages"/>
-        </tr:panelList>
-        
-    </ui:define>
-
-</ui:composition>
+<!--
+    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.	   
+-->
+
+<ui:composition xmlns="http://www.w3.org/1999/xhtml"
+                xmlns:ui="http://java.sun.com/jsf/facelets"
+                xmlns:h="http://java.sun.com/jsf/html"
+                xmlns:f="http://java.sun.com/jsf/core"
+                xmlns:tr="http://myfaces.apache.org/trinidad"
+                template="/template/componentsShowCaseTemplate.xhtml">
+
+    <ui:define name="componentContent">
+
+        <tr:messages/>
+
+        <h1>Welcome to Trinidad Components Demo</h1>
+
+        <tr:spacer height="20px"/>
+
+        <tr:outputText value=" Apache MyFaces Trinidad is a JSF framework including a large, enterprise
+            quality component library, supporting critical features such as accessibility (e.g. Section 508),
+            right-to-left languages, etc. It also includes a set of framework features, including :"/>
+        
+        <tr:spacer height="12px"/>
+        
+        <tr:panelList rows="4">
+            <tr:outputText value="Partial-page rendering support for the entire component set"/>
+            <tr:outputText value="Integrated client-side validation"/>
+            <tr:outputText value="A dialog framework"/>
+            <tr:outputText value="pageFlowScope, for communicating between pages"/>
+        </tr:panelList>
+        
+    </ui:define>
+
+</ui:composition>

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/pages/demoStart.xhtml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/pages/featureDemo.xhtml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/pages/notImplemented.xhtml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/samples/email/defaultPageTemplateE-Mail.xhtml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/samples/email/e-mailContacts.xhtml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/samples/email/e-mailListReceived.xhtml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/samples/email/e-mailListSent.xhtml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/samples/email/e-mailTemplate.xhtml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/samples/email/newEmail.xhtml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/template/componentsShowCaseTemplate.xhtml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/template/defaultColumnPageTemplate.xhtml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/template/defaultPageTemplate.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/template/defaultPageTemplate.xhtml?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/template/defaultPageTemplate.xhtml (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/template/defaultPageTemplate.xhtml Wed Nov 10 08:13:47 2010
@@ -1,63 +1,63 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-    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.
--->
-
-<tr:document xmlns:ui="http://java.sun.com/jsf/facelets"
-             xmlns:h="http://java.sun.com/jsf/html"
-             xmlns:f="http://java.sun.com/jsf/core"
-             xmlns:c="http://java.sun.com/jstl/core"
-             xmlns:tr="http://myfaces.apache.org/trinidad"
-             xmlns:trh="http://myfaces.apache.org/trinidad/html"
-             title="#{navigationHandler.currentPageTitle}"
-             inlineStyle="margin: 0;">
-
-    <f:facet name="metaContainer">
-		<meta name="title" content="#{navigationHandler.currentPageTitle}"/>
-        <meta name="robots" content="index, follow"/>
-        <meta name="author" content="Apache MyFaces Trinidad"/>
-        <meta name="description" content="#{navigationHandler.currentPageDescription}"/>
-	</f:facet>
-
-    <div class="main_container">
-        <div class="page_container">
-
-            <tr:form id="logoForm">
-                <tr:commandLink styleClass="logo" action="homeForm"/>
-            </tr:form>
-
-            <tr:form id="searchForm" defaultCommand="searchCommand">
-                <ui:include src="fragment/searchBar.xhtml"/>
-            </tr:form>
-
-            <tr:form id="mainForm">
-                <div class="page_top">
-                    <ui:include src="fragment/navigationBar.xhtml"/>
-                </div><!-- close page top -->
-
-                <div class="page_middle">
-                    <ui:insert name="content"/>
-                </div><!-- close page middle -->
-                <div class="page_bottom"></div>
-            </tr:form>
-
-        </div><!-- close page container -->
-    </div><!-- close main container -->
-    <ui:debug/>
-
-</tr:document>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    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.
+-->
+
+<tr:document xmlns:ui="http://java.sun.com/jsf/facelets"
+             xmlns:h="http://java.sun.com/jsf/html"
+             xmlns:f="http://java.sun.com/jsf/core"
+             xmlns:c="http://java.sun.com/jstl/core"
+             xmlns:tr="http://myfaces.apache.org/trinidad"
+             xmlns:trh="http://myfaces.apache.org/trinidad/html"
+             title="#{navigationHandler.currentPageTitle}"
+             inlineStyle="margin: 0;">
+
+    <f:facet name="metaContainer">
+		<meta name="title" content="#{navigationHandler.currentPageTitle}"/>
+        <meta name="robots" content="index, follow"/>
+        <meta name="author" content="Apache MyFaces Trinidad"/>
+        <meta name="description" content="#{navigationHandler.currentPageDescription}"/>
+	</f:facet>
+
+    <div class="main_container">
+        <div class="page_container">
+
+            <tr:form id="logoForm">
+                <tr:commandLink styleClass="logo" action="homeForm"/>
+            </tr:form>
+
+            <tr:form id="searchForm" defaultCommand="searchCommand">
+                <ui:include src="fragment/searchBar.xhtml"/>
+            </tr:form>
+
+            <tr:form id="mainForm">
+                <div class="page_top">
+                    <ui:include src="fragment/navigationBar.xhtml"/>
+                </div><!-- close page top -->
+
+                <div class="page_middle">
+                    <ui:insert name="content"/>
+                </div><!-- close page middle -->
+                <div class="page_bottom"></div>
+            </tr:form>
+
+        </div><!-- close page container -->
+    </div><!-- close main container -->
+    <ui:debug/>
+
+</tr:document>

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/template/defaultPageTemplate.xhtml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/template/featureDemosTemplate.xhtml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/template/fragment/navigationBar.xhtml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/trinidad/trunk/trinidad-examples/trinidad-components-showcase/src/main/webapp/template/fragment/searchBar.xhtml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/componentDemos.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/componentDemos.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/componentDemos.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/componentDemos.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="Component Demos">
-      <tr:form> 
-        <tr:panelPage>
-          <f:facet name="navigationGlobal">
-            <tr:navigationPane hint="buttons">
-              <tr:commandNavigationItem text="Return to Index"
-                  immediate="true"
-                  action="home"/>
-            </tr:navigationPane>
-          </f:facet>
-          <tr:panelHeader text="Component Demos">
-            <tr:panelHeader text="Core Components">
-              <tr:tree var="node" value="#{componentTree.model}"
-                binding="#{componentTreeBean.tree}">
-                <f:facet name="nodeStamp">
-                  <tr:panelGroupLayout>
-                    <tr:outputText value="Example:" rendered="#{node.example}"/>
-                    <tr:commandLink text="#{node.label}"
-                      disabled="#{empty node.filename}"
-                      action="#{node.view}"/>
-                  </tr:panelGroupLayout>
-                </f:facet>
-              </tr:tree>
-            </tr:panelHeader>
-  
-            <tr:panelHeader text="Html Components">
-              <tr:panelGroupLayout layout="vertical">
-                <tr:commandLink text="body" action="guide.body"/>
-                <tr:commandLink text="cellFormat" action="guide.cellFormat"/>
-                <tr:outputFormatted value="frame - see FrameBorderLayout" styleUsage="instruction"/>
-                <tr:commandLink text="frameBorderLayout" action="guide.frameBorderLayout"/>
-                <tr:commandLink text="meta" action="guide.meta"/>
-                <tr:commandLink text="html" action="guide.html"/>
-                <tr:commandLink text="rowLayout" action="guide.rowLayout"/>
-                <tr:commandLink text="tableLayout" action="guide.tableLayout"/>
-              </tr:panelGroupLayout>
-            </tr:panelHeader>
-          </tr:panelHeader>
-        </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: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="Component Demos">
+      <tr:form> 
+        <tr:panelPage>
+          <f:facet name="navigationGlobal">
+            <tr:navigationPane hint="buttons">
+              <tr:commandNavigationItem text="Return to Index"
+                  immediate="true"
+                  action="home"/>
+            </tr:navigationPane>
+          </f:facet>
+          <tr:panelHeader text="Component Demos">
+            <tr:panelHeader text="Core Components">
+              <tr:tree var="node" value="#{componentTree.model}"
+                binding="#{componentTreeBean.tree}">
+                <f:facet name="nodeStamp">
+                  <tr:panelGroupLayout>
+                    <tr:outputText value="Example:" rendered="#{node.example}"/>
+                    <tr:commandLink text="#{node.label}"
+                      disabled="#{empty node.filename}"
+                      action="#{node.view}"/>
+                  </tr:panelGroupLayout>
+                </f:facet>
+              </tr:tree>
+            </tr:panelHeader>
+  
+            <tr:panelHeader text="Html Components">
+              <tr:panelGroupLayout layout="vertical">
+                <tr:commandLink text="body" action="guide.body"/>
+                <tr:commandLink text="cellFormat" action="guide.cellFormat"/>
+                <tr:outputFormatted value="frame - see FrameBorderLayout" styleUsage="instruction"/>
+                <tr:commandLink text="frameBorderLayout" action="guide.frameBorderLayout"/>
+                <tr:commandLink text="meta" action="guide.meta"/>
+                <tr:commandLink text="html" action="guide.html"/>
+                <tr:commandLink text="rowLayout" action="guide.rowLayout"/>
+                <tr:commandLink text="tableLayout" action="guide.tableLayout"/>
+              </tr:panelGroupLayout>
+            </tr:panelHeader>
+          </tr:panelHeader>
+        </tr:panelPage>
+      </tr:form>
+    </tr:document>
+  </f:view>
+</jsp:root>

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

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/breadCrumbs.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/breadCrumbs.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/breadCrumbs.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/breadCrumbs.jspx Wed Nov 10 08:13:47 2010
@@ -1,72 +1,72 @@
-<?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"
-          xmlns:f="http://java.sun.com/jsf/core"
-          xmlns:tr="http://myfaces.apache.org/trinidad"
-          version="1.2">
-  <jsp:directive.page contentType="text/html;charset=utf-8"/>
-  <f:view>
-    <tr:document title="BreadCrumbs Demo">
-      <tr:form>
-        <tr:panelGroupLayout layout="vertical">
-          <f:facet name="separator">
-            <tr:separator/>
-          </f:facet>
-          <tr:navigationPane hint="buttons">
-            <tr:commandNavigationItem immediate="true" text="Component Guide"
-              action="guide"/>
-            <tr:commandNavigationItem immediate="true" text="Page Hierarchy Demo"
-              action="guide.page"/>
-            <tr:commandNavigationItem immediate="true" text="NavigationPane Demo"
-              action="guide.navigationPane"/>
-            <tr:commandNavigationItem immediate="true" text="CommandNavigationItem Demo"
-              action="guide.commandNavigationItem"/>
-            <tr:commandNavigationItem immediate="true" text="PanelPage Demo"
-              action="guide.panelPage"/>
-          </tr:navigationPane>
-          <tr:panelGroupLayout layout="horizontal">
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_breadCrumbs.html"
-                       text="Tag Documentation"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#breadCrumbs"
-                       text="Skinning Key Documentation"/>
-          </tr:panelGroupLayout>
-          <tr:outputFormatted styleUsage="instruction" value="&lt;b>breadCrumbs&lt;/b>"/>
-          <tr:breadCrumbs id="breadCrumbExample" binding="#{editor.component}">
-            <tr:commandNavigationItem text="breadCrumbs Demo" action="guide.breadCrumbs"/>
-            <tr:commandNavigationItem text="Apache.org" destination="http://www.apache.org" targetFrame="_new"/>
-            <tr:commandNavigationItem text="Disabled Item" disabled="true" action="guide.tree"/>
-            <tr:commandNavigationItem text="NavigationPane Demo" action="guide.navigationPane"/>
-            <tr:commandNavigationItem text="Current Page" action="guide.breadCrumbs"/>
-          </tr:breadCrumbs>
-          <jsp:directive.include file="editor.jspf"/>
-          <tr:outputFormatted styleUsage="instruction" value="&lt;b>breadCrumbs with the 'orientation' attribute set to 'vertical'&lt;/b>"/>
-          <tr:breadCrumbs orientation="vertical">
-            <tr:commandNavigationItem text="Table Demo" action="guide.table"/>
-            <tr:commandNavigationItem text="Tree Demo" action="guide.tree"/>
-            <tr:commandNavigationItem text="PanelPage Demo" action="guide.panelPage"/>
-            <tr:commandNavigationItem text="BreadCrumbs Demo" action="guide.breadCrumbs"/>
-          </tr:breadCrumbs>
-        </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"
+          xmlns:f="http://java.sun.com/jsf/core"
+          xmlns:tr="http://myfaces.apache.org/trinidad"
+          version="1.2">
+  <jsp:directive.page contentType="text/html;charset=utf-8"/>
+  <f:view>
+    <tr:document title="BreadCrumbs Demo">
+      <tr:form>
+        <tr:panelGroupLayout layout="vertical">
+          <f:facet name="separator">
+            <tr:separator/>
+          </f:facet>
+          <tr:navigationPane hint="buttons">
+            <tr:commandNavigationItem immediate="true" text="Component Guide"
+              action="guide"/>
+            <tr:commandNavigationItem immediate="true" text="Page Hierarchy Demo"
+              action="guide.page"/>
+            <tr:commandNavigationItem immediate="true" text="NavigationPane Demo"
+              action="guide.navigationPane"/>
+            <tr:commandNavigationItem immediate="true" text="CommandNavigationItem Demo"
+              action="guide.commandNavigationItem"/>
+            <tr:commandNavigationItem immediate="true" text="PanelPage Demo"
+              action="guide.panelPage"/>
+          </tr:navigationPane>
+          <tr:panelGroupLayout layout="horizontal">
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_breadCrumbs.html"
+                       text="Tag Documentation"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#breadCrumbs"
+                       text="Skinning Key Documentation"/>
+          </tr:panelGroupLayout>
+          <tr:outputFormatted styleUsage="instruction" value="&lt;b>breadCrumbs&lt;/b>"/>
+          <tr:breadCrumbs id="breadCrumbExample" binding="#{editor.component}">
+            <tr:commandNavigationItem text="breadCrumbs Demo" action="guide.breadCrumbs"/>
+            <tr:commandNavigationItem text="Apache.org" destination="http://www.apache.org" targetFrame="_new"/>
+            <tr:commandNavigationItem text="Disabled Item" disabled="true" action="guide.tree"/>
+            <tr:commandNavigationItem text="NavigationPane Demo" action="guide.navigationPane"/>
+            <tr:commandNavigationItem text="Current Page" action="guide.breadCrumbs"/>
+          </tr:breadCrumbs>
+          <jsp:directive.include file="editor.jspf"/>
+          <tr:outputFormatted styleUsage="instruction" value="&lt;b>breadCrumbs with the 'orientation' attribute set to 'vertical'&lt;/b>"/>
+          <tr:breadCrumbs orientation="vertical">
+            <tr:commandNavigationItem text="Table Demo" action="guide.table"/>
+            <tr:commandNavigationItem text="Tree Demo" action="guide.tree"/>
+            <tr:commandNavigationItem text="PanelPage Demo" action="guide.panelPage"/>
+            <tr:commandNavigationItem text="BreadCrumbs Demo" action="guide.breadCrumbs"/>
+          </tr:breadCrumbs>
+        </tr:panelGroupLayout>
+      </tr:form>
+    </tr:document>
+  </f:view>
+</jsp:root>

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

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

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/chooseColor.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/chooseColor.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/chooseColor.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/chooseColor.jspx Wed Nov 10 08:13:47 2010
@@ -1,66 +1,66 @@
-<?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="ChooseColor 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_chooseColor.html"
-                       text="Tag Documentation"/>
-          </tr:panelGroupLayout>
-          <tr:outputFormatted styleUsage="instruction"
-                              value="&lt;b>A chooseColor associated with an inputColor&lt;/b>"/>
-          <tr:inputColor id="sic1" chooseId="cp1" shortDesc="Select color from pallette"
-                         label="Enter or select color from palette below"
-                         value="#{color.colorValue1}"/>
-          <tr:chooseColor id="cp1" colorData="#{requestContext.colorPalette.default49}"/>
-          <tr:outputFormatted styleUsage="instruction"
-                              value='&lt;b>Color Converter with patterns "rrr-ggg-bbb #RRGGBB" associated with an inputColor component&lt;/b>'/>
-          <tr:inputColor id="sicConv" chooseId="cpConv"
-                         label="Enter or select color from palette below"
-                         value="#{color.colorValue1}">
-            <tr:convertColor patterns="rrr-ggg-bbb #RRGGBB" transparentAllowed="false"/>
-          </tr:inputColor>
-          <tr:chooseColor id="cpConv" colorData="#{requestContext.colorPalette.default49}"/>
-          <tr:outputFormatted styleUsage="instruction"
-                              value="&lt;b>A chooseColor with attribute 'colorData' bound to a list(java.util.List) of colors(java.awt.Color) and attribute 'customColorData' bound to an array of colors(java.awt.Color)&lt;/b>"/>
-          <tr:chooseColor id="cp2" colorData="#{color.colorList}"
-                          customColorData="#{color.colorArray}"/>
-          <tr:outputFormatted styleUsage="instruction"
-                              value="&lt;b>A chooseColor using standard 80 color palette(Trinidad implicit object) - Update its properties  from the table below&lt;/b>"/>
-          <tr:chooseColor binding="#{editor.component}" id="cp3"
-                          colorData="#{requestContext.colorPalette.default80}" width="16"/>
-          <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="ChooseColor 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_chooseColor.html"
+                       text="Tag Documentation"/>
+          </tr:panelGroupLayout>
+          <tr:outputFormatted styleUsage="instruction"
+                              value="&lt;b>A chooseColor associated with an inputColor&lt;/b>"/>
+          <tr:inputColor id="sic1" chooseId="cp1" shortDesc="Select color from pallette"
+                         label="Enter or select color from palette below"
+                         value="#{color.colorValue1}"/>
+          <tr:chooseColor id="cp1" colorData="#{requestContext.colorPalette.default49}"/>
+          <tr:outputFormatted styleUsage="instruction"
+                              value='&lt;b>Color Converter with patterns "rrr-ggg-bbb #RRGGBB" associated with an inputColor component&lt;/b>'/>
+          <tr:inputColor id="sicConv" chooseId="cpConv"
+                         label="Enter or select color from palette below"
+                         value="#{color.colorValue1}">
+            <tr:convertColor patterns="rrr-ggg-bbb #RRGGBB" transparentAllowed="false"/>
+          </tr:inputColor>
+          <tr:chooseColor id="cpConv" colorData="#{requestContext.colorPalette.default49}"/>
+          <tr:outputFormatted styleUsage="instruction"
+                              value="&lt;b>A chooseColor with attribute 'colorData' bound to a list(java.util.List) of colors(java.awt.Color) and attribute 'customColorData' bound to an array of colors(java.awt.Color)&lt;/b>"/>
+          <tr:chooseColor id="cp2" colorData="#{color.colorList}"
+                          customColorData="#{color.colorArray}"/>
+          <tr:outputFormatted styleUsage="instruction"
+                              value="&lt;b>A chooseColor using standard 80 color palette(Trinidad implicit object) - Update its properties  from the table below&lt;/b>"/>
+          <tr:chooseColor binding="#{editor.component}" id="cp3"
+                          colorData="#{requestContext.colorPalette.default80}" width="16"/>
+          <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/chooseColor.jspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/chooseDate.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/chooseDate.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/chooseDate.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/chooseDate.jspx Wed Nov 10 08:13:47 2010
@@ -1,53 +1,53 @@
-<?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="ChooseDate 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_chooseDate.html"
-                       text="Tag Documentation"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#chooseDate"
-                       text="Skinning Key Documentation"/>
-          </tr:panelGroupLayout>
-          <tr:outputFormatted styleUsage="instruction" value="&lt;b>Simple chooseDate &lt;/b>"/>
-          <tr:chooseDate binding="#{editor.component}" id="idp1" shortDesc="Choose Date"/>
-          <tr:inputDate id="df1a" chooseId="idp1" shortDesc="Choose Date"/>
-          <tr:inputText id="ti1a" value="Not a Date Field" shortDesc="Enter value"/>
-          <tr:inputDate id="df1b" chooseId="idp1" shortDesc="Choose Date"/>
-          <tr:inputDate id="df1c" chooseId="idp1" shortDesc="Choose Date"/>
-          <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="ChooseDate 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_chooseDate.html"
+                       text="Tag Documentation"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#chooseDate"
+                       text="Skinning Key Documentation"/>
+          </tr:panelGroupLayout>
+          <tr:outputFormatted styleUsage="instruction" value="&lt;b>Simple chooseDate &lt;/b>"/>
+          <tr:chooseDate binding="#{editor.component}" id="idp1" shortDesc="Choose Date"/>
+          <tr:inputDate id="df1a" chooseId="idp1" shortDesc="Choose Date"/>
+          <tr:inputText id="ti1a" value="Not a Date Field" shortDesc="Enter value"/>
+          <tr:inputDate id="df1b" chooseId="idp1" shortDesc="Choose Date"/>
+          <tr:inputDate id="df1c" chooseId="idp1" shortDesc="Choose Date"/>
+          <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/chooseDate.jspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/column.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/column.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/column.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/column.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="Column Demo">
-      <tr:form>
-        <tr:panelGroupLayout layout="vertical">
-          <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_column.html"
-                       text="Tag Documentation"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#column"
-                       text="Skinning Key Documentation"/>
-          </tr:panelGroupLayout>
-          <tr:commandLink immediate="true" text="Column Group" action="guide.column.group"/>
-          <tr:commandLink immediate="true" text="RowHeader Column" action="guide.column.rowHeader"/>
-          <tr:commandLink immediate="true" text="Sortable Column" action="guide.column.sortable"/>
-          <tr:commandLink immediate="true" text="Column Footer" action="guide.column.footer"/>
-          <tr:outputFormatted styleUsage="instruction" value="&lt;br>&lt;b>column&lt;/b>"/>
-          <tr:table id="foo" value="#{table}" var="row" rows="5" summary="Column Demo">
-            <tr:column>
-              <f:facet name="header">
-                <tr:outputText value="Header 1"/>
-              </f:facet>
-              <tr:outputText value="#{row.int}"/>
-            </tr:column>
-            <tr:column separateRows="true" binding="#{editor.component}">
-              <f:facet name="header">
-                <tr:outputText value="Separate Rows"/>
-              </f:facet>
-              <tr:outputText value="#{row.int}"/>
-              <tr:outputText value="#{row.string}"/>
-            </tr:column>
-            <tr:column align="right">
-              <f:facet name="header">
-                <tr:outputText value="Right"/>
-              </f:facet>
-              <tr:outputText value="#{row.int}"/>
-            </tr:column>
-            <tr:column align="center">
-              <f:facet name="header">
-                <tr:outputText value="Center"/>
-              </f:facet>
-              <tr:outputText value="#{row.int}"/>
-            </tr:column>
-            <tr:column noWrap="true">
-              <f:facet name="header">
-                <tr:outputText value="Data Does Not Wrap"/>
-              </f:facet>
-              <tr:outputText value=" #{row.string} #{row.string}"/>
-            </tr:column>
-            <tr:column headerNoWrap="true">
-              <f:facet name="header">
-                <tr:outputText value="Header No Wrap"/>
-              </f:facet>
-              <tr:outputText value=" #{row.string} #{row.string} #{row.string}"/>
-            </tr:column>
-          </tr:table>
-          <tr:outputFormatted styleUsage="instruction"
-                              value="&lt;br>This Editor controls the 'Separate Rows' Column:"/>
-          <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="Column Demo">
+      <tr:form>
+        <tr:panelGroupLayout layout="vertical">
+          <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_column.html"
+                       text="Tag Documentation"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#column"
+                       text="Skinning Key Documentation"/>
+          </tr:panelGroupLayout>
+          <tr:commandLink immediate="true" text="Column Group" action="guide.column.group"/>
+          <tr:commandLink immediate="true" text="RowHeader Column" action="guide.column.rowHeader"/>
+          <tr:commandLink immediate="true" text="Sortable Column" action="guide.column.sortable"/>
+          <tr:commandLink immediate="true" text="Column Footer" action="guide.column.footer"/>
+          <tr:outputFormatted styleUsage="instruction" value="&lt;br>&lt;b>column&lt;/b>"/>
+          <tr:table id="foo" value="#{table}" var="row" rows="5" summary="Column Demo">
+            <tr:column>
+              <f:facet name="header">
+                <tr:outputText value="Header 1"/>
+              </f:facet>
+              <tr:outputText value="#{row.int}"/>
+            </tr:column>
+            <tr:column separateRows="true" binding="#{editor.component}">
+              <f:facet name="header">
+                <tr:outputText value="Separate Rows"/>
+              </f:facet>
+              <tr:outputText value="#{row.int}"/>
+              <tr:outputText value="#{row.string}"/>
+            </tr:column>
+            <tr:column align="right">
+              <f:facet name="header">
+                <tr:outputText value="Right"/>
+              </f:facet>
+              <tr:outputText value="#{row.int}"/>
+            </tr:column>
+            <tr:column align="center">
+              <f:facet name="header">
+                <tr:outputText value="Center"/>
+              </f:facet>
+              <tr:outputText value="#{row.int}"/>
+            </tr:column>
+            <tr:column noWrap="true">
+              <f:facet name="header">
+                <tr:outputText value="Data Does Not Wrap"/>
+              </f:facet>
+              <tr:outputText value=" #{row.string} #{row.string}"/>
+            </tr:column>
+            <tr:column headerNoWrap="true">
+              <f:facet name="header">
+                <tr:outputText value="Header No Wrap"/>
+              </f:facet>
+              <tr:outputText value=" #{row.string} #{row.string} #{row.string}"/>
+            </tr:column>
+          </tr:table>
+          <tr:outputFormatted styleUsage="instruction"
+                              value="&lt;br>This Editor controls the 'Separate Rows' Column:"/>
+          <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/column.jspx
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/column_group.jspx
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/column_group.jspx?rev=1033391&r1=1033390&r2=1033391&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/column_group.jspx (original)
+++ myfaces/trinidad/trunk/trinidad-examples/trinidad-demo/src/main/webapp/components/column_group.jspx Wed Nov 10 08:13:47 2010
@@ -1,85 +1,85 @@
-<?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="Column Group Demo">
-      <tr:form>
-        <tr:panelGroupLayout layout="vertical">
-          <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_column.html"
-                       text="Tag Documentation"/>
-            <tr:spacer width="10"/>
-            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#column"
-                       text="Skinning Key Documentation"/>
-          </tr:panelGroupLayout>
-          <tr:commandLink immediate="true" text="Column Demo" action="guide.column"/>
-          <tr:commandLink immediate="true" text="RowHeader Column" action="guide.column.rowHeader"/>
-          <tr:commandLink immediate="true" text="Sortable Column" action="guide.column.sortable"/>
-          <tr:commandLink immediate="true" text="Column Footer" action="guide.column.footer"/>
-          <tr:outputFormatted styleUsage="instruction" value="&lt;p>&lt;b>Column Group&lt;/b>"/>
-          <tr:table value="#{periodicTable.tableData}" rows="7" var="row"
-                    summary="Column Group Demo">
-            <tr:column>
-              <f:facet name="header">
-                <tr:outputText value="Atom"/>
-              </f:facet>
-              <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="Description"/>
-                </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="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:column>
-            </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="Column Group Demo">
+      <tr:form>
+        <tr:panelGroupLayout layout="vertical">
+          <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_column.html"
+                       text="Tag Documentation"/>
+            <tr:spacer width="10"/>
+            <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#column"
+                       text="Skinning Key Documentation"/>
+          </tr:panelGroupLayout>
+          <tr:commandLink immediate="true" text="Column Demo" action="guide.column"/>
+          <tr:commandLink immediate="true" text="RowHeader Column" action="guide.column.rowHeader"/>
+          <tr:commandLink immediate="true" text="Sortable Column" action="guide.column.sortable"/>
+          <tr:commandLink immediate="true" text="Column Footer" action="guide.column.footer"/>
+          <tr:outputFormatted styleUsage="instruction" value="&lt;p>&lt;b>Column Group&lt;/b>"/>
+          <tr:table value="#{periodicTable.tableData}" rows="7" var="row"
+                    summary="Column Group Demo">
+            <tr:column>
+              <f:facet name="header">
+                <tr:outputText value="Atom"/>
+              </f:facet>
+              <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="Description"/>
+                </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="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:column>
+            </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/column_group.jspx
------------------------------------------------------------------------------
    svn:eol-style = native