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

Norman Richards norman.richards at jboss.com
Wed Dec 6 19:19:15 EST 2006


  User: nrichards
  Date: 06/12/06 19:19:15

  Modified:    src/ui/META-INF    faces-config.xml seam.taglib.xml
                        taglib.tld
  Log:
  JBSEAM-556: add s:selectDate
  
  Revision  Changes    Path
  1.22      +10 -0     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.21
  retrieving revision 1.22
  diff -u -b -r1.21 -r1.22
  --- faces-config.xml	5 Dec 2006 13:13:13 -0000	1.21
  +++ faces-config.xml	7 Dec 2006 00:19:15 -0000	1.22
  @@ -441,6 +441,16 @@
           </property>
       </component>
   
  +    <component>
  +        <component-type>org.jboss.seam.ui.SelectDate</component-type>
  +        <component-class>org.jboss.seam.ui.SelectDate</component-class>
  +        <property>
  +            <property-name>for</property-name>
  +            <property-class>java.lang.String</property-class>
  +        </property>
  +    </component>
  +
  +
       <validator>
           <validator-id>org.jboss.seam.ui.ModelValidator</validator-id>
           <validator-class>org.jboss.seam.ui.ModelValidator</validator-class>
  
  
  
  1.19      +8 -1      jboss-seam/src/ui/META-INF/seam.taglib.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: seam.taglib.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/META-INF/seam.taglib.xml,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -b -r1.18 -r1.19
  --- seam.taglib.xml	5 Dec 2006 13:13:13 -0000	1.18
  +++ seam.taglib.xml	7 Dec 2006 00:19:15 -0000	1.19
  @@ -98,6 +98,13 @@
       </tag>
       
       <tag>
  +        <tag-name>selectDate</tag-name>
  +        <component>
  +            <component-type>org.jboss.seam.ui.SelectDate</component-type>
  +        </component>
  +    </tag>
  +    
  +    <tag>
           <tag-name>validate</tag-name>
           <validator>
               <validator-id>org.jboss.seam.ui.ModelValidator</validator-id>
  
  
  
  1.23      +14 -1     jboss-seam/src/ui/META-INF/taglib.tld
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: taglib.tld
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/META-INF/taglib.tld,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -b -r1.22 -r1.23
  --- taglib.tld	5 Dec 2006 13:13:13 -0000	1.22
  +++ taglib.tld	7 Dec 2006 00:19:15 -0000	1.23
  @@ -867,6 +867,18 @@
     </tag>
   
     <tag>
  +    <name>selectDate</name>
  +    <tag-class>org.jboss.seam.ui.tag.SelectDateTag</tag-class>
  +    <body-content>JSP</body-content>
  +    <attribute>
  +      <name>for</name>
  +      <required>true</required>
  +      <rtexprvalue>false</rtexprvalue>
  +      <description>the field identifier of the input item to pick a date for</description>
  +    </attribute>
  +  </tag>
  +
  +  <tag>
       <name>convertDateTime</name>
       <tag-class>org.jboss.seam.ui.tag.ConvertDateTimeTag</tag-class>
       <body-content>empty</body-content>
  @@ -908,4 +920,5 @@
       </attribute>
     </tag>
   
  +
   </taglib>
  \ No newline at end of file
  
  
  



More information about the jboss-cvs-commits mailing list