Author: manaRH
Date: 2012-06-14 08:55:27 -0400 (Thu, 14 Jun 2012)
New Revision: 14915
Modified:
branches/enterprise/WFK-2_0/examples-ee6/blog/blog-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/booking/booking-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/contactlist/contactlist-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/excel/excel-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/groovybooking/groovybooking-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/itext/itext-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/jpa/jpa-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/mail/mail-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/messages/messages-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/nestedbooking/nestedbooking-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/openid/openid-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/quartz/quartz-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/registration/registration-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/remoting/chatroom/chatroom-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/remoting/gwt/gwt-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/remoting/helloworld/helloworld-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/restbay/restbay-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/seambay/seambay-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/seamdiscs/seamdiscs-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/seampay/seampay-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/seamspace/seamspace-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/tasks/tasks-tests/src/test/resources/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/tasks/tasks-web/src/main/webapp/WEB-INF/components.xml
branches/enterprise/WFK-2_0/examples-ee6/ui/ui-web/src/main/webapp/WEB-INF/components.xml
Log:
bz #831593 replaced all tokens (jndiPattern,distributable,loadPersistenceUnits) from @ to
${} notation
Modified:
branches/enterprise/WFK-2_0/examples-ee6/blog/blog-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/blog/blog-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/blog/blog-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -16,7 +16,7 @@
http://jboss.org/schema/seam/web
http://jboss.org/schema/seam/web-2.3.xsd
http://jboss.org/schema/seam/components
http://jboss.org/schema/seam/components-2.3.xsd">
- <core:init debug="true" jndi-pattern="@jndiPattern@"/>
+ <core:init debug="true" jndi-pattern="${jndiPattern}"/>
<web:rewrite-filter view-mapping="/seam/*"/>
Modified:
branches/enterprise/WFK-2_0/examples-ee6/booking/booking-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/booking/booking-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/booking/booking-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -10,7 +10,7 @@
http://jboss.org/schema/seam/security
http://jboss.org/schema/seam/security-2.3.xsd
http://jboss.org/schema/seam/components
http://jboss.org/schema/seam/components-2.3.xsd">
- <core:init jndi-pattern="@jndiPattern@" debug="true"
distributable="@distributable@"/>
+ <core:init jndi-pattern="${jndiPattern}" debug="true"
distributable="${distributable}"/>
<core:manager conversation-timeout="120000"
concurrent-request-timeout="500"
Modified:
branches/enterprise/WFK-2_0/examples-ee6/contactlist/contactlist-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/contactlist/contactlist-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/contactlist/contactlist-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -13,7 +13,7 @@
<persistence:managed-persistence-context name="entityManager"
persistence-unit-jndi-name="java:/contactlistEntityManagerFactory"/>
- <core:init jndi-pattern="@jndiPattern@"/>
+ <core:init jndi-pattern="${jndiPattern}"/>
<factory name="contact" value="#{contactHome.instance}"/>
<fwk:entity-home name="contactHome"
Modified:
branches/enterprise/WFK-2_0/examples-ee6/excel/excel-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/excel/excel-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/excel/excel-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -11,7 +11,7 @@
http://jboss.org/schema/seam/components
http://jboss.org/schema/seam/components-2.3.xsd">
- <core:init debug="true" jndi-pattern="@jndiPattern@" />
+ <core:init debug="true" jndi-pattern="${jndiPattern}" />
<document:document-store
use-extensions="true"></document:document-store>
Modified:
branches/enterprise/WFK-2_0/examples-ee6/groovybooking/groovybooking-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/groovybooking/groovybooking-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/groovybooking/groovybooking-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -14,14 +14,14 @@
http://jboss.org/schema/seam/mail
http://jboss.org/schema/seam/mail-2.3.xsd
http://jboss.org/schema/seam/components
http://jboss.org/schema/seam/components-2.3.xsd">
- <core:init debug="true" jndi-pattern="@jndiPattern@"/>
+ <core:init debug="true" jndi-pattern="${jndiPattern}"/>
<core:manager concurrent-request-timeout="500"
conversation-timeout="120000"
conversation-id-parameter="cid"/>
<persistence:entity-manager-factory name="groovyEntityManagerFactory"
- persistence-unit-name="groovy"
installed="@loadPersistenceUnits@"/>
+ persistence-unit-name="groovy"
installed="${loadPersistenceUnits}"/>
<!-- If Seam loads the persistence unit (JBoss 4.x), the EntityManagerFactory will
be resolved from #{groovyEntityManagerFactory}.
On JBoss AS 5, the EntityManagerFactory is retrieved from JNDI (the binding
occurs during application deployment). -->
Modified:
branches/enterprise/WFK-2_0/examples-ee6/itext/itext-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/itext/itext-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/itext/itext-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -20,5 +20,5 @@
key-password="keypass"
key-alias="pdfKey" />
- <core:init debug="true" jndi-pattern="@jndiPattern@" />
+ <core:init debug="true" jndi-pattern="${jndiPattern}" />
</components>
Modified:
branches/enterprise/WFK-2_0/examples-ee6/jpa/jpa-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/jpa/jpa-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/jpa/jpa-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -18,7 +18,7 @@
<transaction:entity-transaction entity-manager="#{em}"/>
- <persistence:entity-manager-factory name="bookingDatabase"
installed="@loadPersistenceUnits@"/>
+ <persistence:entity-manager-factory name="bookingDatabase"
installed="${loadPersistenceUnits}"/>
<!-- If Seam loads the persistence unit (JBoss 4.x), the EntityManagerFactory will
be resolved from #{bookingDatabase}.
On JBoss AS 5, the EntityManagerFactory is retrieved from JNDI (the binding
occurs during application deployment). -->
Modified:
branches/enterprise/WFK-2_0/examples-ee6/mail/mail-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/mail/mail-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/mail/mail-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -10,7 +10,7 @@
http://jboss.org/schema/seam/components
http://jboss.org/schema/seam/components-2.3.xsd">
- <core:init debug="true" jndi-pattern="@jndiPattern@" />
+ <core:init debug="true" jndi-pattern="${jndiPattern}" />
<!-- If you need to alter the SMTP gateway, comment out this mail-session,
-->
<!--<mail:mail-session host="localhost" port="2525" />
-->
Modified:
branches/enterprise/WFK-2_0/examples-ee6/messages/messages-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/messages/messages-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/messages/messages-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://jboss.org/schema/seam/components
http://jboss.org/schema/seam/components-2.3.xsd">
<component name="org.jboss.seam.core.init">
- <property name="jndiPattern">@jndiPattern@</property>
+ <property name="jndiPattern">${jndiPattern}</property>
</component>
<!-- This is required for JBoss AS7 due these EJB components are bound to
jboss-seam module -->
Modified:
branches/enterprise/WFK-2_0/examples-ee6/nestedbooking/nestedbooking-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/nestedbooking/nestedbooking-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/nestedbooking/nestedbooking-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -10,7 +10,7 @@
http://jboss.org/schema/seam/security
http://jboss.org/schema/seam/security-2.3.xsd
http://jboss.org/schema/seam/components
http://jboss.org/schema/seam/components-2.3.xsd">
- <core:init jndi-pattern="@jndiPattern@" debug="true"/>
+ <core:init jndi-pattern="${jndiPattern}" debug="true"/>
<core:manager conversation-timeout="120000"
concurrent-request-timeout="500"
Modified:
branches/enterprise/WFK-2_0/examples-ee6/openid/openid-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/openid/openid-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/openid/openid-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -15,7 +15,7 @@
http://jboss.org/schema/seam/security
http://jboss.org/schema/seam/security-2.3.xsd
http://jboss.org/schema/seam/components
http://jboss.org/schema/seam/components-2.3.xsd">
- <core:init jndi-pattern="@jndiPattern@" debug="true" />
+ <core:init jndi-pattern="${jndiPattern}" debug="true" />
<core:manager conversation-timeout="1200000"
concurrent-request-timeout="50000" conversation-id-parameter="cid"
/>
Modified:
branches/enterprise/WFK-2_0/examples-ee6/quartz/quartz-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/quartz/quartz-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/quartz/quartz-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -43,7 +43,7 @@
<!-- Install the QuartzDispatcher -->
<async:quartz-dispatcher/>
- <core:init debug="true" jndi-pattern="@jndiPattern@" />
+ <core:init debug="true" jndi-pattern="${jndiPattern}" />
<component class="org.jboss.seam.transaction.EjbSynchronizations"
jndi-name="java:app/jboss-seam/EjbSynchronizations"/>
Modified:
branches/enterprise/WFK-2_0/examples-ee6/registration/registration-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/registration/registration-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/registration/registration-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -6,6 +6,6 @@
"http://jboss.org/schema/seam/core
http://jboss.org/schema/seam/core-2.3.xsd
http://jboss.org/schema/seam/components
http://jboss.org/schema/seam/components-2.3.xsd">
- <core:init jndi-pattern="@jndiPattern@"/>
+ <core:init jndi-pattern="${jndiPattern}"/>
</components>
Modified:
branches/enterprise/WFK-2_0/examples-ee6/remoting/chatroom/chatroom-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/remoting/chatroom/chatroom-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/remoting/chatroom/chatroom-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -2,7 +2,7 @@
xmlns:cache="http://jboss.org/schema/seam/cache">
<component name="org.jboss.seam.core.init">
- <property name="jndiPattern">@jndiPattern@</property>
+ <property name="jndiPattern">${jndiPattern}</property>
</component>
<component name="topicPublisher"
class="org.jboss.seam.jms.ManagedTopicPublisher">
Modified:
branches/enterprise/WFK-2_0/examples-ee6/remoting/gwt/gwt-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/remoting/gwt/gwt-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/remoting/gwt/gwt-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -8,6 +8,6 @@
http://jboss.org/schema/seam/components
http://jboss.org/schema/seam/components-2.3.xsd
http://jboss.org/schema/seam/remoting
http://jboss.org/schema/seam/remoting-2.3.xsd">
- <core:init jndi-pattern="@jndiPattern@" debug="true"/>
+ <core:init jndi-pattern="${jndiPattern}" debug="true"/>
</components>
Modified:
branches/enterprise/WFK-2_0/examples-ee6/remoting/helloworld/helloworld-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/remoting/helloworld/helloworld-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/remoting/helloworld/helloworld-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -1,7 +1,7 @@
<components
xmlns="http://jboss.org/schema/seam/components">
<component name="org.jboss.seam.core.init">
- <property name="jndiPattern">@jndiPattern@</property>
+ <property name="jndiPattern">${jndiPattern}</property>
</component>
<component name="org.jboss.seam.core.manager">
Modified:
branches/enterprise/WFK-2_0/examples-ee6/restbay/restbay-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/restbay/restbay-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/restbay/restbay-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -22,7 +22,7 @@
http://jboss.org/schema/seam/transaction
http://jboss.org/schema/seam/transaction-2.3.xsd
http://jboss.org/schema/seam/drools
http://jboss.org/schema/seam/drools-2.3.xsd">
- <core:init jndi-pattern="@jndiPattern@" debug="true"/>
+ <core:init jndi-pattern="${jndiPattern}" debug="true"/>
<core:manager conversation-timeout="120000"
concurrent-request-timeout="500"
Modified:
branches/enterprise/WFK-2_0/examples-ee6/seambay/seambay-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/seambay/seambay-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/seambay/seambay-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -16,7 +16,7 @@
http://jboss.org/schema/seam/web
http://jboss.org/schema/seam/web-2.3.xsd
http://jboss.org/schema/seam/drools
http://jboss.org/schema/seam/drools-2.3.xsd">
- <core:init jndi-pattern="@jndiPattern@" debug="true"/>
+ <core:init jndi-pattern="${jndiPattern}" debug="true"/>
<core:manager conversation-timeout="120000"
concurrent-request-timeout="500"
Modified:
branches/enterprise/WFK-2_0/examples-ee6/seamdiscs/seamdiscs-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/seamdiscs/seamdiscs-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/seamdiscs/seamdiscs-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -13,7 +13,7 @@
http://jboss.org/schema/seam/web
http://jboss.org/schema/seam/web-2.3.xsd
http://jboss.org/schema/seam/framework
http://jboss.org/schema/seam/framework-2.3.xsd">
- <core:init debug="false" jndi-pattern="@jndiPattern@" />
+ <core:init debug="false" jndi-pattern="${jndiPattern}" />
<core:manager concurrent-request-timeout="500"
conversation-timeout="120000"
Modified:
branches/enterprise/WFK-2_0/examples-ee6/seampay/seampay-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/seampay/seampay-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/seampay/seampay-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -41,7 +41,7 @@
<async:timer-service-dispatcher />
<component class="org.jboss.seam.async.ThreadPoolDispatcher"
precedence="40" />
- <core:init debug="true" jndi-pattern="@jndiPattern@" />
+ <core:init debug="true" jndi-pattern="${jndiPattern}" />
<component class="org.jboss.seam.transaction.EjbSynchronizations"
jndi-name="java:app/jboss-seam/EjbSynchronizations"/>
Modified:
branches/enterprise/WFK-2_0/examples-ee6/seamspace/seamspace-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/seamspace/seamspace-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/seamspace/seamspace-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -14,7 +14,7 @@
http://jboss.org/schema/seam/web
http://jboss.org/schema/seam/web-2.3.xsd
http://jboss.org/schema/seam/drools
http://jboss.org/schema/seam/drools-2.3.xsd">
- <core:init jndi-pattern="@jndiPattern@" debug="false"/>
+ <core:init jndi-pattern="${jndiPattern}" debug="false"/>
<core:manager conversation-timeout="120000"
concurrent-request-timeout="500"
Modified:
branches/enterprise/WFK-2_0/examples-ee6/tasks/tasks-tests/src/test/resources/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/tasks/tasks-tests/src/test/resources/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/tasks/tasks-tests/src/test/resources/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -14,7 +14,7 @@
http://jboss.org/schema/seam/web http://jboss.org/schema/seam/web-2.3.xsd
http://jboss.org/schema/seam/resteasy
http://jboss.org/schema/seam/resteasy-2.3.xsd">
- <core:init jndi-pattern="@jndiPattern@" debug="false" />
+ <core:init jndi-pattern="${jndiPattern}" debug="false" />
<core:manager conversation-timeout="120000"
concurrent-request-timeout="500" conversation-id-parameter="cid"
/>
Modified:
branches/enterprise/WFK-2_0/examples-ee6/tasks/tasks-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/tasks/tasks-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/tasks/tasks-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -14,7 +14,7 @@
http://jboss.org/schema/seam/web http://jboss.org/schema/seam/web-2.3.xsd
http://jboss.org/schema/seam/resteasy
http://jboss.org/schema/seam/resteasy-2.3.xsd">
- <core:init jndi-pattern="@jndiPattern@" debug="false" />
+ <core:init jndi-pattern="${jndiPattern}" debug="false" />
<core:manager conversation-timeout="120000"
concurrent-request-timeout="500" conversation-id-parameter="cid"
/>
Modified:
branches/enterprise/WFK-2_0/examples-ee6/ui/ui-web/src/main/webapp/WEB-INF/components.xml
===================================================================
---
branches/enterprise/WFK-2_0/examples-ee6/ui/ui-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:37:12 UTC (rev 14914)
+++
branches/enterprise/WFK-2_0/examples-ee6/ui/ui-web/src/main/webapp/WEB-INF/components.xml 2012-06-14
12:55:27 UTC (rev 14915)
@@ -10,7 +10,7 @@
http://jboss.org/schema/seam/persistence
http://jboss.org/schema/seam/persistence-2.3.xsd
http://jboss.org/schema/seam/framework
http://jboss.org/schema/seam/framework-2.3.xsd">
- <core:init jndi-pattern="@jndiPattern@" debug="true"/>
+ <core:init jndi-pattern="${jndiPattern}" debug="true"/>
<core:manager conversation-timeout="120000"/>