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

Shane Bryzak Shane_Bryzak at symantec.com
Fri Oct 13 00:53:46 EDT 2006


  User: sbryzak2
  Date: 06/10/13 00:53:46

  Modified:    src/ui/META-INF    faces-config.xml seam.taglib.xml
                        taglib.tld
  Log:
  Added <s:secure> JSF tag
  
  Revision  Changes    Path
  1.17      +338 -333  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.16
  retrieving revision 1.17
  diff -u -b -r1.16 -r1.17
  --- faces-config.xml	11 Oct 2006 21:00:05 -0000	1.16
  +++ faces-config.xml	13 Oct 2006 04:53:46 -0000	1.17
  @@ -330,4 +330,9 @@
           <converter-class>org.jboss.seam.ui.ConvertDateTime</converter-class>
       </converter>
   
  +    <component>
  +      <component-type>org.jboss.seam.ui.UISecure</component-type>
  +      <component-class>org.jboss.seam.ui.UISecure</component-class>
  +    </component>
  +    
   </faces-config>
  
  
  
  1.15      +113 -106  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.14
  retrieving revision 1.15
  diff -u -b -r1.14 -r1.15
  --- seam.taglib.xml	11 Oct 2006 21:00:05 -0000	1.14
  +++ seam.taglib.xml	13 Oct 2006 04:53:46 -0000	1.15
  @@ -104,4 +104,11 @@
   		</converter>
   	</tag>
   	
  +	<tag>
  +	  <tag-name>secure</tag-name>
  +	  <component>
  +	    <component-type>org.jboss.seam.ui.UISecure</component-type>
  +	  </component>
  +	</tag>
  +	
   </facelet-taglib>
  \ No newline at end of file
  
  
  
  1.17      +671 -657  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.16
  retrieving revision 1.17
  diff -u -b -r1.16 -r1.17
  --- taglib.tld	11 Oct 2006 21:21:20 -0000	1.16
  +++ taglib.tld	13 Oct 2006 04:53:46 -0000	1.17
  @@ -1104,4 +1104,18 @@
   		</attribute>
   	</tag>
   
  +	<tag>
  +	  <name>secure</name>
  +	  <tag-class>
  +	    org.jboss.seam.ui.tag.SecureTag
  +	  </tag-class>
  +	  <body-content>JSP</body-content>
  +    <attribute>
  +      <name>roles</name>
  +      <required>false</required>
  +      <rtexprvalue>false</rtexprvalue>
  +    </attribute>
  +	  
  +	</tag>
  +
   </taglib>
  \ No newline at end of file
  
  
  



More information about the jboss-cvs-commits mailing list