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 2006/08/02 18:35:05 UTC

svn commit: r428081 [5/12] - in /incubator/adffaces/trunk/trinidad: trinidad-api/src/main/java/org/apache/myfaces/trinidad/context/ trinidad-api/src/test/java/org/apache/myfaces/trinidad/component/core/layout/ trinidad-api/src/test/java/org/apache/myfa...

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/page_process_include.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/page_process_include.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/page_process_include.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/page_process_include.jspx Wed Aug  2 11:34:29 2006
@@ -21,10 +21,10 @@
   <f:view>
     <tr:document title="Page Hierarchy Demo">
       <tr:form>
-        <tr:panelGroup layout="vertical">
+        <tr:panelGroupLayout layout="vertical">
           <tr:commandLink immediate="true" text="Component Guide"
                           action="guide"/>
-          <tr:objectSeparator/>
+          <tr:separator/>
           <tr:page var="foo" value="#{menuModel.model}">
             <f:facet name="nodeStamp">
               <tr:commandNavigationItem
@@ -32,7 +32,7 @@
                 icon="#{foo.ico}"/>
             </f:facet>
             <f:facet name="location">
-               <tr:processTrain var="foo" value="#{processPageMenuModel}">
+               <tr:train var="foo" value="#{processPageMenuModel}">
                  <f:facet name="nodeStamp">
                    <tr:commandNavigationItem
                      text="#{foo.label}"
@@ -40,7 +40,7 @@
                      immediate="#{processPageMenuModel.immediate}"
                      readOnly="#{processPageMenuModel.readOnly}"/>
                  </f:facet>
-              </tr:processTrain>    
+              </tr:train>    
             </f:facet>   
             <f:facet name="appAbout">
               <tr:outputText value="appAbout facet"/>
@@ -89,7 +89,7 @@
               </f:facet>
             </tr:processChoiceBar>
           </tr:page>
-        </tr:panelGroup>
+        </tr:panelGroupLayout>
       </tr:form>
     </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelBox.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelBox.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelBox.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelBox.jspx Wed Aug  2 11:34:29 2006
@@ -23,9 +23,9 @@
   <f:view>
  <tr:document title="PanelBox Demo">
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet>
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>             
@@ -41,7 +41,7 @@
             
             <jsp:directive.include file="editor.jspf" />
     
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelButtonBar.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelButtonBar.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelButtonBar.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelButtonBar.jspx Wed Aug  2 11:34:29 2006
@@ -25,9 +25,9 @@
       <trh:head title="PanelButtonBar Demo"/>
       <trh:body>
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet>
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>             
@@ -42,7 +42,7 @@
             
             <jsp:directive.include file="editor.jspf" />
     
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
       </trh:body>
     </trh:html>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelHeader.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelHeader.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelHeader.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelHeader.jspx Wed Aug  2 11:34:29 2006
@@ -25,9 +25,9 @@
       <trh:head title="PanelHeader Demo"/>
       <trh:body>
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet> 
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>             
@@ -38,7 +38,7 @@
             
             <jsp:directive.include file="editor.jspf" />
     
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
       </trh:body>
     </trh:html>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelLabelAndMessage.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelLabelAndMessage.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelLabelAndMessage.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelLabelAndMessage.jspx Wed Aug  2 11:34:29 2006
@@ -24,9 +24,9 @@
       <trh:head title="PanelLabelAndMessage Demo"/>
       <trh:body>
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator/>
+              <tr:separator/>
             </f:facet>
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>
@@ -42,7 +42,7 @@
               <tr:inputText simple="true" id="foo"/>
             </tr:panelLabelAndMessage>
             <jsp:directive.include file="editor.jspf" />
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
       </trh:body>
     </trh:html>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelList.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelList.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelList.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelList.jspx Wed Aug  2 11:34:29 2006
@@ -23,9 +23,9 @@
   <f:view>
  <tr:document title="PanelList Demo">
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet>
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>             
@@ -57,30 +57,30 @@
                       
             <tr:outputFormatted styleUsage="instruction" value="&lt;b>Nested bulleted List&lt;/b>" />
             <tr:panelList rows="1" maxColumns="1">            
-                <tr:panelGroup>
+                <tr:panelGroupLayout>
                   <tr:commandLink text="item 1" action="action.nothing" />
                   <tr:panelList rows="2" maxColumns="2"> 
                     <tr:commandLink text="item 1.1" action="action.nothing" />
                     <tr:commandLink text="item 1.2" action="action.nothing" />
                   </tr:panelList>
-                </tr:panelGroup>
+                </tr:panelGroupLayout>
             </tr:panelList>
             
             <tr:outputFormatted styleUsage="instruction" value="&lt;b>Another nested bulleted List&lt;/b>" />
             <tr:panelList rows="1" maxColumns="1">            
-                <tr:panelGroup>
+                <tr:panelGroupLayout>
                   <tr:commandLink text="item 1" action="action.nothing" />
-                </tr:panelGroup>
-                <tr:panelGroup>
+                </tr:panelGroupLayout>
+                <tr:panelGroupLayout>
                   <tr:commandLink text="item 2" action="action.nothing" />                
                   <tr:panelList rows="2" maxColumns="2"> 
                     <tr:commandLink text="item 2.1" action="action.nothing" />
                     <tr:commandLink text="item 2.2" action="action.nothing" />
                   </tr:panelList>
-                </tr:panelGroup>
+                </tr:panelGroupLayout>
             </tr:panelList>
                               
-          </tr:panelGroup>          
+          </tr:panelGroupLayout>          
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelPage.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelPage.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelPage.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelPage.jspx Wed Aug  2 11:34:29 2006
@@ -23,9 +23,9 @@
   <f:view>
  <tr:document title="PanelPage Demo">
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator/>
+              <tr:separator/>
             </f:facet>
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>             
@@ -85,12 +85,12 @@
                                    styleUsage="inContextBranding"/>
               </f:facet>
               <f:facet name="location">
-                <tr:navigationPath>
-                  <tr:commandNavigationItem text="item 1" action="guide.navigationPath" />
-                  <tr:commandNavigationItem text="item 2" action="guide.navigationPath" />
-                  <tr:commandNavigationItem text="item 3" action="guide.navigationPath" />
-                  <tr:commandNavigationItem text="item 4" action="guide.navigationPath" />
-                </tr:navigationPath>
+                <tr:breadCrumbs>
+                  <tr:commandNavigationItem text="item 1" action="guide.breadCrumbs" />
+                  <tr:commandNavigationItem text="item 2" action="guide.breadCrumbs" />
+                  <tr:commandNavigationItem text="item 3" action="guide.breadCrumbs" />
+                  <tr:commandNavigationItem text="item 4" action="guide.breadCrumbs" />
+                </tr:breadCrumbs>
               </f:facet>
               <f:facet name="appCopyright">
                 <tr:outputText value="copyright facet"/>
@@ -108,7 +108,7 @@
             
             <jsp:directive.include file="editor.jspf" />
     
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelPageHeader.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelPageHeader.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelPageHeader.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelPageHeader.jspx Wed Aug  2 11:34:29 2006
@@ -25,21 +25,21 @@
       <trh:head title="PanelPageHeader Demo"/>
       <trh:body>
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator/>
+              <tr:separator/>
             </f:facet>
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>             
             <tr:outputFormatted styleUsage="instruction" value="&lt;b>panelPageHeader demo &lt;/b>"/>
             <tr:panelPageHeader binding="#{editor.component}">                          
               <f:facet name="branding">
-                <tr:panelGroup>
-                  <tr:objectImage source="/components/images/corporateBrand.gif"
+                <tr:panelGroupLayout>
+                  <tr:image source="/components/images/corporateBrand.gif"
                              shortDesc="corporate"/>
                   <tr:outputFormatted value="Customer &lt;b&gt;InContextBranding Company - Menlo Park&lt;/b&gt;"
                                      styleUsage="inContextBranding"/>
-                </tr:panelGroup>
+                </tr:panelGroupLayout>
               </f:facet>
               <f:facet name="navigationGlobal">
                 <tr:menuButtons>
@@ -61,7 +61,7 @@
             
             <jsp:directive.include file="editor.jspf" />
     
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
       </trh:body>
     </trh:html>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelPartialRoot.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelPartialRoot.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelPartialRoot.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelPartialRoot.jspx Wed Aug  2 11:34:29 2006
@@ -25,9 +25,9 @@
    <trh:head title="panelPartialRoot Demo"/>
    <tr:panelPartialRoot>
     <tr:form>
-     <tr:panelGroup layout="vertical">
+     <tr:panelGroupLayout layout="vertical">
       <f:facet name="separator">
-       <tr:objectSeparator/>
+       <tr:separator/>
       </f:facet>
       <tr:commandLink immediate="true"
                       text="Component Guide"
@@ -48,7 +48,7 @@
         </tr:panelLabelAndMessage>
        </trh:rowLayout>
       </trh:tableLayout>
-     </tr:panelGroup>
+     </tr:panelGroupLayout>
     </tr:form>
    </tr:panelPartialRoot>
   </trh:html>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelSideBar.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelSideBar.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelSideBar.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelSideBar.jspx Wed Aug  2 11:34:29 2006
@@ -23,9 +23,9 @@
   <f:view>
  <tr:document title="PanelSideBar Demo">
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator/>
+              <tr:separator/>
             </f:facet>
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>             
@@ -40,7 +40,7 @@
             
             <jsp:directive.include file="editor.jspf" />
     
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelTip.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelTip.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelTip.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/panelTip.jspx Wed Aug  2 11:34:29 2006
@@ -25,9 +25,9 @@
       <trh:head title="PanelTip Demo"/>
       <trh:body>
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet>
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>             
@@ -37,7 +37,7 @@
             </tr:panelTip>
     
             <jsp:directive.include file="editor.jspf" />
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
       </trh:body>
     </trh:html>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/poll.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/poll.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/poll.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/poll.jspx Wed Aug  2 11:34:29 2006
@@ -23,44 +23,44 @@
   <f:view>
     <tr:document title="Poll Demo">
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator/>
+              <tr:separator/>
             </f:facet>
             <tr:commandLink immediate="true" text="Component Guide"
               action="guide" actionListener="#{poll.resetPoll}"/>
 
             <tr:commandButton text="Submit"/>
 
-            <tr:panelGroup layout="vertical">
+            <tr:panelGroupLayout layout="vertical">
               <tr:poll binding="#{editor.component}" interval="2000" 
                 pollListener="#{poll.onPoll}" id="pollid"/>
               <tr:outputFormatted styleUsage="instruction" 
                 value="&lt;b>Poll component with a poll listener that updates the poll count&lt;/b>"/>
-            </tr:panelGroup>
+            </tr:panelGroupLayout>
             <tr:inputText readOnly="true" 
               label="Date/Time from last full page refresh" 
               value="#{date.currentDate}"
               styleClass="AFDataText">
               <tr:convertDateTime pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
             </tr:inputText>
-            <tr:panelGroup layout="vertical">
+            <tr:panelGroupLayout layout="vertical">
               <tr:outputFormatted styleUsage="instruction" 
                 value="&lt;b>InputText linked to Poll component being updated in partial page mode&lt;/b>"/>
               <tr:inputText  readOnly="true" label="Poll Count: " 
                              value="#{poll.pollCount}"
                              styleClass="AFDataText" partialTriggers="pollid"/>
-            </tr:panelGroup>
+            </tr:panelGroupLayout>
 
-            <tr:panelGroup layout="vertical">
+            <tr:panelGroupLayout layout="vertical">
               <tr:panelHeader text="When modal dialogs are launched from the
                 following components, poll pauses until the dialog is dismissed"/>
               <f:facet name="separator">
-                <tr:objectSpacer height="5"/>
+                <tr:spacer height="5"/>
               </f:facet>
-              <tr:selectInputColor id="sic3" label="The color picker dialog" 
+              <tr:inputColor id="sic3" label="The color picker dialog" 
                                    value="#{color.colorValue3}" compact="true"/>
-              <tr:selectInputDate id="sid1" value="#{date.date1}"
+              <tr:inputDate id="sid1" value="#{date.date1}"
                                   label="The date picker dialog"/>
                <tr:commandButton text="Using dialog framework" 
                                  action="dialog:simpleDialog" useWindow="true"
@@ -69,11 +69,11 @@
               <tr:goButton 
                 text="Using openWindow() API in Trinidad Javascript library" 
                 onclick="openWindow(window,'poll_window_page.jspx','',{width:200, height:100},true,'dialog','');"/>
-            </tr:panelGroup>
+            </tr:panelGroupLayout>
 
             <jsp:directive.include file="editor.jspf"/>
 
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
     </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/poll_window_page.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/poll_window_page.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/poll_window_page.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/poll_window_page.jspx Wed Aug  2 11:34:29 2006
@@ -23,11 +23,11 @@
   <f:view>
     <tr:document title="Apache Logo">
         <tr:form>
-          <tr:panelGroup layout="vertical">
-            <tr:objectImage 
+          <tr:panelGroupLayout layout="vertical">
+            <tr:image 
                 source="http://www.apache.org/images/asf_logo_wide.gif" 
                 shortDesc="Apache Logo"/>
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
     </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/processChoiceBar.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/processChoiceBar.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/processChoiceBar.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/processChoiceBar.jspx Wed Aug  2 11:34:29 2006
@@ -25,9 +25,9 @@
       <trh:head title="processChoiceBar Demo"/>
       <trh:body>
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator/>
+              <tr:separator/>
             </f:facet>
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>             
@@ -44,7 +44,7 @@
               </f:facet>
             </tr:processChoiceBar> 
             <jsp:directive.include file="editor.jspf" />
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
       </trh:body>
     </trh:html>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/processChoiceBar2.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/processChoiceBar2.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/processChoiceBar2.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/processChoiceBar2.jspx Wed Aug  2 11:34:29 2006
@@ -23,9 +23,9 @@
   <f:view>
  <tr:document title="processChoiceBar Demo">
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator/>
+              <tr:separator/>
             </f:facet>
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>             
@@ -41,7 +41,7 @@
                                     readOnly="#{processMenuModel.readOnly}"/>
               </f:facet>
             </tr:processChoiceBar> 
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/processChoiceBar3.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/processChoiceBar3.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/processChoiceBar3.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/processChoiceBar3.jspx Wed Aug  2 11:34:29 2006
@@ -25,9 +25,9 @@
       <trh:head title="processChoiceBar Demo"/>
       <trh:body>
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator/>
+              <tr:separator/>
             </f:facet>
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>             
@@ -43,7 +43,7 @@
               </f:facet>
             </tr:processChoiceBar>    
 
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
       </trh:body>
     </trh:html>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/progressIndicator.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/progressIndicator.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/progressIndicator.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/progressIndicator.jspx Wed Aug  2 11:34:29 2006
@@ -23,9 +23,9 @@
   <f:view>
  <tr:document title="ProgressIndicator Demo">
     <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator/>
+              <tr:separator/>
             </f:facet>
             <tr:commandLink immediate="true" text="Component Guide"
               action="guide" actionListener="#{progress.cancelProcess}"/> 
@@ -37,7 +37,7 @@
               <tr:convertDateTime pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
             </tr:inputText>
               
-            <tr:panelGroup layout="vertical">
+            <tr:panelGroupLayout layout="vertical">
               <tr:outputFormatted styleUsage="instruction" 
                 value="&lt;b>ProgressIndicator component linked to a Poll 
                 component - Navigates to a different page once the background
@@ -53,14 +53,14 @@
                   value="#{progress.progressModel.value} of #{progress.progressModel.maximum} files copied"
                   rendered="#{progress.progressModel.value > -1 and progress.progressModel.value > -1}"/>
               </tr:progressIndicator>
-            </tr:panelGroup>
+            </tr:panelGroupLayout>
 
             <tr:commandButton text="Cancel" action="progressCancel" 
               actionListener="#{progress.cancelProcess}"/>
             
             <jsp:directive.include file="editor.jspf" />
 
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/resetButton.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/resetButton.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/resetButton.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/resetButton.jspx Wed Aug  2 11:34:29 2006
@@ -23,9 +23,9 @@
   <f:view>
  <tr:document title="ResetButton Demo">
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet>
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>             
@@ -35,7 +35,7 @@
                   
             <jsp:directive.include file="editor.jspf" />
     
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectBooleanCheckbox.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectBooleanCheckbox.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectBooleanCheckbox.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectBooleanCheckbox.jspx Wed Aug  2 11:34:29 2006
@@ -23,9 +23,9 @@
   <f:view>
  <tr:document title="SelectBooleanCheckbox Demo">
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet>
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>
@@ -35,7 +35,7 @@
             <tr:commandButton text="Submit" />
 
             <jsp:directive.include file="editor.jspf" />
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectBooleanRadio.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectBooleanRadio.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectBooleanRadio.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectBooleanRadio.jspx Wed Aug  2 11:34:29 2006
@@ -23,24 +23,24 @@
   <f:view>
  <tr:document title="SelectBooleanRadio Demo">
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet>   
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>     
             <tr:outputFormatted styleUsage="instruction" value="&lt;b>SelectBooleanRadio&lt;/b>"/>
-            <tr:panelForm>
+            <tr:panelFormLayout>
               <tr:selectBooleanRadio group="theGroup" selected="true" binding="#{editor.component}" label="Label" text="item"
                                      autoSubmit="true"
                                      onclick="alert('hi'); return true;"/>
               <tr:selectBooleanRadio group="theGroup" text="item 2" />
               <tr:selectBooleanRadio group="theGroup" text="item 3" />
-            </tr:panelForm>
+            </tr:panelFormLayout>
             <tr:commandButton text="Submit"/>
 
             <jsp:directive.include file="editor.jspf" />
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectItem.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectItem.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectItem.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectItem.jspx Wed Aug  2 11:34:29 2006
@@ -25,9 +25,9 @@
       <trh:head title="SelectItem Demo"/>
       <trh:body>
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet> 
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>             
@@ -42,7 +42,7 @@
 
             <jsp:directive.include file="editor.jspf" />
     
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
       </trh:body>
     </trh:html>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectManyCheckbox.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectManyCheckbox.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectManyCheckbox.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectManyCheckbox.jspx Wed Aug  2 11:34:29 2006
@@ -25,9 +25,9 @@
       <trh:head title="SelectManyCheckbox Demo"/>
       <trh:body>
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet>   
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/> 
@@ -107,7 +107,7 @@
             </tr:selectManyCheckbox>
 
              <tr:commandButton text="Submit"/>
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
       </trh:body>
     </trh:html>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectManyListbox.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectManyListbox.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectManyListbox.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectManyListbox.jspx Wed Aug  2 11:34:29 2006
@@ -25,9 +25,9 @@
       <trh:head title="SelectManyListbox Demo"/>
       <trh:body>
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet>   
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/> 
@@ -107,7 +107,7 @@
             </tr:selectManyListbox>
 
              <tr:commandButton text="Submit"/>
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
       </trh:body>
     </trh:html>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectManyShuttle.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectManyShuttle.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectManyShuttle.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectManyShuttle.jspx Wed Aug  2 11:34:29 2006
@@ -23,9 +23,9 @@
   <f:view>
  <tr:document title="SelectManyShuttle Demo">
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet>   
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/> 
@@ -78,7 +78,7 @@
 -->
              <tr:commandButton text="Submit"/>
 
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectOneChoice.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectOneChoice.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectOneChoice.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectOneChoice.jspx Wed Aug  2 11:34:29 2006
@@ -23,9 +23,9 @@
   <f:view>
  <tr:document title="SelectOneChoice Demo">
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet> 
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>             
@@ -41,7 +41,7 @@
 
             <jsp:directive.include file="editor.jspf" />
     
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectOneListbox.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectOneListbox.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectOneListbox.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectOneListbox.jspx Wed Aug  2 11:34:29 2006
@@ -23,9 +23,9 @@
   <f:view>
  <tr:document title="SelectOneListbox Demo">
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet>   
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/> 
@@ -54,7 +54,7 @@
 
             <jsp:directive.include file="editor.jspf" />
 
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectOneRadio.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectOneRadio.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectOneRadio.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectOneRadio.jspx Wed Aug  2 11:34:29 2006
@@ -24,9 +24,9 @@
       <trh:head title="SelectOneRadio Demo"/>
       <trh:body>
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet>   
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>     
@@ -39,7 +39,7 @@
             
             <jsp:directive.include file="editor.jspf" />
     
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
       </trh:body>
     </trh:html>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectOrderShuttle.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectOrderShuttle.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectOrderShuttle.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectOrderShuttle.jspx Wed Aug  2 11:34:29 2006
@@ -23,9 +23,9 @@
   <f:view>
  <tr:document title="SelectOrderShuttle Demo">
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet>   
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/> 
@@ -78,7 +78,7 @@
 -->
              <tr:commandButton text="Submit"/>
 
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectRangeChoiceBar.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectRangeChoiceBar.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectRangeChoiceBar.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/selectRangeChoiceBar.jspx Wed Aug  2 11:34:29 2006
@@ -24,13 +24,13 @@
   <f:view>
  <tr:document title="selectRangeChoiceBar Demo">
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator/>
+              <tr:separator/>
             </f:facet>
             <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
             <tr:outputFormatted styleUsage="instruction" value="&lt;b>selectRangeChoiceBar&lt;/b>"/>
-              <tr:panelGroup layout="vertical">
+              <tr:panelGroupLayout layout="vertical">
                 <tr:outputFormatted styleUsage="instruction"
                 value="selectRangeChoiceBar with no rangeLabel facet;
                 we get default labels."/>
@@ -38,9 +38,9 @@
                   id="selectRangeChoiceBarID2" first="0" rows="5" value="#{table}"/>
 
                 <jsp:directive.include file="editor.jspf"/>
-              </tr:panelGroup>
+              </tr:panelGroupLayout>
 
-              <tr:panelGroup layout="vertical">
+              <tr:panelGroupLayout layout="vertical">
                 <tr:outputFormatted styleUsage="instruction"
                 value="selectRangeChoiceBar with rangeLabel facet to customize range
                 labels and tied to a list of data"/>
@@ -53,16 +53,16 @@
                     <f:selectItem itemLabel="#{range.start} - #{range.end}"/>
                   </f:facet>
                 </tr:selectRangeChoiceBar>
-                <tr:panelGroup partialTriggers="selectRangeCBId1">
+                <tr:panelGroupLayout partialTriggers="selectRangeCBId1">
                    <tr:forEach items="#{animals.namesInRange}" var="animalName">
                     <tr:outputText value="#{animalName}, "/>
                   </tr:forEach>
-                </tr:panelGroup>
-              </tr:panelGroup>
+                </tr:panelGroupLayout>
+              </tr:panelGroupLayout>
 
 
 
-            </tr:panelGroup>
+            </tr:panelGroupLayout>
 
         </tr:form>
  </tr:document>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/showDetail.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/showDetail.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/showDetail.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/showDetail.jspx Wed Aug  2 11:34:29 2006
@@ -23,9 +23,9 @@
   <f:view>
 <tr:document title="ShowDetail Component">
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator/>
+              <tr:separator/>
             </f:facet>
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>
@@ -49,7 +49,7 @@
               <h:outputText value="You have toggled a total of #{toggle.totalCount} times"/>
               </f:verbatim>
             </tr:showDetail>
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/showDetailHeader.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/showDetailHeader.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/showDetailHeader.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/showDetailHeader.jspx Wed Aug  2 11:34:29 2006
@@ -23,9 +23,9 @@
   <f:view>
  <tr:document title="ShowDetailHeader Component">
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator/>
+              <tr:separator/>
             </f:facet>
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>
@@ -43,7 +43,7 @@
                                 partialTriggers="hsh1 hsh2">
               <h:outputText value="You have toggled a total of #{toggle.totalCount} times"/>
             </tr:showDetailHeader>
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/showDetailItem.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/showDetailItem.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/showDetailItem.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/showDetailItem.jspx Wed Aug  2 11:34:29 2006
@@ -24,9 +24,9 @@
  <tr:document title="ShowDetailItem Demo">
         <tr:form>
         
-            <tr:panelGroup layout="vertical">
+            <tr:panelGroupLayout layout="vertical">
               <f:facet name="separator">
-                <tr:objectSeparator/>
+                <tr:separator/>
               </f:facet>
             <tr:commandLink 
                 immediate="true" 
@@ -35,8 +35,8 @@
 
                 <tr:outputFormatted 
                   styleUsage="instruction" 
-                  value="&lt;b>A showOneTab component with showDetailItem children &lt;/b>"/>  
-                <tr:panelForm>
+                  value="&lt;b>A panelTabbed component with showDetailItem children &lt;/b>"/>  
+                <tr:panelFormLayout>
                   <tr:inputText 
                     readOnly="true" 
                     label="Date/Time from last full page refresh" 
@@ -44,11 +44,11 @@
                     styleClass="AFDataText">
                     <tr:convertDateTime pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
                   </tr:inputText>
-                </tr:panelForm>
-                <tr:showOneTab>
+                </tr:panelFormLayout>
+                <tr:panelTabbed>
                   <tr:showDetailItem binding="#{editor.component}" text="Tab 1">
                     <tr:panelHeader text="Header 1">
-                      <tr:panelForm>
+                      <tr:panelFormLayout>
                         <tr:inputText 
                           readOnly="true" 
                           label="Label 1-1" 
@@ -61,16 +61,16 @@
                           <tr:convertDateTime 
                             pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
                         </tr:inputText>
-                      </tr:panelForm>
+                      </tr:panelFormLayout>
                     </tr:panelHeader>
                   </tr:showDetailItem>
                   <tr:showDetailItem text="Tab 2">
                     <tr:panelHeader text="Header 2 - This ShowDetailItem contains a ShowDetail in it">
-                      <tr:panelGroup>
+                      <tr:panelGroupLayout>
                         <tr:showDetail
                           id="hs1"
                           partialTriggers="hs1">
-                          <tr:panelForm>
+                          <tr:panelFormLayout>
                             <tr:inputText readOnly="true" 
                               label="Date/Time from last partial refresh" 
                               value="#{date.currentDate}"
@@ -78,10 +78,10 @@
                               <tr:convertDateTime 
                                   pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
                               </tr:inputText>
-                              <tr:selectInputColor label="Color" />
-                            </tr:panelForm>
+                              <tr:inputColor label="Color" />
+                            </tr:panelFormLayout>
                           </tr:showDetail>
-                        </tr:panelGroup>
+                        </tr:panelGroupLayout>
                     </tr:panelHeader>
                   </tr:showDetailItem>
                   <tr:showDetailItem 
@@ -90,7 +90,7 @@
                     immediate="false">
                     <tr:panelHeader 
                       text="Header 3 - This showDetailItem has its immediate attribute set to false">
-                      <tr:panelForm>
+                      <tr:panelFormLayout>
                         <tr:inputText 
                           readOnly="true" 
                           label="Label 3-1" 
@@ -106,13 +106,13 @@
                         <tr:inputText 
                           label="This is a required field" 
                           required="true"/>
-                      </tr:panelForm>
+                      </tr:panelFormLayout>
                     </tr:panelHeader>
                   </tr:showDetailItem>
                   <tr:showDetailItem text="Tab 4" disabled="true"/>
                   <tr:showDetailItem text="Tab 5">
                     <tr:panelHeader text="Header 5">
-                      <tr:panelForm>
+                      <tr:panelFormLayout>
                         <tr:inputText 
                           readOnly="true" 
                           label="Label 5-1" 
@@ -125,14 +125,14 @@
                           <tr:convertDateTime 
                             pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
                         </tr:inputText>
-                      </tr:panelForm>
+                      </tr:panelFormLayout>
                     </tr:panelHeader>
                   </tr:showDetailItem>
-                </tr:showOneTab>
+                </tr:panelTabbed>
                 
                 <jsp:directive.include file="editor.jspf" />
     
-            </tr:panelGroup>
+            </tr:panelGroupLayout>
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/showManyAccordion.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/showManyAccordion.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/showManyAccordion.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/showManyAccordion.jspx Wed Aug  2 11:34:29 2006
@@ -21,24 +21,24 @@
           xmlns:tr="http://myfaces.apache.org/trinidad" >
   <jsp:directive.page contentType="text/html;charset=utf-8"/>
   <f:view>
- <tr:document title="showManyAccordion Demo">
+ <tr:document title="panelAccordion Demo">
         <tr:form>
         
-            <tr:panelGroup layout="vertical">
+            <tr:panelGroupLayout layout="vertical">
               <f:facet name="separator">
-                <tr:objectSeparator/>
+                <tr:separator/>
               </f:facet>
             <tr:commandLink immediate="true" 
                             text="Component Guide"
                             action="guide"/>                   
              
                 <tr:outputFormatted styleUsage="instruction" 
-                                    value="&lt;b> A showManyAccordion component - takes default selection among showDetailItem children&lt;/b>"/>  
-                <tr:showManyAccordion>
+                                    value="&lt;b> A panelAccordion component - takes default selection among showDetailItem children&lt;/b>"/>  
+                <tr:panelAccordion discloseMany="true" discloseNone="true">
                   <tr:showDetailItem text="Panel 1" 
                                      disclosureListener="#{toggle.onDisclosure}">
                     <tr:panelHeader text="Header 1">
-                      <tr:panelForm>
+                      <tr:panelFormLayout>
                         <tr:inputText readOnly="true" 
                                       label="Label 1-1" 
                                       value="Value"
@@ -54,12 +54,12 @@
                                        styleClass="AFDataText"
                                        value="You have expanded / collapsed panel 1 a total of #{toggle.totalCount} times"/>
                         
-                      </tr:panelForm>
+                      </tr:panelFormLayout>
                     </tr:panelHeader>
                   </tr:showDetailItem>
                   <tr:showDetailItem text="Panel 2">
                     <tr:panelHeader text="Header 2">
-                      <tr:panelForm>
+                      <tr:panelFormLayout>
                         <tr:inputText readOnly="true" 
                                       label="Label 2-1" 
                                       value="Value"
@@ -70,12 +70,12 @@
                                       styleClass="AFDataText">
                           <tr:convertDateTime pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
                         </tr:inputText>
-                      </tr:panelForm>
+                      </tr:panelFormLayout>
                     </tr:panelHeader>
                   </tr:showDetailItem>
                   <tr:showDetailItem text="Panel 3">
                     <tr:panelHeader text="Header 3">
-                      <tr:panelForm>
+                      <tr:panelFormLayout>
                         <tr:inputText readOnly="true" 
                                       label="Label 3-1" 
                                       value="Value"
@@ -86,12 +86,12 @@
                                       styleClass="AFDataText">
                           <tr:convertDateTime pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
                         </tr:inputText>
-                      </tr:panelForm>
+                      </tr:panelFormLayout>
                     </tr:panelHeader>
                   </tr:showDetailItem>
                   <tr:showDetailItem text="Panel 4">
                     <tr:panelHeader text="Header 4">
-                      <tr:panelForm>
+                      <tr:panelFormLayout>
                         <tr:inputText readOnly="true" 
                                       label="Label 4-1" 
                                       value="Value"
@@ -102,29 +102,29 @@
                                       styleClass="AFDataText">
                           <tr:convertDateTime pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
                         </tr:inputText>
-                      </tr:panelForm>
+                      </tr:panelFormLayout>
                     </tr:panelHeader>
                   </tr:showDetailItem>
-                </tr:showManyAccordion>
+                </tr:panelAccordion>
                 
                 
                 <tr:outputFormatted styleUsage="instruction" 
                                     value="&lt;b>This block is to show the current date for reference - Note that this does not change until there is a full page refresh &lt;/b>"/>  
-                <tr:panelForm>
+                <tr:panelFormLayout>
                   <tr:inputText readOnly="true" 
                                 label="Date/Time from last full page refresh" 
                                 value="#{date.currentDate}"
                                 styleClass="AFDataText">
                     <tr:convertDateTime pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
                   </tr:inputText>
-                </tr:panelForm>
+                </tr:panelFormLayout>
 
                 <tr:outputFormatted styleUsage="instruction" 
-                                    value="&lt;b>A standard showManyAccordion component - Update its properties from the table below &lt;/b>"/>  
-                <tr:showManyAccordion binding="#{editor.component}">
+                                    value="&lt;b>A standard panelAccordion component - Update its properties from the table below &lt;/b>"/>  
+                <tr:panelAccordion binding="#{editor.component}" discloseMany="true" discloseNone="true">
                   <tr:showDetailItem text="Panel 1" id="detailItem1">
                     <tr:panelHeader text="Header 1">
-                      <tr:panelForm>
+                      <tr:panelFormLayout>
                         <tr:inputText readOnly="true" 
                                       label="Label 1-1" 
                                       value="Value"
@@ -135,12 +135,12 @@
                                       styleClass="AFDataText">
                           <tr:convertDateTime pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
                         </tr:inputText>
-                      </tr:panelForm>
+                      </tr:panelFormLayout>
                     </tr:panelHeader>
                   </tr:showDetailItem>
                   <tr:showDetailItem text="Panel 2" id="detailItem2">
                     <tr:panelHeader text="Header 2">
-                      <tr:panelForm>
+                      <tr:panelFormLayout>
                         <tr:inputText readOnly="true" 
                                       label="Label 2-1" value="Value"
                                       styleClass="AFDataText"/>
@@ -150,12 +150,12 @@
                                       styleClass="AFDataText">
                           <tr:convertDateTime pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
                         </tr:inputText>
-                      </tr:panelForm>
+                      </tr:panelFormLayout>
                     </tr:panelHeader>
                   </tr:showDetailItem>
                   <tr:showDetailItem text="Panel 3" id="detailItem3" disclosed="true">
                     <tr:panelHeader text="Header 3">
-                      <tr:panelForm>
+                      <tr:panelFormLayout>
                         <tr:inputText readOnly="true" 
                                       label="Label 3-1" 
                                       value="Value"
@@ -166,13 +166,13 @@
                                       styleClass="AFDataText">
                           <tr:convertDateTime pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
                         </tr:inputText>
-                      </tr:panelForm>
+                      </tr:panelFormLayout>
                     </tr:panelHeader>
                   </tr:showDetailItem>
                   <tr:showDetailItem text="Panel 4" id="detailItem4" disabled="true"/>
                   <tr:showDetailItem text="Panel 5" id="detailItem5">
                     <tr:panelHeader text="Header 5">
-                      <tr:panelForm>
+                      <tr:panelFormLayout>
                         <tr:inputText readOnly="true" 
                                       label="Label 5-1" 
                                       value="Value"
@@ -183,14 +183,14 @@
                                       styleClass="AFDataText">
                           <tr:convertDateTime pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
                         </tr:inputText>
-                      </tr:panelForm>
+                      </tr:panelFormLayout>
                     </tr:panelHeader>
                   </tr:showDetailItem>
-                </tr:showManyAccordion>
+                </tr:panelAccordion>
                 
                 <jsp:directive.include file="editor.jspf" />
     
-            </tr:panelGroup>
+            </tr:panelGroupLayout>
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/showOneAccordion.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/showOneAccordion.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/showOneAccordion.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/showOneAccordion.jspx Wed Aug  2 11:34:29 2006
@@ -21,24 +21,24 @@
           xmlns:tr="http://myfaces.apache.org/trinidad" >
   <jsp:directive.page contentType="text/html;charset=utf-8"/>
   <f:view>
- <tr:document title="showOneAccordion Demo">
+ <tr:document title="panelAccordion Demo">
         <tr:form>
         
-            <tr:panelGroup layout="vertical">
+            <tr:panelGroupLayout layout="vertical">
               <f:facet name="separator">
-                <tr:objectSeparator/>
+                <tr:separator/>
               </f:facet>
             <tr:commandLink immediate="true" 
                             text="Component Guide"
                             action="guide"/>                   
              
                 <tr:outputFormatted styleUsage="instruction" 
-                                    value="&lt;b> A showOneAccordion component - takes default selection among showDetailItem children&lt;/b>"/>  
-                <tr:showOneAccordion>
+                                    value="&lt;b> A panelAccordion component - takes default selection among showDetailItem children&lt;/b>"/>  
+                <tr:panelAccordion discloseNone="true">
                   <tr:showDetailItem text="Panel 1" 
                                      disclosureListener="#{toggle.onDisclosure}">
                     <tr:panelHeader text="Header 1">
-                      <tr:panelForm>
+                      <tr:panelFormLayout>
                         <tr:inputText readOnly="true" 
                                       label="Label 1-1" 
                                       value="Value"
@@ -54,12 +54,12 @@
                                        styleClass="AFDataText"
                                        value="You have expanded / collapsed panel 1 a total of #{toggle.totalCount} times"/>
                         
-                      </tr:panelForm>
+                      </tr:panelFormLayout>
                     </tr:panelHeader>
                   </tr:showDetailItem>
                   <tr:showDetailItem text="Panel 2">
                     <tr:panelHeader text="Header 2">
-                      <tr:panelForm>
+                      <tr:panelFormLayout>
                         <tr:inputText readOnly="true" 
                                       label="Label 2-1" 
                                       value="Value"
@@ -70,12 +70,12 @@
                                       styleClass="AFDataText">
                           <tr:convertDateTime pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
                         </tr:inputText>
-                      </tr:panelForm>
+                      </tr:panelFormLayout>
                     </tr:panelHeader>
                   </tr:showDetailItem>
                   <tr:showDetailItem text="Panel 3">
                     <tr:panelHeader text="Header 3">
-                      <tr:panelForm>
+                      <tr:panelFormLayout>
                         <tr:inputText readOnly="true" 
                                       label="Label 3-1" 
                                       value="Value"
@@ -86,12 +86,12 @@
                                       styleClass="AFDataText">
                           <tr:convertDateTime pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
                         </tr:inputText>
-                      </tr:panelForm>
+                      </tr:panelFormLayout>
                     </tr:panelHeader>
                   </tr:showDetailItem>
                   <tr:showDetailItem text="Panel 4">
                     <tr:panelHeader text="Header 4">
-                      <tr:panelForm>
+                      <tr:panelFormLayout>
                         <tr:inputText readOnly="true" 
                                       label="Label 4-1" 
                                       value="Value"
@@ -102,29 +102,29 @@
                                       styleClass="AFDataText">
                           <tr:convertDateTime pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
                         </tr:inputText>
-                      </tr:panelForm>
+                      </tr:panelFormLayout>
                     </tr:panelHeader>
                   </tr:showDetailItem>
-                </tr:showOneAccordion>
+                </tr:panelAccordion>
                 
                 
                 <tr:outputFormatted styleUsage="instruction" 
                                     value="&lt;b>This block is to show the current date for reference - Note that this does not change until there is a full page refresh &lt;/b>"/>  
-                <tr:panelForm>
+                <tr:panelFormLayout>
                   <tr:inputText readOnly="true" 
                                 label="Date/Time from last full page refresh" 
                                 value="#{date.currentDate}"
                                 styleClass="AFDataText">
                     <tr:convertDateTime pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
                   </tr:inputText>
-                </tr:panelForm>
+                </tr:panelFormLayout>
 
                 <tr:outputFormatted styleUsage="instruction" 
-                                    value="&lt;b>A standard showOneAccordion component - Update its properties from the table below &lt;/b>"/>  
-                <tr:showOneAccordion binding="#{editor.component}">
+                                    value="&lt;b>A standard panelAccordion component - Update its properties from the table below &lt;/b>"/>  
+                <tr:panelAccordion binding="#{editor.component}" discloseNone="true">
                   <tr:showDetailItem text="Panel 1" id="detailItem1">
                     <tr:panelHeader text="Header 1">
-                      <tr:panelForm>
+                      <tr:panelFormLayout>
                         <tr:inputText readOnly="true" 
                                       label="Label 1-1" 
                                       value="Value"
@@ -135,12 +135,12 @@
                                       styleClass="AFDataText">
                           <tr:convertDateTime pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
                         </tr:inputText>
-                      </tr:panelForm>
+                      </tr:panelFormLayout>
                     </tr:panelHeader>
                   </tr:showDetailItem>
                   <tr:showDetailItem text="Panel 2" id="detailItem2">
                     <tr:panelHeader text="Header 2">
-                      <tr:panelForm>
+                      <tr:panelFormLayout>
                         <tr:inputText readOnly="true" 
                                       label="Label 2-1" value="Value"
                                       styleClass="AFDataText"/>
@@ -150,12 +150,12 @@
                                       styleClass="AFDataText">
                           <tr:convertDateTime pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
                         </tr:inputText>
-                      </tr:panelForm>
+                      </tr:panelFormLayout>
                     </tr:panelHeader>
                   </tr:showDetailItem>
                   <tr:showDetailItem text="Panel 3" id="detailItem3" disclosed="true">
                     <tr:panelHeader text="Header 3">
-                      <tr:panelForm>
+                      <tr:panelFormLayout>
                         <tr:inputText readOnly="true" 
                                       label="Label 3-1" 
                                       value="Value"
@@ -166,13 +166,13 @@
                                       styleClass="AFDataText">
                           <tr:convertDateTime pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
                         </tr:inputText>
-                      </tr:panelForm>
+                      </tr:panelFormLayout>
                     </tr:panelHeader>
                   </tr:showDetailItem>
                   <tr:showDetailItem text="Panel 4" id="detailItem4" disabled="true"/>
                   <tr:showDetailItem text="Panel 5" id="detailItem5">
                     <tr:panelHeader text="Header 5">
-                      <tr:panelForm>
+                      <tr:panelFormLayout>
                         <tr:inputText readOnly="true" 
                                       label="Label 5-1" 
                                       value="Value"
@@ -183,14 +183,14 @@
                                       styleClass="AFDataText">
                           <tr:convertDateTime pattern="EEEEEEEEE, ddMMMyyyy, HH:mm:ss z"/>
                         </tr:inputText>
-                      </tr:panelForm>
+                      </tr:panelFormLayout>
                     </tr:panelHeader>
                   </tr:showDetailItem>
-                </tr:showOneAccordion>
+                </tr:panelAccordion>
                 
                 <jsp:directive.include file="editor.jspf" />
     
-            </tr:panelGroup>
+            </tr:panelGroupLayout>
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/singleStepButtonBar.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/singleStepButtonBar.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/singleStepButtonBar.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/singleStepButtonBar.jspx Wed Aug  2 11:34:29 2006
@@ -23,9 +23,9 @@
   <f:view>
  <tr:document title="singleStepButtonBar Demo">
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator/>
+              <tr:separator/>
             </f:facet>
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>                 
@@ -38,7 +38,7 @@
             
             <jsp:directive.include file="editor.jspf" />      
 
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/styleSheet.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/styleSheet.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/styleSheet.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/styleSheet.jspx Wed Aug  2 11:34:29 2006
@@ -29,9 +29,9 @@
       <trh:styleSheet rendered="true" binding="#{editor.component}"/>
       <trh:body>
         <tr:form>       
-            <tr:panelGroup layout="vertical">
+            <tr:panelGroupLayout layout="vertical">
               <f:facet name="separator">
-                <tr:objectSeparator />
+                <tr:separator />
               </f:facet>   
               <tr:commandLink immediate="true" text="Component Guide"
                   action="guide"/>      
@@ -46,7 +46,7 @@
                 Toggle rendered to see the effect of the styleSheet component.
                 "/>
               <jsp:directive.include file="editor.jspf" />
-            </tr:panelGroup>
+            </tr:panelGroupLayout>
         </tr:form>
       </trh:body>
     </trh:html>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/table.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/table.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/table.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/table.jspx Wed Aug  2 11:34:29 2006
@@ -24,9 +24,9 @@
  <tr:document title="table Demo">
         <tr:form >
           <tr:messages/>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet>   
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>     
@@ -56,12 +56,12 @@
                 <tr:commandButton text="Action" action="#{row.action}"/>
               </tr:column>
               <f:facet name="detailStamp" >
-                <tr:panelGroup layout="vertical" >
+                <tr:panelGroupLayout layout="vertical" >
                   <tr:outputText value="Element Name: #{row.name}"/>
                   <tr:outputText value="Atomic Number: #{row.number}"/>
                   <tr:outputText value="Symbol: #{row.symbol}"/>
                   <tr:outputText value="Group: #{row.group}"/>
-                </tr:panelGroup>
+                </tr:panelGroupLayout>
               </f:facet>
             </tr:table>
 
@@ -107,7 +107,7 @@
             </tr:table>
 
             
-          </tr:panelGroup>    
+          </tr:panelGroupLayout>    
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/table_dynamic.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/table_dynamic.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/table_dynamic.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/table_dynamic.jspx Wed Aug  2 11:34:29 2006
@@ -22,9 +22,9 @@
  <tr:document title="Dynamic Table Demo">
         <tr:form >
           <tr:messages/>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet>   
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>     
@@ -45,7 +45,7 @@
               &lt;/ul>
             </f:verbatim>
             
-            <tr:panelForm>
+            <tr:panelFormLayout>
               <tr:inputText label="RowCount" value="#{dynamicTable.rowCount}"
                 accessKey="R">
                 <f:facet name="help">
@@ -72,7 +72,7 @@
               <f:facet name="footer">
                 <tr:commandButton textAndAccessKey="&amp;Update"/>
               </f:facet>
-            </tr:panelForm>
+            </tr:panelFormLayout>
             
             <tr:table var="row"
                       emptyText="No Data"
@@ -92,7 +92,7 @@
                 <tr:outputText value="#{row * 100}"/>
               </tr:column>
             </tr:table>
-          </tr:panelGroup>    
+          </tr:panelGroupLayout>    
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/table_nested.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/table_nested.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/table_nested.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/table_nested.jspx Wed Aug  2 11:34:29 2006
@@ -24,9 +24,9 @@
  <tr:document title="table Demo">
         <tr:form >
           <tr:messages/>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet>   
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>     
@@ -72,7 +72,7 @@
 
 
             
-          </tr:panelGroup>    
+          </tr:panelGroupLayout>    
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/table_selection.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/table_selection.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/table_selection.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/table_selection.jspx Wed Aug  2 11:34:29 2006
@@ -23,13 +23,13 @@
   <f:view>
     <tr:document title="tableSelectMany Demo">
       <tr:form>
-        <tr:panelGroup layout="vertical">
+        <tr:panelGroupLayout layout="vertical">
           <tr:commandLink immediate="true" text="Component Guide"
                           action="guide"/>
-        </tr:panelGroup>
-        <tr:panelGroup layout="vertical">
+        </tr:panelGroupLayout>
+        <tr:panelGroupLayout layout="vertical">
           <f:facet name="separator">
-            <tr:objectSeparator/>
+            <tr:separator/>
           </f:facet>
           <tr:messages/>
           <tr:selectOneChoice value="#{sessionScope.tableSelection}"
@@ -97,7 +97,7 @@
               </tr:column>
             </tr:table>
           </tr:panelHeader>
-        </tr:panelGroup>
+        </tr:panelGroupLayout>
       </tr:form>
     </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/template.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/template.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/template.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/template.jspx Wed Aug  2 11:34:29 2006
@@ -25,9 +25,9 @@
       <trh:head title="Demo"/>
       <trh:body>
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet> 
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>             
@@ -35,7 +35,7 @@
               
             <jsp:directive.include file="editor.jspf" />
     
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
       </trh:body>
     </trh:html>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/tree.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/tree.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/tree.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/tree.jspx Wed Aug  2 11:34:29 2006
@@ -24,9 +24,9 @@
  <tr:document title="Tree Demo">
         <tr:form>
           <tr:messages/>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet>  
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>                
@@ -51,7 +51,7 @@
                 <tr:commandLink text="#{foo.name}" action="#{foo.action}"/>
               </f:facet>
             </tr:tree>
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
         </tr:form>
  </tr:document>
   </f:view>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/treeTable.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/treeTable.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/treeTable.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/treeTable.jspx Wed Aug  2 11:34:29 2006
@@ -23,9 +23,9 @@
   <f:view>
  <tr:document title="TreeTable Demo">
         <tr:form>
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <f:facet name="separator">
-              <tr:objectSeparator />
+              <tr:separator />
             </f:facet>   
             <tr:commandLink immediate="true" text="Component Guide"
                 action="guide"/>    
@@ -163,7 +163,7 @@
                 <h:outputText value="#{foo.text} Bar"/>
               </tr:column>
             </tr:treeTable>
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
 
         </tr:form>
  </tr:document>

Modified: incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/treeTable_selection.jspx
URL: http://svn.apache.org/viewvc/incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/treeTable_selection.jspx?rev=428081&r1=428080&r2=428081&view=diff
==============================================================================
--- incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/treeTable_selection.jspx (original)
+++ incubator/adffaces/trunk/trinidad/trinidad-demo/src/main/webapp/components/treeTable_selection.jspx Wed Aug  2 11:34:29 2006
@@ -25,10 +25,10 @@
       <trh:head title="tableSelectMany Demo"/>
       <trh:body>
         <tr:form >
-          <tr:panelGroup layout="vertical">
+          <tr:panelGroupLayout layout="vertical">
             <tr:commandLink immediate="true" text="Component Guide"
                   action="guide"/> 
-          </tr:panelGroup>
+          </tr:panelGroupLayout>
           <tr:panelPage>
             <tr:messages/>
             <tr:selectOneChoice value="#{sessionScope.tableSelection}"