You are viewing a plain text version of this content. The canonical link for it is here.
Posted to adffaces-commits@incubator.apache.org by ma...@apache.org on 2007/03/07 14:44:48 UTC

svn commit: r515587 [9/19] - in /incubator/adffaces/branches/matzew-core-1.0.0-incubation: ./ examples/ examples/trinidad-demo/ examples/trinidad-demo/src/ examples/trinidad-demo/src/conf/ examples/trinidad-demo/src/main/ examples/trinidad-demo/src/mai...

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/commandNavigationItem.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/commandNavigationItem.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/commandNavigationItem.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/commandNavigationItem.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +1,204 @@
+<?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 version="1.2"
+          xmlns:jsp="http://java.sun.com/JSP/Page"
+          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="commandNavigationItem 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="BreadCrumbs Demo"
+              action="guide.breadCrumbs"/>
+            <tr:commandNavigationItem immediate="true" text="PanelPage Demo"
+              action="guide.panelPage"/>
+          </tr:navigationPane>
+          <tr:outputFormatted styleUsage="instruction" value="&lt;b>A commandNavigationItem&lt;/b>"/>
+          <tr:panelGroupLayout layout="vertical">
+            <tr:outputFormatted
+              value="&lt;b>commandNavigationItem's inside of a navigationPane with hint=&quot;tabs&quot;&lt;/b>"/>
+            <tr:navigationPane hint="tabs" shortDesc="Select Page"
+              id="editorExample">
+              <tr:commandNavigationItem
+                binding="#{editor.component}"
+                text="Editor Item"
+                shortDesc="Item with an assigned actionListener"
+                partialSubmit="true"
+                accessKey="A"
+                actionListener="#{demoCommandNavigationItem.navigationItemAction}"/>
+              <tr:commandNavigationItem text="Selected Item"
+                actionListener="#{demoCommandNavigationItem.navigationItemAction}"
+                partialSubmit="true"
+                selected="true"/>
+              <tr:commandNavigationItem text="Icon Item"
+                actionListener="#{demoCommandNavigationItem.navigationItemAction}"
+                icon="/components/images/file.gif"
+                partialSubmit="true"/>
+              <tr:commandNavigationItem text="Disabled Item"
+                disabled="true"
+                action="guide"
+                destination="http://www.apache.org/"/>
+              <tr:commandNavigationItem
+                text="Apache"
+                shortDesc="Apache's website"
+                destination="http://www.apache.org/"/>
+            </tr:navigationPane>
+          </tr:panelGroupLayout>
+          <jsp:directive.include file="editor.jspf"/>
+
+          <tr:panelGroupLayout layout="vertical">
+            <tr:outputFormatted
+              value="&lt;b>commandNavigationItem's inside of a navigationPane with hint=&quot;bar&quot;&lt;/b>"/>
+            <tr:navigationPane hint="bar" id="barExample">
+              <tr:commandNavigationItem text="Component Guide" action="guide"
+                shortDesc="Return to the component guide"/>
+              <tr:commandNavigationItem text="Selected Item"
+                actionListener="#{demoCommandNavigationItem.navigationItemAction}"
+                partialSubmit="true"
+                selected="true"/>
+              <tr:commandNavigationItem text="Icon Item"
+                actionListener="#{demoCommandNavigationItem.navigationItemAction}"
+                icon="/components/images/file.gif"
+                accessKey="B"
+                partialSubmit="true"/>
+              <tr:commandNavigationItem text="Disabled Item"
+                disabled="true"
+                action="guide"
+                destination="http://www.apache.org/"/>
+              <tr:commandNavigationItem text="Apache"
+                destination="http://www.apache.org/"/>
+            </tr:navigationPane>
+          </tr:panelGroupLayout>
+
+          <tr:panelGroupLayout layout="vertical">
+            <tr:outputFormatted
+              value="&lt;b>commandNavigationItem's inside of a navigationPane with hint=&quot;list&quot;&lt;/b>"/>
+            <tr:navigationPane hint="list" id="listExample">
+              <tr:commandNavigationItem text="Component Guide" action="guide"
+                shortDesc="Return to the component guide"/>
+              <tr:commandNavigationItem text="Selected Item"
+                actionListener="#{demoCommandNavigationItem.navigationItemAction}"
+                partialSubmit="true"
+                selected="true"/>
+              <tr:commandNavigationItem text="Icon Item"
+                actionListener="#{demoCommandNavigationItem.navigationItemAction}"
+                icon="/components/images/file.gif"
+                accessKey="C"
+                partialSubmit="true"/>
+              <tr:commandNavigationItem text="Disabled Item"
+                disabled="true"
+                action="guide"
+                destination="http://www.apache.org/"/>
+              <tr:commandNavigationItem text="Apache"
+                destination="http://www.apache.org/"/>
+            </tr:navigationPane>
+          </tr:panelGroupLayout>
+
+          <tr:panelGroupLayout layout="vertical">
+            <tr:outputFormatted
+              value="&lt;b>commandNavigationItem's inside of a navigationPane with hint=&quot;buttons&quot;&lt;/b>"/>
+            <tr:navigationPane hint="buttons" id="buttonsExample">
+              <tr:commandNavigationItem text="Component Guide" action="guide"
+                shortDesc="Return to the component guide"/>
+              <tr:commandNavigationItem text="Selected Item"
+                actionListener="#{demoCommandNavigationItem.navigationItemAction}"
+                partialSubmit="true"
+                selected="true"/>
+              <tr:commandNavigationItem text="Icon Item"
+                actionListener="#{demoCommandNavigationItem.navigationItemAction}"
+                icon="/components/images/file.gif"
+                accessKey="D"
+                partialSubmit="true"/>
+              <tr:commandNavigationItem text="Disabled Item"
+                disabled="true"
+                action="guide"
+                destination="http://www.apache.org/"/>
+              <tr:commandNavigationItem text="Apache"
+                destination="http://www.apache.org/"/>
+            </tr:navigationPane>
+          </tr:panelGroupLayout>
+
+          <tr:panelGroupLayout layout="vertical">
+            <tr:outputFormatted
+              value="&lt;b>commandNavigationItem's inside of a navigationPane with hint=&quot;choice&quot;&lt;/b>"/>
+            <tr:navigationPane hint="choice" shortDesc="Switch application"
+              id="choiceExample">
+              <tr:commandNavigationItem text="Component Guide" action="guide"
+                shortDesc="Return to the component guide"/>
+              <tr:commandNavigationItem text="Selected Item"
+                actionListener="#{demoCommandNavigationItem.navigationItemAction}"
+                partialSubmit="true"
+                selected="true"/>
+              <tr:commandNavigationItem text="Icon Item"
+                actionListener="#{demoCommandNavigationItem.navigationItemAction}"
+                icon="/components/images/file.gif"
+                accessKey="E"
+                partialSubmit="true"/>
+              <tr:commandNavigationItem text="Disabled Item"
+                disabled="true"
+                action="guide"
+                destination="http://www.apache.org/"/>
+              <tr:commandNavigationItem text="Apache"
+                destination="http://www.apache.org/"/>
+            </tr:navigationPane>
+          </tr:panelGroupLayout>
+
+          <tr:panelGroupLayout layout="vertical">
+            <tr:outputFormatted
+              value="&lt;b>commandNavigationItem's inside of a breadCrumbs&lt;/b>"/>
+            <tr:breadCrumbs id="pathExample">
+              <tr:commandNavigationItem text="Component Guide"
+                action="guide"
+                shortDesc="Return to the component guide"
+                accessKey="F"/>
+              <tr:commandNavigationItem text="Selected Item"
+                actionListener="#{demoCommandNavigationItem.navigationItemAction}"
+                partialSubmit="true"
+                selected="true"/>
+              <tr:commandNavigationItem text="Icon Item"
+                actionListener="#{demoCommandNavigationItem.navigationItemAction}"
+                icon="/components/images/file.gif"
+                partialSubmit="true"/>
+              <tr:commandNavigationItem text="Disabled Item"
+                disabled="true"
+                action="guide"
+                destination="http://www.apache.org/"/>
+              <tr:commandNavigationItem text="Apache"
+                destination="http://www.apache.org/"/>
+            </tr:breadCrumbs>
+          </tr:panelGroupLayout>
+
+        </tr:panelGroupLayout>
+      </tr:form>
+    </tr:document>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/componentRef.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/componentRef.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/componentRef.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/componentRef.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +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>
+    <trh:html>
+      <trh:head title="Region Tag Demo"/>
+      <trh:body>
+        <tr:form>        
+          <tr:panelGroupLayout layout="vertical">
+            <f:facet name="separator">
+             <tr:separator />
+            </f:facet>
+            <tr:commandLink immediate="true" text="Component Guide"
+                action="guide"/>      
+                
+            <tr:outputText value="This demo uses three regions:"/>
+            
+            <tr:componentRef id="reg1" componentType="org.apache.myfaces.trinidaddemo.region.stock"
+              value="Watch this stock">
+              <f:attribute name="symbol" value="XYZ"/>
+              <f:attribute name="company" value="XYZ Incorp"/>
+              <f:attribute name="amount" value="13.66"/>
+              <f:facet name="action">
+                <tr:commandButton text="Buy" disabled="true"/>
+              </f:facet>
+            </tr:componentRef>
+
+            <tr:componentRef id="reg2" componentType="org.apache.myfaces.trinidaddemo.region.stock">
+              <f:attribute name="symbol" value="PQR"/>
+              <f:attribute name="company" value="PQR Corp"/>
+              <f:attribute name="description" value="Power and Utilities"/>
+              <f:attribute name="amount" value="26.32"/>
+              <f:facet name="action">
+                <tr:commandButton text="Short" disabled="true"/>
+              </f:facet>
+            </tr:componentRef>
+
+            <tr:componentRef id="reg3" componentType="org.apache.myfaces.trinidaddemo.region.stock">
+              <f:attribute name="symbol" value="DFLT"/>
+            </tr:componentRef>
+
+          </tr:panelGroupLayout>
+        </tr:form>
+      </trh:body>
+    </trh:html>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/editor.jspf
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/editor.jspf?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/editor.jspf (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/editor.jspf Wed Mar  7 06:44:35 2007
@@ -0,0 +1,52 @@
+        <tr:table var="row" rows="100" value="#{editor.attributes}" 
+                  summary="Attributes">
+          <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="Value"/>
+            </f:facet>
+            <tr:inputText immediate="true"
+                           readOnly="#{row.name == 'value' ||
+                                       row.name == 'var' ||
+                                       row.name == 'currencyKey' ||
+                                       row.name == 'currencyString' ||
+                                       row.name == 'rowKey' ||
+                                       row.name == 'id' ||
+                                       row.name == 'rendererType' ||
+                                       row.name == 'submittedValue'}"
+                           rendered="#{row.type == 'string'}"
+                           value="#{row.value}"
+                           shortDesc="Type to change '#{row.name}'"/>
+            <tr:inputText immediate="true"
+                           readOnly="#{row.name == 'rowIndex'}"
+                           rendered="#{row.type == 'integer'}"
+                           value="#{row.value}"
+                           shortDesc="Type to change '#{row.name}'">
+              <f:converter converterId="javax.faces.Integer"/>
+            </tr:inputText>
+            <tr:inputText immediate="true"
+                          rendered="#{row.type == 'date'}"
+                          value="#{row.value}"
+                          shortDesc="Type to change '#{row.name}'">
+              <f:facet name="help">
+                <tr:outputText value="Sample format: 2004-07-15"/>
+              </f:facet>
+              <f:convertDateTime pattern="yyyy-MM-dd"/>
+            </tr:inputText>
+            <tr:selectBooleanCheckbox rendered="#{row.type == 'boolean'}"
+                                       readOnly="#{row.name == 'localValueSet' ||
+                                                   row.name == 'valid' ||
+                                                   row.name == 'transient'}"
+                                       immediate="true" value="#{row.value}"
+                                       shortDesc="Click to change '#{row.name}'"/>
+          </tr:column>
+          <f:facet name="footer">
+            <tr:commandButton  text="Update"
+                              action="#{editor.update}"/>
+          </f:facet>
+        </tr:table>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/form.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/form.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/form.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/form.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +1,63 @@
+<?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="Form Demo"/>
+      <trh:body>      
+          <tr:panelGroupLayout layout="vertical">
+            <f:facet name="separator">
+              <tr:separator />
+            </f:facet>   
+            <tr:outputFormatted styleUsage="instruction" value="&lt;b>Multiple form test &lt;/b>"/>
+            <tr:form defaultCommand="first" binding="#{editor.component}">
+            
+             <tr:panelGroupLayout layout="vertical">
+              <tr:commandLink immediate="true" text="Component Guide"
+                                action="guide"/>
+              <tr:outputFormatted styleUsage="instruction"
+                                 value="This is the first form;  submit it and changes in the second form will be lost."/>
+              <tr:inputText label="First form, First Field:"  shortDesc="Field 1"/>
+              <tr:inputText label="First form, Second Field:" shortDesc="Field 2"/>
+              <tr:commandButton id="first" text="First"/>
+             </tr:panelGroupLayout>
+            </tr:form>
+            <tr:form>
+              <jsp:directive.include file="editor.jspf" />
+            </tr:form>
+            <tr:form>
+             <tr:panelGroupLayout layout="vertical">
+              <tr:outputFormatted styleUsage="instruction"
+                                 value="This is the second form; submit it and changes in the first form will be lost."/>
+              <tr:inputText label="Second form"/>
+              <tr:commandButton text="Second"/>
+             </tr:panelGroupLayout>
+            </tr:form>
+          </tr:panelGroupLayout>
+      </trh:body>
+    </trh:html>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/goButton.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/goButton.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/goButton.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/goButton.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +1,47 @@
+<?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="GoButton Demo">
+        <tr:form>        
+          <tr:panelGroupLayout layout="vertical">
+            <f:facet name="separator">
+              <tr:separator />
+            </f:facet>
+            <tr:commandLink immediate="true" text="Component Guide"
+                action="guide"/>
+            <tr:outputFormatted styleUsage="instruction" value="&lt;b> &lt;/b>"/>
+
+            <tr:goButton binding="#{editor.component}" text="Press me"
+                        destination="http://www.apache.org"/>
+                  
+            <jsp:directive.include file="editor.jspf" />
+    
+          </tr:panelGroupLayout>
+        </tr:form>
+ </tr:document>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/goLink.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/goLink.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/goLink.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/goLink.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +1,44 @@
+<?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="GoLink Demo">
+        <tr:form>        
+          <tr:panelGroupLayout layout="vertical">
+            <f:facet name="separator">
+             <tr:separator />
+            </f:facet>
+            <tr:commandLink immediate="true" text="Component Guide"
+                action="guide"/>      
+            <tr:goLink binding="#{editor.component}" text="Link Here"
+                      destination="http://www.apache.org"/>
+    
+            <jsp:directive.include file="editor.jspf" />
+          </tr:panelGroupLayout>
+        </tr:form>
+ </tr:document>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/group.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/group.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/group.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/group.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+	   
+-->
+<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
+          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="Group Demo">
+      <tr:form>
+        <tr:panelGroupLayout layout="vertical">
+          <f:facet name="separator">
+            <tr:separator/>
+          </f:facet>
+          <tr:commandLink immediate="true" text="Component Guide"
+            action="guide"/>
+          <tr:outputText
+            value="The group component is an invisible control that aggregates semantically-related children; the group itself has no associated client representation (visual or API).
+Some parent components may have special representation for groups like adding separators around the group but this is a special case and is not always rendered this way.
+In most cases, only the children of the group will be rendered directly to the page.
+There will be no layout applied to the children so the natural layout behavior of the underlying HTML elements will apply.
+If you require a more predictable layout, you should use a layout component such as panelGroupLayout."/>
+          <tr:outputText
+            value="The following demo shows a vertical panelGroupLayout with a separator facet containing a
+group that has two images directly inside of it."/>
+          <tr:panelGroupLayout layout="vertical">
+            <f:facet name="separator">
+              <tr:group binding="#{editor.component}">
+                <tr:image shortDesc="File" source="/components/images/file.gif"/>
+                <tr:image shortDesc="Check" source="/components/images/processCheck.gif"/>
+              </tr:group>
+            </f:facet>
+            <tr:outputText value="Item 1"/>
+            <tr:outputText value="Item 2"/>
+          </tr:panelGroupLayout>
+          <jsp:directive.include file="editor.jspf"/>
+        </tr:panelGroupLayout>
+      </tr:form>
+    </tr:document>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/body.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/body.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/body.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/body.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +1,47 @@
+<?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="Body Demo"/>
+      <trh:body onload="alert('body loading')"  binding="#{editor.component}">
+        <tr:form>
+          <tr:panelGroupLayout layout="vertical">
+            <f:facet name="separator">
+              <tr:separator />
+            </f:facet>
+            <tr:commandLink immediate="true" text="Component Guide"
+                  action="guide"/>               
+            <tr:outputFormatted styleUsage="instruction" value="&lt;b>You should see a javascript alert when the body demo is loaded&lt;/b>"/>
+              
+            <jsp:directive.include file="../editor.jspf" />
+    
+          </tr:panelGroupLayout>
+        </tr:form>
+      </trh:body>
+    </trh:html>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/cellFormat.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/cellFormat.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/cellFormat.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/cellFormat.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +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: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="CellFormat Demo">
+        <tr:form>
+          <tr:panelGroupLayout layout="vertical">
+            <f:facet name="separator">
+              <tr:separator />
+            </f:facet> 
+            <tr:commandLink immediate="true" text="Component Guide"
+                  action="guide"/>               
+            <tr:outputFormatted styleUsage="instruction" 
+                               value="&lt;b>Using cellFormat in tableLayout&lt;/b>"/>
+            <trh:tableLayout borderWidth="1" width="50%" >
+              <trh:rowLayout>
+                <trh:cellFormat binding="#{editor.component}" 
+                                rowSpan="2" halign="center" >
+                  <h:outputText value="One"/>
+                </trh:cellFormat>
+                <trh:cellFormat halign="center" >
+                  <h:outputText value="Two"/>
+                </trh:cellFormat>
+                <trh:cellFormat halign="center" >
+                  <h:outputText value="Three"/>
+                </trh:cellFormat>
+              </trh:rowLayout>
+              <trh:rowLayout>
+                <trh:cellFormat halign="center" >
+                  <h:outputText value="Four"/>
+                </trh:cellFormat>
+                <trh:cellFormat halign="center" columnSpan="2" >
+                  <h:outputText value="Five"/>
+                </trh:cellFormat>
+              </trh:rowLayout>
+            </trh:tableLayout>
+            <jsp:directive.include file="../editor.jspf" />
+          </tr:panelGroupLayout>
+        </tr:form>
+ </tr:document>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.bottom.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.bottom.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.bottom.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.bottom.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +1,39 @@
+<?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="FrameBorderLayout Demo">
+        <table width="100%" >
+          <tr>
+            <td height="30pt" align="center"
+                style="background-color:yellow;" >
+              bottom
+            </td>
+          </tr>
+        </table>
+ </tr:document>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.center.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.center.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.center.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.center.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +1,41 @@
+<?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="FrameBorderLayout Demo">
+        <tr:form>
+          <tr:panelGroupLayout layout="vertical">
+            <f:facet name="separator">
+              <tr:separator />
+            </f:facet>   
+            <tr:outputFormatted styleUsage="instruction" 
+                               value="&lt;b>A frameBorderLayout&lt;/b>"/>
+            <!--jsp:directive.include file="editor.jspf" /-->
+          </tr:panelGroupLayout>
+        </tr:form>
+ </tr:document>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.innerLeft.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.innerLeft.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.innerLeft.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.innerLeft.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +1,39 @@
+<?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="FrameBorderLayout Demo">
+        <table width="100%" >
+          <tr>
+            <td height="100pt" align="center"
+                style="background-color:lightblue;" >
+              innerLeft
+            </td>
+          </tr>
+        </table>
+ </tr:document>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.innerRight.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.innerRight.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.innerRight.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.innerRight.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +1,39 @@
+<?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="FrameBorderLayout Demo">
+        <table width="100%" >
+          <tr>
+            <td height="100pt" align="center"
+                style="background-color:lightblue;" >
+              innerRight
+            </td>
+          </tr>
+        </table>
+ </tr:document>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +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" 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="FrameBorderLayout Demo"/>
+      <trh:frameBorderLayout shortDesc="Frame border layout demo">
+        <f:facet name="alternateContent">
+          <tr:outputText value="Your browser does not support frames. Frames support is required for this demo page"/>
+        </f:facet>
+        <f:facet name="top" >
+          <trh:frame width="100%" height="30pt" scrolling="yes"
+                     shortDesc="Top frame"
+                     source="frameBorderLayout.top.jspx" />
+        </f:facet>
+        <f:facet name="left" >
+          <trh:frame width="10%" scrolling="auto"
+                     shortDesc="Left frame"
+                     source="frameBorderLayout.left.jspx" />
+        </f:facet>
+        <f:facet name="innerLeft" >
+          <trh:frame width="10%" scrolling="auto"
+                     shortDesc="Inner left frame"
+                     source="frameBorderLayout.innerLeft.jspx" />
+        </f:facet>
+        <f:facet name="innerRight" >
+          <trh:frame width="10%" scrolling="auto"
+                     shortDesc="Inner right frame"
+                     source="frameBorderLayout.innerRight.jspx" />
+        </f:facet>
+        <f:facet name="right" >
+          <trh:frame width="10%" height="100%" scrolling="auto"
+                     shortDesc="Right frame"
+                     source="frameBorderLayout.right.jspx" />
+        </f:facet>
+        <f:facet name="bottom" >
+          <trh:frame width="100%" height="30pt" scrolling="yes"
+                     shortDesc="Bottom frame"
+                     source="frameBorderLayout.bottom.jspx" />
+        </f:facet>
+        <f:facet name="center" >
+          <trh:frame scrolling="auto"
+                     shortDesc="Center frame"
+                     source="frameBorderLayout.center.jspx" />
+        </f:facet>
+      </trh:frameBorderLayout>
+    </trh:html>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.left.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.left.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.left.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.left.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +1,39 @@
+<?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="FrameBorderLayout Demo">
+        <table width="100%" >
+          <tr>
+            <td height="100pt" align="center"
+                style="background-color:pink;" >
+              left
+            </td>
+          </tr>
+        </table>
+ </tr:document>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.right.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.right.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.right.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.right.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +1,39 @@
+<?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="FrameBorderLayout Demo">
+        <table width="100%" >
+          <tr>
+            <td height="100pt" align="center"
+                style="background-color:pink;" >
+              right
+            </td>
+          </tr>
+        </table>
+ </tr:document>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.top.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.top.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.top.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/frameBorderLayout.top.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +1,39 @@
+<?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="FrameBorderLayout Demo">
+        <table width="100%" >
+          <tr>
+            <td height="30pt" align="center"
+                style="background-color:yellow;" >
+              top
+            </td>
+          </tr>
+        </table>
+ </tr:document>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/html.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/html.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/html.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/html.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +1,44 @@
+<?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="HTML Demo"/>
+        <trh:body>
+          <tr:form>
+            <tr:panelGroupLayout layout="vertical">
+              <f:facet name="separator">
+                <tr:separator />
+              </f:facet> 
+              <tr:commandLink immediate="true" text="Component Guide"
+                    action="guide"/>            
+              <tr:outputText value="The title is set in the head component of this document component" />   
+            </tr:panelGroupLayout>
+          </tr:form>
+        </trh:body>
+    </trh:html>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/rowLayout.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/rowLayout.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/rowLayout.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/rowLayout.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +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>
+ <tr:document title="RowLayout Demo">
+        <tr:form>
+          <tr:panelGroupLayout layout="vertical">
+            <f:facet name="separator">
+              <tr:separator />
+            </f:facet> 
+            <tr:commandLink immediate="true" text="Component Guide"
+                  action="guide"/>             
+            <tr:outputFormatted styleUsage="instruction" value="&lt;b>A rowLayout&lt;/b>"/>
+            <trh:rowLayout binding="#{editor.component}" width="100%" >
+              <f:verbatim>
+                <span>One</span>
+                <span>Two</span>
+                <span>Three</span>
+              </f:verbatim>
+            </trh:rowLayout>
+            
+            <jsp:directive.include file="../editor.jspf" />
+          </tr:panelGroupLayout>
+        </tr:form>
+ </tr:document>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/tableLayout.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/tableLayout.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/tableLayout.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/html/tableLayout.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+	   
+-->
+<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
+          xmlns:f="http://java.sun.com/jsf/core"
+          xmlns:h="http://java.sun.com/jsf/html"
+          xmlns:trh="http://myfaces.apache.org/trinidad/html" 
+          xmlns:tr="http://myfaces.apache.org/trinidad" >
+  <jsp:directive.page contentType="text/html;charset=utf-8"/>
+  <f:view>
+ <tr:document title="TableLayout Demo">
+        <tr:form>
+          <tr:panelGroupLayout layout="vertical">
+            <f:facet name="separator">
+              <tr:separator />
+            </f:facet>
+            <tr:commandLink immediate="true" text="Component Guide"
+                  action="guide"/> 
+            <tr:outputFormatted styleUsage="instruction" value="&lt;b>A tableLayout&lt;/b>"/>
+            <trh:tableLayout width="100%" binding="#{editor.component}" >
+              <trh:rowLayout>
+                <f:verbatim>
+                  <span>One</span>
+                  <span>Two</span>
+                  <span>Three</span>
+                </f:verbatim>
+              </trh:rowLayout>
+              <trh:rowLayout>
+                <f:verbatim>
+                  <span>Four</span>
+                  <span>Five</span>
+                  <span>Six</span>
+                </f:verbatim>
+              </trh:rowLayout>
+            </trh:tableLayout>
+            
+            <jsp:directive.include file="../editor.jspf" />
+          </tr:panelGroupLayout>
+        </tr:form>
+ </tr:document>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/icon.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/icon.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/icon.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/icon.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +1,43 @@
+<?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="Icon Demo">
+     <tr:form>
+          <tr:panelGroupLayout layout="vertical">
+            <f:facet name="separator">
+              <tr:separator />
+            </f:facet>   
+            <tr:commandLink immediate="true" text="Component Guide"
+                action="guide"/>    
+            <tr:icon binding="#{editor.component}" name="required"/>
+    
+            <jsp:directive.include file="editor.jspf" />
+          </tr:panelGroupLayout>
+        </tr:form>
+ </tr:document>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/image.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/image.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/image.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/image.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +1,54 @@
+<?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="Image Demo">
+        <tr:form>
+          <tr:panelGroupLayout layout="vertical">
+            <f:facet name="separator">
+              <tr:separator />
+            </f:facet>
+            <tr:commandLink immediate="true" text="Component Guide"
+                action="guide"/>
+            <tr:outputFormatted styleUsage="instruction" value="&lt;b>objectImage with context-relative URL&lt;/b>"/>
+            <tr:commandLink immediate="true" action="guide">
+              <tr:image binding="#{editor.component}" source="/adf/images/error.gif" shortDesc="error"/>
+            </tr:commandLink>
+
+            <jsp:directive.include file="editor.jspf" />
+
+            <tr:outputFormatted styleUsage="instruction" value="&lt;b>objectImage with server-relative URL&lt;/b>"/>
+            <tr:goLink destination="http://www.apache.org">
+              <!-- Use long EL chain to avoid hardcoding the context path;  of course, once you're doing this, you might as well just use the context-relative URL form above, but this does test out the feature... -->
+              <tr:image source="/#{facesContext.externalContext.request.contextPath}/adf/images/error.gif" shortDesc="error"/>
+            </tr:goLink>
+            <tr:outputFormatted styleUsage="instruction" value="&lt;b>objectImage with absolute URL&lt;/b>"/>
+            <tr:image source="http://homepage.mac.com/awiner/.Pictures/WindyHill/PaleSwallowtail.jpg" shortDesc="Pale Swallow Tail"/>
+          </tr:panelGroupLayout>
+        </tr:form>
+ </tr:document>
+  </f:view>
+</jsp:root>

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/cobrand.gif
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/cobrand.gif?view=auto&rev=515587
==============================================================================
Binary file - no diff available.

Propchange: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/cobrand.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/corporateBrand.gif
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/corporateBrand.gif?view=auto&rev=515587
==============================================================================
Binary file - no diff available.

Propchange: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/corporateBrand.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/file.gif
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/file.gif?view=auto&rev=515587
==============================================================================
Binary file - no diff available.

Propchange: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/file.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/globalhelp.gif
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/globalhelp.gif?view=auto&rev=515587
==============================================================================
Binary file - no diff available.

Propchange: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/globalhelp.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/largeAd.gif
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/largeAd.gif?view=auto&rev=515587
==============================================================================
Binary file - no diff available.

Propchange: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/largeAd.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/logout.gif
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/logout.gif?view=auto&rev=515587
==============================================================================
Binary file - no diff available.

Propchange: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/logout.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/mediumAd.gif
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/mediumAd.gif?view=auto&rev=515587
==============================================================================
Binary file - no diff available.

Propchange: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/mediumAd.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/monthlySalesDistribution.gif
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/monthlySalesDistribution.gif?view=auto&rev=515587
==============================================================================
Binary file - no diff available.

Propchange: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/monthlySalesDistribution.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/new.gif
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/new.gif?view=auto&rev=515587
==============================================================================
Binary file - no diff available.

Propchange: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/new.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/processCheck.gif
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/processCheck.gif?view=auto&rev=515587
==============================================================================
Binary file - no diff available.

Propchange: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/processCheck.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/salesByGeography.gif
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/salesByGeography.gif?view=auto&rev=515587
==============================================================================
Binary file - no diff available.

Propchange: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/salesByGeography.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/seattle.wmv
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/seattle.wmv?view=auto&rev=515587
==============================================================================
Binary file - no diff available.

Propchange: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/seattle.wmv
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/shopcart.gif
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/shopcart.gif?view=auto&rev=515587
==============================================================================
Binary file - no diff available.

Propchange: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/images/shopcart.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/inputColor.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/inputColor.jspx?view=auto&rev=515587
==============================================================================
--- incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/inputColor.jspx (added)
+++ incubator/adffaces/branches/matzew-core-1.0.0-incubation/examples/trinidad-demo/src/main/webapp/components/inputColor.jspx Wed Mar  7 06:44:35 2007
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+	   
+-->
+<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
+          xmlns:f="http://java.sun.com/jsf/core"
+          xmlns:tr="http://myfaces.apache.org/trinidad" >
+  <jsp:directive.page contentType="text/html;charset=utf-8"/>
+  <f:view>
+ <tr:document title="InputColor Demo">
+        <tr:form>
+          <tr:panelGroupLayout layout="vertical">
+            <f:facet name="separator">
+              <tr:separator/>
+            </f:facet>
+            <tr:commandLink immediate="true" text="Component Guide"
+              action="guide"/>       
+
+            <tr:commandButton text="Submit"/>           
+            <tr:outputFormatted styleUsage="instruction" value="&lt;b>A inputColor using inline chooseColor - Update its properties from the table below&lt;/b>"/>
+            <tr:inputColor id="sic1" chooseId="cp1"
+              binding="#{editor.component}"
+              label="Enter or select color from palette below"
+              value="#{color.colorValue2}">
+              <f:facet name="help">
+                <tr:outputText value="Use format (#RRGGBB) or (r,g,b)"/>
+              </f:facet>
+            </tr:inputColor>
+            <tr:chooseColor id="cp1" 
+              colorData="#{requestContext.colorPalette.default49}"/>
+            <jsp:directive.include file="editor.jspf" />          
+            <tr:outputFormatted styleUsage="instruction" value="&lt;b>A inputColor&lt;/b>"/>
+            <tr:inputColor id="sic3"
+              label="Enter or select color" value="#{color.colorValue3}" > 
+              <f:facet name="help">
+                <tr:outputText value="Use format (#RRGGBB) or (r,g,b)"/>
+              </f:facet>
+            </tr:inputColor>
+
+          </tr:panelGroupLayout>
+        </tr:form>
+ </tr:document>
+  </f:view>
+</jsp:root>