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

Peter Muir peter at bleepbleep.org.uk
Sun Jan 28 18:36:58 EST 2007


  User: pmuir   
  Date: 07/01/28 18:36:58

  Modified:    src/ui/META-INF    taglib.tld faces-config.xml
                        seam.taglib.xml
  Log:
  JBSEAM-709 Initial work on s:selectItems
  
  Revision  Changes    Path
  1.30      +46 -0     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.29
  retrieving revision 1.30
  diff -u -b -r1.29 -r1.30
  --- taglib.tld	25 Jan 2007 13:21:58 -0000	1.29
  +++ taglib.tld	28 Jan 2007 23:36:58 -0000	1.30
  @@ -973,6 +973,52 @@
       </attribute>
     </tag>
     
  +   <tag>
  +    <name>selectItems</name>
  +    <tag-class>org.jboss.seam.ui.tag.SelectItemsTag</tag-class>
  +    <body-content>JSP</body-content>
  +    <attribute>
  +      <name>value</name>
  +      <required>false</required>
  +      <rtexprvalue>false</rtexprvalue>
  +    </attribute>
  +     <attribute>
  +      <name>var</name>
  +      <required>false</required>
  +      <rtexprvalue>false</rtexprvalue>
  +    </attribute>
  +     <attribute>
  +      <name>label</name>
  +      <required>false</required>
  +      <rtexprvalue>false</rtexprvalue>
  +    </attribute>
  +     <attribute>
  +      <name>hideNoSelection</name>
  +      <required>false</required>
  +      <rtexprvalue>false</rtexprvalue>
  +    </attribute>
  +    <attribute>
  +      <name>noSelectionLabel</name>
  +      <required>false</required>
  +      <rtexprvalue>false</rtexprvalue>
  +    </attribute>
  +    <attribute>
  +      <name>cache</name>
  +      <required>false</required>
  +      <rtexprvalue>false</rtexprvalue>
  +    </attribute>
  +    <attribute>
  +      <name>cacheKey</name>
  +      <required>false</required>
  +      <rtexprvalue>false</rtexprvalue>
  +    </attribute>
  +    <attribute>
  +      <name>config</name>
  +      <required>false</required>
  +      <rtexprvalue>false</rtexprvalue>
  +    </attribute>
  + 	</tag>
  +  
     <!-- Security functions -->
     
     <function>
  
  
  
  1.32      +25 -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.31
  retrieving revision 1.32
  diff -u -b -r1.31 -r1.32
  --- faces-config.xml	23 Jan 2007 14:50:20 -0000	1.31
  +++ faces-config.xml	28 Jan 2007 23:36:58 -0000	1.32
  @@ -473,6 +473,31 @@
       </component>
       
       <component>
  +		<component-type>org.jboss.seam.ui.UISelectItems</component-type>
  +		<component-class>org.jboss.seam.ui.UISelectItems</component-class>
  +		<property>
  +			<property-name>noSelectionLabel</property-name>
  +			<property-class>java.lang.String</property-class>
  +		</property>
  +		<property>
  +			<property-name>hideNoSelection</property-name>
  +			<property-class>java.lang.String</property-class>
  +		</property>
  +		<property>
  +			<property-name>var</property-name>
  +			<property-class>java.lang.String</property-class>
  +		</property>
  +		<property>
  +			<property-name>label</property-name>
  +			<property-class>java.lang.String</property-class>
  +		</property>
  +		<property>
  +			<property-name>disabled</property-name>
  +			<property-class>java.lang.Boolean</property-class>
  +		</property>
  +	</component>
  +    
  +    <component>
           <component-type>org.jboss.seam.ui.FileUpload</component-type>
           <component-class>org.jboss.seam.ui.FileUpload</component-class>
           <property>
  
  
  
  1.29      +7 -0      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.28
  retrieving revision 1.29
  diff -u -b -r1.28 -r1.29
  --- seam.taglib.xml	25 Jan 2007 13:21:58 -0000	1.28
  +++ seam.taglib.xml	28 Jan 2007 23:36:58 -0000	1.29
  @@ -146,6 +146,13 @@
           </component>
       </tag>
   	  
  +    <tag>
  +		<tag-name>selectItems</tag-name>
  +		<component>
  +			<component-type>org.jboss.seam.ui.UISelectItems</component-type>
  +		</component>
  +	</tag>
  +	  
       <function>
           <function-name>hasRole</function-name>
           <function-class>org.jboss.seam.security.SecurityFunctions</function-class>
  
  
  



More information about the jboss-cvs-commits mailing list