[jboss-cvs] jboss-seam/doc/reference/en/modules ...

Gavin King gavin.king at jboss.com
Tue May 29 20:42:18 EDT 2007


  User: gavin   
  Date: 07/05/29 20:42:18

  Modified:    doc/reference/en/modules   elenhancements.xml security.xml
  Log:
  get rid of SeamFaceletViewHandler
  
  Revision  Changes    Path
  1.6       +4 -19     jboss-seam/doc/reference/en/modules/elenhancements.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: elenhancements.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/doc/reference/en/modules/elenhancements.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- elenhancements.xml	10 May 2007 19:02:04 -0000	1.5
  +++ elenhancements.xml	30 May 2007 00:42:18 -0000	1.6
  @@ -12,21 +12,6 @@
     <programlisting><![CDATA[<h:commandButton action="#{hotelBooking.bookHotel(hotel)}" value="Book Hotel"/>]]></programlisting>
   
     <section>
  -    <title>Configuration</title>
  -
  -    <para>
  -      To use this feature in Facelets, you will need to declare a special view handler, 
  -      <literal>SeamFaceletViewHandler</literal> in <literal>faces-config.xml</literal>.
  -    </para>
  -
  -    <programlisting><![CDATA[<faces-config>
  -    <application>
  -        <view-handler>org.jboss.seam.ui.facelet.SeamFaceletViewHandler</view-handler>
  -    </application>
  -</faces-config>]]></programlisting>
  -  </section>
  -
  -  <section>
       <title>Usage</title>
   
       <para>
  @@ -61,11 +46,11 @@
         You may however pass literal strings using single or double quotes:
       </para>
   
  -    <programlisting><![CDATA[<h:commandLink action=”#{printer.println( ‘Hello world!’ )}” value=”Hello”/>]]></programlisting>
  -    <programlisting><![CDATA[<h:commandLink action=’#{printer.println( “Hello again” )}’ value=’Hello’/>]]></programlisting>
  +    <programlisting><![CDATA[<h:commandLink action=”#{printer.println( ‘Hello world!’ )}” value=”Hello”/>]]></programlisting>
  +    <programlisting><![CDATA[<h:commandLink action=’#{printer.println( “Hello again” )}’ value=’Hello’/>]]></programlisting>
   
       <para>
  -      You might even want to use this notation for all your action methods, even when you don’t 
  +      You might even want to use this notation for all your action methods, even when you don’t 
         have parameters to pass. This improves readability by making it clear that the expression is 
         a method expression and not a value expression:
       </para>
  @@ -94,7 +79,7 @@
         <para>
           Normally, when a <literal>MethodExpression</literal> or <literal>MethodBinding</literal> is created,
           the parameter types are passed in by JSF. In the case of a method binding, JSF assumes that there 
  -        are no parameters to pass. With this extension, we can’t know the parameter types until after the 
  +        are no parameters to pass. With this extension, we can’t know the parameter types until after the 
           expression has been evaluated. This has two minor consequences:
         </para>
         
  
  
  
  1.61      +0 -5      jboss-seam/doc/reference/en/modules/security.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: security.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/doc/reference/en/modules/security.xml,v
  retrieving revision 1.60
  retrieving revision 1.61
  diff -u -b -r1.60 -r1.61
  --- security.xml	27 May 2007 10:41:46 -0000	1.60
  +++ security.xml	30 May 2007 00:42:18 -0000	1.61
  @@ -74,13 +74,8 @@
       
       <para>
         For web-based security, <literal>jboss-seam-ui.jar</literal> must also be included in the application's war file.
  -      Also, to make use of the security EL functions, <literal>SeamFaceletViewHandler</literal> must be used.  Configure
  -      it in <literal>faces-config.xml</literal> like this:
       </para>
       
  -    <programlisting><![CDATA[<application>
  -    <view-handler>org.jboss.seam.ui.facelet.SeamFaceletViewHandler</view-handler>
  -</application>]]></programlisting>
           
     </sect1>
     
  
  
  



More information about the jboss-cvs-commits mailing list