Seam SVN: r10090 - trunk/src/main/org/jboss/seam/security/permission.
by seam-commits@lists.jboss.org
Author: norman.richards(a)jboss.com
Date: 2009-02-25 12:38:16 -0500 (Wed, 25 Feb 2009)
New Revision: 10090
Modified:
trunk/src/main/org/jboss/seam/security/permission/ClassIdentifierStrategy.java
Log:
JBSEAM-3793
Modified: trunk/src/main/org/jboss/seam/security/permission/ClassIdentifierStrategy.java
===================================================================
--- trunk/src/main/org/jboss/seam/security/permission/ClassIdentifierStrategy.java 2009-02-25 17:27:17 UTC (rev 10089)
+++ trunk/src/main/org/jboss/seam/security/permission/ClassIdentifierStrategy.java 2009-02-25 17:38:16 UTC (rev 10090)
@@ -39,7 +39,7 @@
if (cls.isAnnotationPresent(Identifier.class))
{
Identifier identifier = (Identifier) cls.getAnnotation(Identifier.class);
- if (identifier.name() != null && !"".equals(name.trim()))
+ if (identifier.name() != null && !"".equals(identifier.name().trim()))
{
name = identifier.name();
}
15 years, 10 months
Seam SVN: r10089 - in trunk/examples/itext: view and 1 other directory.
by seam-commits@lists.jboss.org
Author: norman.richards(a)jboss.com
Date: 2009-02-25 12:27:17 -0500 (Wed, 25 Feb 2009)
New Revision: 10089
Modified:
trunk/examples/itext/build.xml
trunk/examples/itext/view/chart.xhtml
Log:
JBSEAM-3750
Modified: trunk/examples/itext/build.xml
===================================================================
--- trunk/examples/itext/build.xml 2009-02-25 17:20:56 UTC (rev 10088)
+++ trunk/examples/itext/build.xml 2009-02-25 17:27:17 UTC (rev 10089)
@@ -27,7 +27,11 @@
<path id="build.classpath.extras">
<fileset refid="seam.pdf.jar" />
</path>
-
+ <!-- for itext cjk test
+ <fileset id="war.lib.extras" dir="lib">
+ <include name="**/*.jar" />
+ </fileset>
+ -->
</project>
Modified: trunk/examples/itext/view/chart.xhtml
===================================================================
--- trunk/examples/itext/view/chart.xhtml 2009-02-25 17:20:56 UTC (rev 10088)
+++ trunk/examples/itext/view/chart.xhtml 2009-02-25 17:27:17 UTC (rev 10089)
@@ -10,6 +10,11 @@
<p:color id="foo" color="#0ff00f"/>
<p:color id="bar" color="#ff00ff" color2="#00ff00" point="50 50" point2="300 300"/>
+ <p:timeserieschart dataset="#{chartseries.dataset}" title="Time Series Chart"
+ domainAxisLabel="Domain" rangeAxisLabel="Range" foo="bar">
+ <p:series key="foo" />
+ </p:timeserieschart>
+
<p:piechart title="Pie Chart" width="500" height="500" legend="true"
borderBackgroundPaint="#ffffff" borderStroke="dot1" borderPaint="blue" borderVisible="false"
plotBackgroundPaint="#ffffff" plotBackgroundAlpha="1" plotForegroundAlpha="1"
15 years, 10 months
Seam SVN: r10088 - trunk/src/main/org/jboss/seam/core.
by seam-commits@lists.jboss.org
Author: norman.richards(a)jboss.com
Date: 2009-02-25 12:20:56 -0500 (Wed, 25 Feb 2009)
New Revision: 10088
Modified:
trunk/src/main/org/jboss/seam/core/Validators.java
Log:
JBSEAM-3790
Modified: trunk/src/main/org/jboss/seam/core/Validators.java
===================================================================
--- trunk/src/main/org/jboss/seam/core/Validators.java 2009-02-25 13:48:12 UTC (rev 10087)
+++ trunk/src/main/org/jboss/seam/core/Validators.java 2009-02-25 17:20:56 UTC (rev 10088)
@@ -57,6 +57,10 @@
@Override
public boolean equals(Object other)
{
+ if (other == null || !(other instanceof Key)) {
+ return false;
+ }
+
Key key = (Key) other;
return key.validatableClass.equals(validatableClass) && key.locale.equals(locale);
}
15 years, 10 months
Seam SVN: r10087 - in trunk/src/test/ftest: src/main/org/jboss/seam/example/common/test/seampay/selenium and 1 other directory.
by seam-commits@lists.jboss.org
Author: jharting
Date: 2009-02-25 08:48:12 -0500 (Wed, 25 Feb 2009)
New Revision: 10087
Modified:
trunk/src/test/ftest/examples/seamspace/src/org/jboss/seam/example/seamspace/test/selenium/SeleniumSeamSpaceTest.java
trunk/src/test/ftest/src/main/org/jboss/seam/example/common/test/seampay/selenium/PaymentTest.java
Log:
JBSEAM-3690 browser compatibility fixes
Modified: trunk/src/test/ftest/examples/seamspace/src/org/jboss/seam/example/seamspace/test/selenium/SeleniumSeamSpaceTest.java
===================================================================
--- trunk/src/test/ftest/examples/seamspace/src/org/jboss/seam/example/seamspace/test/selenium/SeleniumSeamSpaceTest.java 2009-02-24 23:25:13 UTC (rev 10086)
+++ trunk/src/test/ftest/examples/seamspace/src/org/jboss/seam/example/seamspace/test/selenium/SeleniumSeamSpaceTest.java 2009-02-25 13:48:12 UTC (rev 10087)
@@ -55,7 +55,7 @@
public static final String USER_CANCEL = "id=user:cancel";
public static final String USER_TABLE_ROW_BY_NAME = "xpath=//table[@id=\"threads\"]/tbody/tr[normalize-space(./td[1]/text()) = \"{0}\"]";
// these locators can only be used catenated with USER_TABLE_ROW_BY_NAME
- public static final String USER_TABLE_ROLES = "/td[2]/text()";
+ public static final String USER_TABLE_ROLES = "/td[2]";
public static final String USER_TABLE_CHECKBOX_CHECKED = "/td[3]/div[@class=\"checkmark\"]";
public static final String USER_TABLE_CHECKBOX_UNCHECKED = "/td[3]/div[@class=\"cross\"]";
public static final String USER_TABLE_DELETE = "//a[contains(@id, \"delete\")]";
@@ -70,7 +70,7 @@
public static final String ROLE_CANCEL = "id=role:cancel";
public static final String ROLE_TABLE_ROW_BY_NAME = "xpath=//table[@id=\"threads\"]/tbody/tr[normalize-space(./td[1]/text()) = \"{0}\"]";
// these locators can only be used catenated with ROLE_TABLE_ROW_BY_NAME
- public static final String ROLE_TABLE_ROLES = "/td[2]/text()";
+ public static final String ROLE_TABLE_ROLES = "/td[2]";
public static final String ROLE_TABLE_DELETE = "//a[contains(@id, \"delete\")]";
public static final String ROLE_TABLE_EDIT = "//a[contains(@id, \"edit\")]";
Modified: trunk/src/test/ftest/src/main/org/jboss/seam/example/common/test/seampay/selenium/PaymentTest.java
===================================================================
--- trunk/src/test/ftest/src/main/org/jboss/seam/example/common/test/seampay/selenium/PaymentTest.java 2009-02-24 23:25:13 UTC (rev 10086)
+++ trunk/src/test/ftest/src/main/org/jboss/seam/example/common/test/seampay/selenium/PaymentTest.java 2009-02-25 13:48:12 UTC (rev 10087)
@@ -27,6 +27,8 @@
import java.text.MessageFormat;
import java.text.NumberFormat;
import java.text.ParseException;
+import java.util.Locale;
+
import org.jboss.seam.example.common.test.selenium.SeamSeleniumTest;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
@@ -124,7 +126,8 @@
protected Double parseBalance(String text) throws ParseException
{
- String number = text.replaceAll("\\$", "").trim();
- return (Double) nf.parse(number);
+ // dirty but can hardly be parsed nicer
+ String number = text.replaceAll("\\$", new String()).replaceAll(" ", new String()).trim();
+ return nf.parse(number).doubleValue();
}
}
15 years, 10 months
Seam SVN: r10085 - trunk/doc/Seam_Reference_Guide/it-IT.
by seam-commits@lists.jboss.org
Author: nico.ben
Date: 2009-02-24 16:05:47 -0500 (Tue, 24 Feb 2009)
New Revision: 10085
Modified:
trunk/doc/Seam_Reference_Guide/it-IT/Components.po
Log:
JBSEAM-3767: Italian translation of Seam guide
Modified: trunk/doc/Seam_Reference_Guide/it-IT/Components.po
===================================================================
--- trunk/doc/Seam_Reference_Guide/it-IT/Components.po 2009-02-24 20:14:20 UTC (rev 10084)
+++ trunk/doc/Seam_Reference_Guide/it-IT/Components.po 2009-02-24 21:05:47 UTC (rev 10085)
@@ -6,7 +6,7 @@
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2008-11-06 00:22+0000\n"
-"PO-Revision-Date: 2009-02-22 11:13+0100\n"
+"PO-Revision-Date: 2009-02-24 22:05+0100\n"
"Last-Translator: Nicola Benaglia <nico.benaz(a)gmail.com>\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
@@ -526,7 +526,7 @@
#: Components.xml:484
#, no-c-format
msgid "The next group of components allow control of conversations by the application or user interface."
-msgstr ""
+msgstr "Il prossimo gruppo di componenti consente il controllo delle conversazioni da parte dell'applicazione o dell'interfaccia utente."
#. Tag: literal
#: Components.xml:491
@@ -538,7 +538,7 @@
#: Components.xml:493
#, no-c-format
msgid "API for application control of attributes of the current Seam conversation."
-msgstr ""
+msgstr "API per il controllo dell'applicazione degli attributi della conversazione di Seam."
#. Tag: para
#: Components.xml:498
@@ -581,49 +581,49 @@
#: Components.xml:538
#, no-c-format
msgid "<literal>setViewId(String outcome)</literal> — sets the view id to be used when switching back to the current conversation from the conversation switcher, conversation list, or breadcrumbs."
-msgstr ""
+msgstr "<literal>setViewId(String outcome)</literal> — imposta l'id della vista da usare quando si torna alla conversazione corrente dallo switcher di conversazione, dalla lista di conversazioni o dai breadcrumbs."
#. Tag: para
#: Components.xml:545
#, no-c-format
msgid "<literal>setDescription(String description)</literal> — sets the description of the current conversation to be displayed in the conversation switcher, conversation list, or breadcrumbs."
-msgstr ""
+msgstr "<literal>setDescription(String description)</literal> — imposta la descrizione della conversazione corrente da mostrare nello switcher di conversazione, nella lista di conversazioni o nel breadcrumbs."
#. Tag: para
#: Components.xml:552
#, no-c-format
msgid "<literal>redirect()</literal> — redirect to the last well-defined view id for this conversation (useful after login challenges)."
-msgstr ""
+msgstr "<literal>redirect()</literal> — redirige all'ultimo id di vista ben-definito per questa conversazione (utile dopo i login)."
#. Tag: para
#: Components.xml:558
#, no-c-format
msgid "<literal>leave()</literal> — exit the scope of this conversation, without actually ending the conversation."
-msgstr ""
+msgstr "<literal>leave()</literal> — esce dallo scope di questa conversazione, senza terminare la conversazione."
#. Tag: para
#: Components.xml:564
#, no-c-format
msgid "<literal>begin()</literal> — begin a long-running conversation (equivalent to <literal>@Begin</literal>)."
-msgstr ""
+msgstr "<literal>begin()</literal> — inizia una conversazione long-running (equivalente a <literal>@Begin</literal>)."
#. Tag: para
#: Components.xml:570
#, no-c-format
msgid "<literal>beginPageflow(String pageflowName)</literal> — begin a long-running conversation with a pageflow (equivalent to <literal>@Begin(pageflow=\"...\")</literal>)."
-msgstr ""
+msgstr "<literal>beginPageflow(String pageflowName)</literal> — inizia una conversazione long-running con un pageflow (equivalente a <literal>@Begin(pageflow=\"...\")</literal>)."
#. Tag: para
#: Components.xml:577
#, no-c-format
msgid "<literal>end()</literal> — end a long-running conversation (equivalent to <literal>@End</literal>)."
-msgstr ""
+msgstr "<literal>end()</literal> — termina una conversazione long-running (equivalente a <literal>@End</literal>)."
#. Tag: para
#: Components.xml:583
#, no-c-format
msgid "<literal>pop()</literal> — pop the conversation stack, returning to the parent conversation."
-msgstr ""
+msgstr "<literal>pop()</literal> — estrae dallo stack di conversazione, restituendo la conversazione padre."
#. Tag: para
#: Components.xml:589
@@ -647,7 +647,7 @@
#: Components.xml:606
#, no-c-format
msgid "Manager component for the conversation list."
-msgstr ""
+msgstr "Componente gestore per la lista delle conversazioni."
#. Tag: literal
#: Components.xml:612
@@ -659,7 +659,7 @@
#: Components.xml:614
#, no-c-format
msgid "Manager component for the conversation stack (breadcrumbs)."
-msgstr ""
+msgstr "Componente gestore per lo stack delle conversazioni (breadcrumbs)."
#. Tag: literal
#: Components.xml:620
@@ -701,25 +701,25 @@
#: Components.xml:650
#, no-c-format
msgid "<literal>isInProcess()</literal> — returns <literal>true</literal> if there is currently a pageflow in process"
-msgstr ""
+msgstr "<literal>isInProcess()</literal> — ritorna <literal>true</literal> se c'è un pageflow nel processo"
#. Tag: para
#: Components.xml:656
#, no-c-format
msgid "<literal>getProcessInstance()</literal> — returns jBPM <literal>ProcessInstance</literal> for the current pageflow"
-msgstr ""
+msgstr "<literal>getProcessInstance()</literal> — restituisce una <literal>ProcessInstance</literal> jBPM per il pageflow corrente"
#. Tag: para
#: Components.xml:662
#, no-c-format
msgid "<literal>begin(String pageflowName)</literal> — begin a pageflow in the context of the current conversation"
-msgstr ""
+msgstr "<literal>begin(String pageflowName)</literal> — inizia un pageflow nel contesto della conversazione corrente"
#. Tag: para
#: Components.xml:668
#, no-c-format
msgid "<literal>reposition(String nodeName)</literal> — reposition the current pageflow to a particular node"
-msgstr ""
+msgstr "<literal>reposition(String nodeName)</literal> — riposiziona il pageflow corrente in un particolare nodo"
#. Tag: literal
#: Components.xml:677
@@ -731,19 +731,19 @@
#: Components.xml:679
#, no-c-format
msgid "API for application control of attributes of the jBPM actor associated with the current session."
-msgstr ""
+msgstr "API per il controllo dell'applicazione degli attributi dell'attore jBPM associato alla sessione corrente."
#. Tag: para
#: Components.xml:685
#, no-c-format
msgid "<literal>setId(String actorId)</literal> — sets the jBPM actor id of the current user."
-msgstr ""
+msgstr "<literal>setId(String actorId)</literal> — imposta l'id dell'attore jBPM dell'utente corrente."
#. Tag: para
#: Components.xml:691
#, no-c-format
msgid "<literal>getGroupActorIds()</literal> — returns a <literal>Set</literal> to which jBPM actor ids for the current users groups may be added."
-msgstr ""
+msgstr "<literal>getGroupActorIds()</literal> — ritorna un <literal>Set</literal> a cui gli id degli attori jBPM per i gruppi degli utenti correnti possono essere aggiunti."
#. Tag: literal
#: Components.xml:701
@@ -755,7 +755,7 @@
#: Components.xml:703
#, no-c-format
msgid "API for application control of the jBPM transition for the current task."
-msgstr ""
+msgstr "API per il controllo dell'applicazione della transizione jBPM per il task corrente."
#. Tag: para
#: Components.xml:709
@@ -779,25 +779,25 @@
#: Components.xml:727
#, no-c-format
msgid "<literal>businessProcess.taskId</literal> — the id of the task associated with the current conversation."
-msgstr ""
+msgstr "<literal>businessProcess.taskId</literal> — l'id del task associato alla conversazione corrente."
#. Tag: para
#: Components.xml:733
#, no-c-format
msgid "<literal>businessProcess.processId</literal> — the id of the process associated with the current conversation."
-msgstr ""
+msgstr "<literal>businessProcess.processId</literal> — l'id del processo associato alla conversazione corrente."
#. Tag: para
#: Components.xml:739
#, no-c-format
msgid "<literal>businessProcess.hasCurrentTask()</literal> — is a task instance associated with the current conversation?"
-msgstr ""
+msgstr "<literal>businessProcess.hasCurrentTask()</literal> — l'istanza del task è associata alla conversazione corrente?"
#. Tag: para
#: Components.xml:745
#, no-c-format
msgid "<literal>businessProcess.hasCurrentProcess()</literal> — is a process instance associated with the current conversation."
-msgstr ""
+msgstr "<literal>businessProcess.hasCurrentProcess()</literal> — l'istanza del processo è associata alla conversazione corrente?"
#. Tag: para
#: Components.xml:751
@@ -833,7 +833,7 @@
#: Components.xml:782
#, no-c-format
msgid "<literal>transition(String transitionName)</literal> — trigger the transition."
-msgstr ""
+msgstr "<literal>transition(String transitionName)</literal> — avvia una transizione."
#. Tag: literal
#: Components.xml:791
@@ -845,7 +845,7 @@
#: Components.xml:793
#, no-c-format
msgid "Manager component for the jBPM <literal>TaskInstance</literal>."
-msgstr ""
+msgstr "Componente gestore per la <literal>TaskInstance</literal> jBPM."
#. Tag: literal
#: Components.xml:799
@@ -1235,7 +1235,7 @@
#: Components.xml:1127
#, no-c-format
msgid "Bootstraps a <literal>JbpmConfiguration</literal>. Install as class <literal>org.jboss.seam.bpm.Jbpm</literal>."
-msgstr ""
+msgstr "Avvia una <literal>JbpmConfiguration</literal>. Installa <literal>org.jboss.seam.bpm.Jbpm</literal> come classe."
#. Tag: para
#: Components.xml:1133
@@ -1591,7 +1591,7 @@
#: Components.xml:1407
#, no-c-format
msgid "<emphasis><session></emphasis>.sessionFactory — a value binding expression that evaluates to an instance of <literal>SessionFactory</literal>."
-msgstr ""
+msgstr "<emphasis><session></emphasis>.sessionFactory — un'espressione di binding che valuta un'istanza di <literal>SessionFactory</literal>."
#. Tag: para
#: Components.xml:1412
@@ -1621,7 +1621,7 @@
#: Components.xml:1430
#, no-c-format
msgid "<literal><sessionFactory>.cfgResourceName</literal> — the path to the configuration file. Default to <literal>hibernate.cfg.xml</literal>."
-msgstr ""
+msgstr "<literal><sessionFactory>.cfgResourceName</literal> — il percorso al file di configurazione. Di default è <literal>hibernate.cfg.xml</literal>."
#. Tag: emphasis
#: Components.xml:1442
@@ -1645,7 +1645,7 @@
#: Components.xml:1450
#, no-c-format
msgid "<emphasis><managedQueueSender></emphasis>.queueJndiName — the JNDI name of the JMS queue."
-msgstr ""
+msgstr "<emphasis><managedQueueSender></emphasis>.queueJndiName — il nome JNDI della coda JMS."
#. Tag: emphasis
#: Components.xml:1459
15 years, 10 months
Seam SVN: r10084 - trunk/src/main/org/jboss/seam/cache.
by seam-commits@lists.jboss.org
Author: norman.richards(a)jboss.com
Date: 2009-02-24 15:14:20 -0500 (Tue, 24 Feb 2009)
New Revision: 10084
Modified:
trunk/src/main/org/jboss/seam/cache/JbossPojoCacheProvider.java
Log:
JBSEAM-3940
Modified: trunk/src/main/org/jboss/seam/cache/JbossPojoCacheProvider.java
===================================================================
--- trunk/src/main/org/jboss/seam/cache/JbossPojoCacheProvider.java 2009-02-24 12:13:21 UTC (rev 10083)
+++ trunk/src/main/org/jboss/seam/cache/JbossPojoCacheProvider.java 2009-02-24 20:14:20 UTC (rev 10084)
@@ -4,6 +4,7 @@
import static org.jboss.seam.annotations.Install.BUILT_IN;
import org.jboss.cache.CacheException;
+import org.jboss.cache.Node;
import org.jboss.cache.aop.PojoCache;
import org.jboss.seam.annotations.AutoCreate;
import org.jboss.seam.annotations.Create;
@@ -70,19 +71,21 @@
cache = null;
}
- @Override
- public Object get(String region, String key)
- {
- try
- {
- return cache.get(getFqn(key));
- }
- catch (CacheException e)
- {
- throw new IllegalStateException(String.format("Cache throw exception when trying to get %s from region %s.", key, region), e);
- }
- }
+ @Override
+ public Object get(String region, String key) {
+ try {
+ Node node = cache.get(getFqn(region));
+ if (node != null) {
+ return node.get(key);
+ } else {
+ return null;
+ }
+ } catch (CacheException e) {
+ throw new IllegalStateException(String.format("Cache throw exception when trying to get %s from region %s.", key, region), e);
+ }
+ }
+
@Override
public void put(String region, String key, Object object)
{
15 years, 10 months
Seam SVN: r10083 - tags.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2009-02-24 07:13:21 -0500 (Tue, 24 Feb 2009)
New Revision: 10083
Added:
tags/JBPAPP_4_3_CP04_FP_CR1/
Log:
tag for EAP 4.3 CP04 FP01 CR1
Copied: tags/JBPAPP_4_3_CP04_FP_CR1 (from rev 10082, branches/enterprise/JBPAPP_4_3_FP01)
15 years, 10 months
Seam SVN: r10082 - trunk/doc/Seam_Reference_Guide/it-IT.
by seam-commits@lists.jboss.org
Author: nico.ben
Date: 2009-02-24 06:53:18 -0500 (Tue, 24 Feb 2009)
New Revision: 10082
Modified:
trunk/doc/Seam_Reference_Guide/it-IT/Dependencies.po
Log:
JBSEAM-3767: Italian translation of Seam guide
Modified: trunk/doc/Seam_Reference_Guide/it-IT/Dependencies.po
===================================================================
--- trunk/doc/Seam_Reference_Guide/it-IT/Dependencies.po 2009-02-23 22:49:55 UTC (rev 10081)
+++ trunk/doc/Seam_Reference_Guide/it-IT/Dependencies.po 2009-02-24 11:53:18 UTC (rev 10082)
@@ -6,7 +6,7 @@
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2009-01-05 00:19+0000\n"
-"PO-Revision-Date: 2009-01-05 01:38+0100\n"
+"PO-Revision-Date: 2009-02-24 12:52+0100\n"
"Last-Translator: Nicola Benaglia <nico.benaz(a)gmail.com>\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
@@ -29,7 +29,7 @@
#: Dependencies.xml:10
#, no-c-format
msgid "Seam does not work with JDK 1.4 and requires JDK 5 or above as it uses annotations and other JDK 5.0 features.. Seam has been thoroughly tested using Sun's JDKs. However there are no known issues specific to Seam with other JDK's."
-msgstr "Seam non funziona con JDK 1.5 e richiede JDK 5 o superiore, poiché impiega leannotazioni ed altre caratteristiche di JDK 5.0. Seam è stato testato usando i JDK di Sun. Comunque non ci sono problemi noti con Seam usando altri JDK."
+msgstr "Seam non funziona con JDK 1.4 e richiede JDK 5 o superiore, poiché impiega annotazioni ed altre caratteristiche di JDK 5.0. Seam è stato testato usando i JDK di Sun. Comunque con Seam non ci sono problemi noti usando altri JDK."
#. Tag: title
#: Dependencies.xml:18
15 years, 10 months
Seam SVN: r10081 - trunk/build.
by seam-commits@lists.jboss.org
Author: norman.richards(a)jboss.com
Date: 2009-02-23 17:49:55 -0500 (Mon, 23 Feb 2009)
New Revision: 10081
Modified:
trunk/build/root.pom.xml
Log:
JBSEAM-3964
Modified: trunk/build/root.pom.xml
===================================================================
--- trunk/build/root.pom.xml 2009-02-23 20:44:11 UTC (rev 10080)
+++ trunk/build/root.pom.xml 2009-02-23 22:49:55 UTC (rev 10081)
@@ -223,13 +223,13 @@
<dependency>
<groupId>javax.faces</groupId>
<artifactId>jsf-api</artifactId>
- <version>1.2_09-BETA1</version>
+ <version>1.2_12</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
<artifactId>jsf-impl</artifactId>
- <version>1.2_09-BETA1</version>
+ <version>1.2_12</version>
<exclusions>
<exclusion>
<groupId>commons-collections</groupId>
15 years, 10 months