[jboss-cvs] jboss-seam/src/ui/META-INF ...

Gavin King gavin.king at jboss.com
Mon Mar 19 23:41:50 EDT 2007


  User: gavin   
  Date: 07/03/19 23:41:50

  Modified:    src/ui/META-INF   faces-config.xml seam-ui.taglib.xml
  Log:
  remove s:decorateAll and add support for facelets templating to s:decorate
  
  Revision  Changes    Path
  1.45      +5 -12     jboss-seam/src/ui/META-INF/faces-config.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: faces-config.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/META-INF/faces-config.xml,v
  retrieving revision 1.44
  retrieving revision 1.45
  diff -u -b -r1.44 -r1.45
  --- faces-config.xml	18 Mar 2007 04:22:28 -0000	1.44
  +++ faces-config.xml	20 Mar 2007 03:41:50 -0000	1.45
  @@ -395,6 +395,11 @@
     </property>
    </component>
    <component>
  +  <component-type>org.jboss.seam.ui.HtmlLabelDecoration</component-type>
  +  <component-class>org.jboss.seam.ui.HtmlLabelDecoration</component-class>
  +  <!-- TODO ... -->
  + </component>
  + <component>
     <component-type>org.jboss.seam.ui.HtmlMessageDecoration</component-type>
     <component-class>org.jboss.seam.ui.HtmlMessageDecoration</component-class>
     <property>
  @@ -480,18 +485,6 @@
     </property>
    </component>
     <component>
  -  <component-type>org.jboss.seam.ui.UIDecorateAll</component-type>
  -  <component-class>org.jboss.seam.ui.UIDecorateAll</component-class>
  -  <property>
  -   <property-name>styleClass</property-name>
  -   <property-class>java.lang.String</property-class>
  -  </property>
  -  <property>
  -   <property-name>style</property-name>
  -   <property-class>java.lang.String</property-class>
  -  </property>
  - </component>
  - <component>
     <component-type>org.jboss.seam.ui.UIFormattedText</component-type>
     <component-class>org.jboss.seam.ui.UIFormattedText</component-class>
     <property>
  
  
  
  1.10      +7 -6      jboss-seam/src/ui/META-INF/seam-ui.taglib.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: seam-ui.taglib.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/META-INF/seam-ui.taglib.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -b -r1.9 -r1.10
  --- seam-ui.taglib.xml	18 Mar 2007 04:22:28 -0000	1.9
  +++ seam-ui.taglib.xml	20 Mar 2007 03:41:50 -0000	1.10
  @@ -24,6 +24,7 @@
           <tag-name>decorate</tag-name>
           <component>
               <component-type>org.jboss.seam.ui.UIDecorate</component-type>
  +	    	<handler-class>org.jboss.seam.ui.tag.DecorateHandler</handler-class>
           </component>
       </tag>
       
  @@ -84,23 +85,23 @@
       </tag>
       
       <tag>
  -        <tag-name>span</tag-name>
  +        <tag-name>label</tag-name>
           <component>
  -            <component-type>org.jboss.seam.ui.HtmlSpan</component-type>
  +            <component-type>org.jboss.seam.ui.HtmlLabelDecoration</component-type>
           </component>
       </tag>
       
       <tag>
  -        <tag-name>div</tag-name>
  +        <tag-name>span</tag-name>
           <component>
  -            <component-type>org.jboss.seam.ui.HtmlDiv</component-type>
  +            <component-type>org.jboss.seam.ui.HtmlSpan</component-type>
           </component>
       </tag>
       
       <tag>
  -        <tag-name>decorateAll</tag-name>
  +        <tag-name>div</tag-name>
           <component>
  -            <component-type>org.jboss.seam.ui.UIDecorateAll</component-type>
  +            <component-type>org.jboss.seam.ui.HtmlDiv</component-type>
           </component>
       </tag>
   
  
  
  



More information about the jboss-cvs-commits mailing list