[jboss-cvs] jboss-seam/examples/wiki/src/etc/WEB-INF ...

Christian Bauer christian at hibernate.org
Mon Sep 24 04:23:20 EDT 2007


  User: cbauer  
  Date: 07/09/24 04:23:20

  Modified:    examples/wiki/src/etc/WEB-INF     faces-config.xml
                        urlrewrite.xml components.xml pages.xml
  Log:
  New help system and improved wiki text editor
  
  Revision  Changes    Path
  1.10      +5 -0      jboss-seam/examples/wiki/src/etc/WEB-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/examples/wiki/src/etc/WEB-INF/faces-config.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -b -r1.9 -r1.10
  --- faces-config.xml	6 Jul 2007 14:38:37 -0000	1.9
  +++ faces-config.xml	24 Sep 2007 08:23:20 -0000	1.10
  @@ -15,4 +15,9 @@
       	<component-class>org.jboss.seam.wiki.core.ui.UIWikiFormattedText</component-class>
       </component>
   
  +    <validator>
  +        <validator-id>seamTextValidator</validator-id>
  +        <validator-class>org.jboss.seam.wiki.core.ui.SeamTextValidator</validator-class>
  +    </validator>
  +
   </faces-config>
  
  
  
  1.10      +7 -0      jboss-seam/examples/wiki/src/etc/WEB-INF/urlrewrite.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: urlrewrite.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/src/etc/WEB-INF/urlrewrite.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -b -r1.9 -r1.10
  --- urlrewrite.xml	15 Sep 2007 17:06:16 -0000	1.9
  +++ urlrewrite.xml	24 Sep 2007 08:23:20 -0000	1.10
  @@ -10,6 +10,13 @@
   -->
   <urlrewrite>
   
  +    <!-- Disable the Red Hat crawler -->
  +    <rule>
  +        <from>.*</from>
  +        <condition name="remote-addr">66.187.233.202</condition>
  +        <to last="true" type="temporary-redirect">/robots.txt</to>
  +    </rule>
  +
       <!-- Mobile browser -->
       <rule>
           <from>.*</from>
  
  
  
  1.25      +5 -0      jboss-seam/examples/wiki/src/etc/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/wiki/src/etc/WEB-INF/components.xml,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -b -r1.24 -r1.25
  --- components.xml	4 Sep 2007 09:33:18 -0000	1.24
  +++ components.xml	24 Sep 2007 08:23:20 -0000	1.25
  @@ -74,6 +74,11 @@
           <property name="entityManager">#{entityManager}</property>
       </component>
   
  +    <component name="nestedSetNodeWrapperRestrictedEntityConverter" scope="CONVERSATION" precedence="20"
  +               class="org.jboss.seam.wiki.core.nestedset.NestedSetNodeWrapperEntityConverter">
  +        <property name="entityManager">#{restrictedEntityManager}</property>
  +    </component>
  +
       <!-- Login and security -->
   
       <!-- Rules is too broken
  
  
  
  1.29      +1 -0      jboss-seam/examples/wiki/src/etc/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/wiki/src/etc/WEB-INF/pages.xml,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -b -r1.28 -r1.29
  --- pages.xml	15 Sep 2007 17:06:16 -0000	1.28
  +++ pages.xml	24 Sep 2007 08:23:20 -0000	1.29
  @@ -214,6 +214,7 @@
       </page>
   
       <page view-id="/confirmRegistration.xhtml" action="#{authenticator.activate}">
  +        <param name="activationCode" value="#{authenticator.activationCode}"/>
           <navigation>
               <rule if-outcome="activated">
                   <redirect view-id="/wiki.xhtml">
  
  
  



More information about the jboss-cvs-commits mailing list