[prev in list] [next in list] [prev in thread] [next in thread] 

List:       jboss-cvs-commits
Subject:    [jboss-cvs] jboss-seam/doc/reference/en/modules   ...
From:       Gavin King <gavin.king () jboss ! com>
Date:       2005-09-30 22:49:15
Message-ID: E1ELTgp-0001mB-QH () committer01 ! frg ! pub ! inap ! atl ! jboss ! com
[Download RAW message or body]

  User: gavin   
  Date: 05/09/30 18:49:15

  Modified:    doc/reference/en/modules   components.xml configuration.xml
  Log:
  core.init
  
  Revision  Changes    Path
  1.6       +3 -3      jboss-seam/doc/reference/en/modules/components.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: components.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/doc/reference/en/modules/components.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- components.xml	17 Sep 2005 23:20:16 -0000	1.5
  +++ components.xml	30 Sep 2005 22:49:15 -0000	1.6
  @@ -209,7 +209,7 @@
               <literal>seam.properties</literal> install and configure two Seam \
components:  </para>
           
  -        <programlisting><![CDATA[org.jboss.seam.init.managedPersistenceContexts \
bookingDatabase, userDatabase  +        \
<programlisting><![CDATA[org.jboss.seam.core.init.managedPersistenceContexts \
bookingDatabase, userDatabase  bookingDatabase.persistenceUnitName \
java:/comp/emf/bookingPersistence  userDatabase.persistenceUnitName \
java:/comp/emf/userPersistence]]></programlisting>  
  @@ -225,7 +225,7 @@
                       <para>
                           Manager component for a conversation scoped managed \
                <literal>EntityManager</literal>
                           with an extended persistence context. Installed via 
  -                        \
<literal>org.jboss.seam.init.managedPersistenceContexts</literal>.  +                 \
<literal>org.jboss.seam.core.init.managedPersistenceContexts</literal>.  </para>
                       <itemizedlist>
                           <listitem>
  @@ -242,7 +242,7 @@
                   <listitem>
                       <para>
                           Manager component for a conversation scoped managed \
                Hibernate <literal>Session</literal>.  
  -                        Installed via \
<literal>org.jboss.seam.init.managedSessions</literal>.  +                        \
Installed via <literal>org.jboss.seam.core.init.managedSessions</literal>.  </para>
                       <itemizedlist>
                           <listitem>
  
  
  
  1.11      +9 -9      jboss-seam/doc/reference/en/modules/configuration.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: configuration.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/doc/reference/en/modules/configuration.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -b -r1.10 -r1.11
  --- configuration.xml	18 Sep 2005 05:18:17 -0000	1.10
  +++ configuration.xml	30 Sep 2005 22:49:15 -0000	1.11
  @@ -71,7 +71,7 @@
               will do). At startup, Seam will scan any archives with
               <literal>seam.properties</literal> files for seam components. If that \
                doesn't
               work for you, you can also add components by listing them explicitly \
                in
  -            the configuration property named \
<literal>org.jboss.seam.init.componentClasses</literal>.  +            the \
configuration property named \
<literal>org.jboss.seam.core.init.componentClasses</literal>.  </para>
           
           <para>
  @@ -112,14 +112,14 @@
               line to <literal>seam.properties</literal>:
           </para>
           
  -        <programlisting><![CDATA[org.jboss.seam.init.componentClasses \
org.jboss.seam.core.Ejb]]></programlisting>  +        \
<programlisting><![CDATA[org.jboss.seam.core.init.componentClasses \
org.jboss.seam.core.Ejb]]></programlisting>  
           <para>
               Or, alternatively, add the following entry to \
<literal>web.xml</literal>:  </para>
           
           <programlisting><![CDATA[<context-param>
  -    <param-name>org.jboss.seam.init.componentClasses</param-name>
  +    <param-name>org.jboss.seam.core.init.componentClasses</param-name>
       <param-value>org.jboss.seam.core.Ejb</param-value>
   </context-param>]]></programlisting>
   
  @@ -270,7 +270,7 @@
               <literal>seam.properties</literal>, we can write:
           </para>
   
  -        <programlisting><![CDATA[org.jboss.seam.init.managedPersistenceContexts \
bookingDatabase  +        \
<programlisting><![CDATA[org.jboss.seam.core.init.managedPersistenceContexts \
bookingDatabase  bookingDatabase.persistenceUnitName \
java:/EntityManagerFactories/bookingData]]></programlisting>  
           <para>
  @@ -278,7 +278,7 @@
           </para>
           
           <programlisting><![CDATA[<context-param>
  -    <param-name>org.jboss.seam.init.managedPersistenceContexts</param-name>
  +    <param-name>org.jboss.seam.core.init.managedPersistenceContexts</param-name>
       <param-value>bookingDatabase</param-value>
   </context-param>
   
  @@ -348,8 +348,8 @@
               Let's show just the properties file this time:
           </para>
           
  -        <programlisting><![CDATA[org.jboss.seam.init.componentClasses \
                org.jboss.seam.core.Hibernate
  -org.jboss.seam.init.managedSessions bookingDatabase
  +        <programlisting><![CDATA[org.jboss.seam.core.init.componentClasses \
org.jboss.seam.core.Hibernate  +org.jboss.seam.core.init.managedSessions \
bookingDatabase  bookingDatabase.sessionFactoryName \
java:/bookingSessionFactory]]></programlisting>  
           <para>
  @@ -401,8 +401,8 @@
               bootstraps the microcontainer. As before, we probably want to use a \
Seam managed session.  </para>
   
  -        <programlisting><![CDATA[org.jboss.seam.init.componentClasses \
                org.jboss.seam.core.Microcontainer
  -org.jboss.seam.init.managedSessions bookingDatabase
  +        <programlisting><![CDATA[org.jboss.seam.core.init.componentClasses \
org.jboss.seam.core.Microcontainer  +org.jboss.seam.core.init.managedSessions \
bookingDatabase  bookingDatabase.sessionFactoryName \
java:/bookingSessionFactory]]></programlisting>  
           <para>
  
  
  


-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
jboss-cvs-commits mailing list
jboss-cvs-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-cvs-commits


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic