mromy 2005/11/25 18:14:17 CET
Modified files:
core/src/webapp/html/startup howto_cluster.html
Log:
- fix for transaction setup howto
Revision Changes Path
1.10 +3 -3 jahia/core/src/webapp/html/startup/howto_cluster.html
http://jahia.mine.nu:8080/cgi-bin/cvsweb.cgi/jahia/core/src/webapp/html/startup/howto_cluster.html.diff?r1=1.9&r2=1.10&f=h
Index: howto_cluster.html
===================================================================
RCS file: /cvs/jahia/core/src/webapp/html/startup/howto_cluster.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- howto_cluster.html 25 Nov 2005 15:59:55 -0000 1.9
+++ howto_cluster.html 25 Nov 2005 17:14:16 -0000 1.10
@@ -301,17 +301,17 @@
type="javax.transaction.UserTransaction"
factory="org.objectweb.jotm.UserTransactionFactory"
jotm.timeout="60"/></pre>
- Also change this line :<br />
+ Also change the red line in this part (keep the
other lines unchanged) :<br />
<br />
<pre class="code"><Resource
name="jdbc/jetspeed" auth="Container"
- factory="org.apache.commons.dbcp.BasicDataSourceFactory"
+ <span
class="red">factory="org.apache.commons.dbcp.BasicDataSourceFactory"</span>
type="javax.sql.DataSource" username="jahia"
password="jahia"
driverClassName="org.postgresql.Driver"
url="jdbc:postgresql:jahia"
maxActive="100" maxIdle="30"
maxWait="10000"/></pre>
to : <br />
<br />
<pre class="code"><Resource
name="jdbc/jetspeed" auth="Container"
- factory="org.objectweb.jndi.DataSourceFactory"
+ <span
class="red">factory="org.objectweb.jndi.DataSourceFactory"</span>
type="javax.sql.DataSource" username="jahia"
password="jahia"
driverClassName="org.postgresql.Driver"
url="jdbc:postgresql:jahia"
maxActive="100" maxIdle="30"
maxWait="10000"/></pre>