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

Shane Bryzak Shane_Bryzak at symantec.com
Mon Jan 22 11:19:12 EST 2007


  User: sbryzak2
  Date: 07/01/22 11:19:12

  Modified:    src/ui/META-INF    faces-config.xml seam.taglib.xml
                        taglib.tld
  Log:
  file upload tag, with _very_ basic support for multipart forms
  
  Revision  Changes    Path
  1.29      +249 -245  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.28
  retrieving revision 1.29
  diff -u -b -r1.28 -r1.29
  --- faces-config.xml	16 Jan 2007 20:52:44 -0000	1.28
  +++ faces-config.xml	22 Jan 2007 16:19:12 -0000	1.29
  @@ -472,6 +472,10 @@
           </property>
       </component>
   
  +    <component>
  +        <component-type>org.jboss.seam.ui.FileUpload</component-type>
  +        <component-class>org.jboss.seam.ui.FileUpload</component-class>
  +    </component>
   
       <validator>
           <validator-id>org.jboss.seam.ui.ModelValidator</validator-id>
  
  
  
  1.26      +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.25
  retrieving revision 1.26
  diff -u -b -r1.25 -r1.26
  --- seam.taglib.xml	16 Jan 2007 20:52:44 -0000	1.25
  +++ seam.taglib.xml	22 Jan 2007 16:19:12 -0000	1.26
  @@ -139,6 +139,13 @@
           </converter>
       </tag>
   	  
  +    <tag>
  +        <tag-name>fileUpload</tag-name>
  +        <component>
  +            <component-type>org.jboss.seam.ui.FileUpload</component-type>
  +        </component>
  +    </tag>
  +	  
       <function>
           <function-name>hasRole</function-name>
           <function-class>org.jboss.seam.security.SeamSecurityManager</function-class>
  
  
  
  1.26      +6 -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.25
  retrieving revision 1.26
  diff -u -b -r1.25 -r1.26
  --- taglib.tld	20 Dec 2006 03:35:21 -0000	1.25
  +++ taglib.tld	22 Jan 2007 16:19:12 -0000	1.26
  @@ -943,6 +943,12 @@
       </attribute>
     </tag>
     
  +  <tag>
  +    <name>fileUpload</name>
  +    <tag-class>org.jboss.seam.ui.tag.FileUploadTag</tag-class>
  +    <body-content>empty</body-content>
  +  </tag>
  +  
     <!-- Security functions -->
     
     <function>
  
  
  



More information about the jboss-cvs-commits mailing list