[jboss-cvs] jboss-seam/examples/seamspace/resources/WEB-INF ...

Shane Bryzak sbryzak at redhat.com
Thu Jan 3 02:02:28 EST 2008


  User: sbryzak2
  Date: 08/01/03 02:02:28

  Modified:    examples/seamspace/resources/WEB-INF    components.xml
                        pages.xml web.xml
  Log:
  added user manager screen
  
  Revision  Changes    Path
  1.44      +1 -2      jboss-seam/examples/seamspace/resources/WEB-INF/components.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: components.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/seamspace/resources/WEB-INF/components.xml,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -b -r1.43 -r1.44
  --- components.xml	14 Dec 2007 02:35:12 -0000	1.43
  +++ components.xml	3 Jan 2008 07:02:28 -0000	1.44
  @@ -24,7 +24,6 @@
                     concurrent-request-timeout="500"
                     conversation-id-parameter="cid"/>
       
  -    <!-- authenticate-method="#{authenticator.authenticate}"  -->
       <security:identity security-rules="#{securityRules}"/>
       
      <identity-management:jpa-identity-store name="identityStore" account-class="org.jboss.seam.example.seamspace.MemberAccount"/>    
  
  
  
  1.32      +1 -1      jboss-seam/examples/seamspace/resources/WEB-INF/pages.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: pages.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/seamspace/resources/WEB-INF/pages.xml,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -b -r1.31 -r1.32
  --- pages.xml	24 Aug 2007 04:07:25 -0000	1.31
  +++ pages.xml	3 Jan 2008 07:02:28 -0000	1.32
  @@ -60,7 +60,7 @@
   
       </page>
       
  -    <page view-id="/admin.xhtml">
  +    <page view-id="/usermanager.xhtml" action="#{userSearch.loadUsers}">
         <restrict>#{s:hasRole('admin')}</restrict>    
       </page>
       
  
  
  
  1.22      +7 -0      jboss-seam/examples/seamspace/resources/WEB-INF/web.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: web.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/seamspace/resources/WEB-INF/web.xml,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -b -r1.21 -r1.22
  --- web.xml	16 Jul 2007 06:45:55 -0000	1.21
  +++ web.xml	3 Jan 2008 07:02:28 -0000	1.22
  @@ -5,6 +5,13 @@
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
   
  +    <!-- RichFaces -->
  +    
  +    <context-param>
  +        <param-name>org.richfaces.SKIN</param-name>
  +        <param-value>blueSky</param-value>
  +    </context-param>
  +
       <!-- Seam -->
      
       <listener>
  
  
  



More information about the jboss-cvs-commits mailing list