You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by de...@apache.org on 2017/09/17 12:30:04 UTC

[myfaces-trinidad] branch 1.2.12.5.0.5-branch created (now 666641e)

This is an automated email from the ASF dual-hosted git repository.

deki pushed a change to branch 1.2.12.5.0.5-branch
in repository https://gitbox.apache.org/repos/asf/myfaces-trinidad.git.


      at 666641e  TRINIDAD-2045 - Commit patch made by Venkata Guddanti

This branch includes the following new commits:

     new 5e86333  
     new 8c76ee7  Changed versions of poms
     new 666641e  TRINIDAD-2045 - Commit patch made by Venkata Guddanti

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


-- 
To stop receiving notification emails like this one, please contact
['"commits@myfaces.apache.org" <co...@myfaces.apache.org>'].

[myfaces-trinidad] 03/03: TRINIDAD-2045 - Commit patch made by Venkata Guddanti

Posted by de...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

deki pushed a commit to branch 1.2.12.5.0.5-branch
in repository https://gitbox.apache.org/repos/asf/myfaces-trinidad.git

commit 666641e935dfbaff1fb8e9b1f7863296a136ca2c
Author: Scott Bryan <so...@apache.org>
AuthorDate: Thu Feb 24 23:13:59 2011 +0000

    TRINIDAD-2045 - Commit patch made by Venkata Guddanti
---
 .../apache/myfaces/trinidad/component/UIXCollection.java  | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/trinidad-api/src/main/java/org/apache/myfaces/trinidad/component/UIXCollection.java b/trinidad-api/src/main/java/org/apache/myfaces/trinidad/component/UIXCollection.java
index f2d042a..0620fed 100644
--- a/trinidad-api/src/main/java/org/apache/myfaces/trinidad/component/UIXCollection.java
+++ b/trinidad-api/src/main/java/org/apache/myfaces/trinidad/component/UIXCollection.java
@@ -248,6 +248,15 @@ public abstract class UIXCollection extends UIXComponentBase
       setRowKey(currencyKey);
     }
 
+    // Finally clean up any internal model state that we might be holding on to. We do not want to hold onto any 
+    // application data in between requests 
+    InternalState iState = _getInternalState(false);
+    if (iState != null)
+    {
+      iState._value = null;
+      iState._model= null;
+    }
+    
     return savedState;
   }
 
@@ -266,11 +275,7 @@ public abstract class UIXCollection extends UIXComponentBase
     if (iState != null)
     {
       stampState = iState._stampState;
-      clientKeyMgr = iState._clientKeyMgr;
-      
-      // Make sure that we are not holding on to any application data in our state
-      iState._value = null;
-      iState._model= null;
+      clientKeyMgr = iState._clientKeyMgr;      
     }
     else
     {

-- 
To stop receiving notification emails like this one, please contact
"commits@myfaces.apache.org" <co...@myfaces.apache.org>.

[myfaces-trinidad] 01/03:

Posted by de...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

deki pushed a commit to branch 1.2.12.5.0.5-branch
in repository https://gitbox.apache.org/repos/asf/myfaces-trinidad.git

commit 5e86333ab782aa0d98290c5e4816d394d368fb10
Author: Scott Bryan <so...@apache.org>
AuthorDate: Thu Feb 24 22:56:01 2011 +0000

-- 
To stop receiving notification emails like this one, please contact
"commits@myfaces.apache.org" <co...@myfaces.apache.org>.

[myfaces-trinidad] 02/03: Changed versions of poms

Posted by de...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

deki pushed a commit to branch 1.2.12.5.0.5-branch
in repository https://gitbox.apache.org/repos/asf/myfaces-trinidad.git

commit 8c76ee708e0ce7c7a502770c3912360e42928d72
Author: Scott Bryan <so...@apache.org>
AuthorDate: Thu Feb 24 23:09:18 2011 +0000

    Changed versions of poms
---
 pom.xml                                             | 8 ++++----
 trinidad-api/pom.xml                                | 2 +-
 trinidad-assembly/pom.xml                           | 2 +-
 trinidad-build/pom.xml                              | 2 +-
 trinidad-examples/pom.xml                           | 2 +-
 trinidad-examples/trinidad-blank/pom.xml            | 2 +-
 trinidad-examples/trinidad-demo/pom.xml             | 2 +-
 trinidad-examples/trinidad-example-assembly/pom.xml | 2 +-
 trinidad-impl/pom.xml                               | 2 +-
 trinidad-partial-lifecycle/pom.xml                  | 2 +-
 trinidad-sandbox/pom.xml                            | 8 ++++----
 trinidad-sandbox/sandbox-api/pom.xml                | 2 +-
 trinidad-sandbox/sandbox-build/pom.xml              | 2 +-
 trinidad-sandbox/sandbox-demo/pom.xml               | 2 +-
 trinidad-sandbox/sandbox-impl/pom.xml               | 2 +-
 15 files changed, 21 insertions(+), 21 deletions(-)

diff --git a/pom.xml b/pom.xml
index 4d589e7..f93e47b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -33,7 +33,7 @@
 
   <groupId>org.apache.myfaces.trinidad</groupId>
   <artifactId>trinidad</artifactId>
-  <version>1.2.12.5.0-SNAPSHOT</version>
+  <version>1.2.12.5.0.5-SNAPSHOT</version>
   <packaging>pom</packaging>
 
   <properties>
@@ -136,9 +136,9 @@
   </mailingLists>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/trinidad/branches/1.2.12.5.0-branch</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/trinidad/branches/1.2.12.5.0-branch</developerConnection>
-    <url>http://svn.apache.org/viewcvs.cgi/myfaces/trinidad/branches/1.2.12.5.0-branch</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/trinidad/branches/1.2.12.5.0.5-branch</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/trinidad/branches/1.2.12.5.0.5-branch</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/myfaces/trinidad/branches/1.2.12.5.0.5-branch</url>
   </scm>
 
   <repositories>
diff --git a/trinidad-api/pom.xml b/trinidad-api/pom.xml
index 1ecc0c1..244f780 100644
--- a/trinidad-api/pom.xml
+++ b/trinidad-api/pom.xml
@@ -27,7 +27,7 @@
   <parent>
     <groupId>org.apache.myfaces.trinidad</groupId>
     <artifactId>trinidad</artifactId>
-    <version>1.2.12.5.0-SNAPSHOT</version>
+    <version>1.2.12.5.0.5-SNAPSHOT</version>
   </parent>
 
   <artifactId>trinidad-api</artifactId>
diff --git a/trinidad-assembly/pom.xml b/trinidad-assembly/pom.xml
index 5cbfc33..b659f10 100644
--- a/trinidad-assembly/pom.xml
+++ b/trinidad-assembly/pom.xml
@@ -26,7 +26,7 @@
   <parent>
     <groupId>org.apache.myfaces.trinidad</groupId>
     <artifactId>trinidad</artifactId>
-    <version>1.2.12.5.0-SNAPSHOT</version>
+    <version>1.2.12.5.0.5-SNAPSHOT</version>
   </parent>
 
   <artifactId>trinidad-assembly</artifactId>
diff --git a/trinidad-build/pom.xml b/trinidad-build/pom.xml
index 7643a0b..b1e676e 100644
--- a/trinidad-build/pom.xml
+++ b/trinidad-build/pom.xml
@@ -27,7 +27,7 @@
   <parent>
     <groupId>org.apache.myfaces.trinidad</groupId>
     <artifactId>trinidad</artifactId>
-    <version>1.2.12.5.0-SNAPSHOT</version>
+    <version>1.2.12.5.0.5-SNAPSHOT</version>
   </parent>
 
   <artifactId>trinidad-build</artifactId>
diff --git a/trinidad-examples/pom.xml b/trinidad-examples/pom.xml
index 79a9e89..5a3c62c 100644
--- a/trinidad-examples/pom.xml
+++ b/trinidad-examples/pom.xml
@@ -27,7 +27,7 @@
   <parent>
     <groupId>org.apache.myfaces.trinidad</groupId>
     <artifactId>trinidad</artifactId>
-    <version>1.2.12.5.0-SNAPSHOT</version>
+    <version>1.2.12.5.0.5-SNAPSHOT</version>
   </parent>
 
   <artifactId>trinidad-example</artifactId>
diff --git a/trinidad-examples/trinidad-blank/pom.xml b/trinidad-examples/trinidad-blank/pom.xml
index 2d76793..6e3c75c 100644
--- a/trinidad-examples/trinidad-blank/pom.xml
+++ b/trinidad-examples/trinidad-blank/pom.xml
@@ -26,7 +26,7 @@
   <parent>
     <groupId>org.apache.myfaces.trinidad</groupId>
     <artifactId>trinidad-example</artifactId>
-    <version>1.2.12.5.0-SNAPSHOT</version>
+    <version>1.2.12.5.0.5-SNAPSHOT</version>
   </parent>
 
   <artifactId>trinidad-blank</artifactId>
diff --git a/trinidad-examples/trinidad-demo/pom.xml b/trinidad-examples/trinidad-demo/pom.xml
index 5a8d2f3..f31a298 100644
--- a/trinidad-examples/trinidad-demo/pom.xml
+++ b/trinidad-examples/trinidad-demo/pom.xml
@@ -7,7 +7,7 @@
   <parent>
     <groupId>org.apache.myfaces.trinidad</groupId>
     <artifactId>trinidad-example</artifactId>
-    <version>1.2.12.5.0-SNAPSHOT</version>
+    <version>1.2.12.5.0.5-SNAPSHOT</version>
   </parent>
 
   <artifactId>trinidad-demo</artifactId>
diff --git a/trinidad-examples/trinidad-example-assembly/pom.xml b/trinidad-examples/trinidad-example-assembly/pom.xml
index 7f64269..f358162 100644
--- a/trinidad-examples/trinidad-example-assembly/pom.xml
+++ b/trinidad-examples/trinidad-example-assembly/pom.xml
@@ -27,7 +27,7 @@
   <parent>
     <groupId>org.apache.myfaces.trinidad</groupId>
     <artifactId>trinidad</artifactId>
-    <version>1.2.12.5.0-SNAPSHOT</version>
+    <version>1.2.12.5.0.5-SNAPSHOT</version>
   </parent>
 
   <artifactId>trinidad-example-assembly</artifactId>
diff --git a/trinidad-impl/pom.xml b/trinidad-impl/pom.xml
index 12dd2f9..4e8aac4 100644
--- a/trinidad-impl/pom.xml
+++ b/trinidad-impl/pom.xml
@@ -27,7 +27,7 @@
   <parent>
     <groupId>org.apache.myfaces.trinidad</groupId>
     <artifactId>trinidad</artifactId>
-    <version>1.2.12.5.0-SNAPSHOT</version>
+    <version>1.2.12.5.0.5-SNAPSHOT</version>
   </parent>
 
   <artifactId>trinidad-impl</artifactId>
diff --git a/trinidad-partial-lifecycle/pom.xml b/trinidad-partial-lifecycle/pom.xml
index d39cd47..7e74480 100644
--- a/trinidad-partial-lifecycle/pom.xml
+++ b/trinidad-partial-lifecycle/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.myfaces.trinidad</groupId>
     <artifactId>trinidad</artifactId>
-    <version>1.2.12.5.0-SNAPSHOT</version>
+    <version>1.2.12.5.0.5-SNAPSHOT</version>
   </parent>
   <artifactId>trinidad-partial-lifecycle</artifactId>
   <name>Apache MyFaces Trinidad Partial Lifecycle</name>
diff --git a/trinidad-sandbox/pom.xml b/trinidad-sandbox/pom.xml
index 9d8efa8..5ad7323 100644
--- a/trinidad-sandbox/pom.xml
+++ b/trinidad-sandbox/pom.xml
@@ -27,16 +27,16 @@
   <parent>
     <groupId>org.apache.myfaces.trinidad</groupId>
     <artifactId>trinidad</artifactId>
-    <version>1.2.12.5.0-SNAPSHOT</version>
+    <version>1.2.12.5.0.5-SNAPSHOT</version>
   </parent>
 
   <artifactId>trinidad-sandbox</artifactId>
   <packaging>pom</packaging>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/branches/1.2.12.5.0-branch</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/branches/1.2.12.5.0-branch</developerConnection>
-    <url>http://svn.apache.org/viewcvs.cgi/myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/branches/1.2.12.5.0-branch</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/branches/1.2.12.5.0.5-branch</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/branches/1.2.12.5.0.5-branch</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/branches/1.2.12.5.0.5-branch</url>
   </scm>
 
   <issueManagement>
diff --git a/trinidad-sandbox/sandbox-api/pom.xml b/trinidad-sandbox/sandbox-api/pom.xml
index 8fc4f27..81618d5 100644
--- a/trinidad-sandbox/sandbox-api/pom.xml
+++ b/trinidad-sandbox/sandbox-api/pom.xml
@@ -27,7 +27,7 @@
   <parent>
     <groupId>org.apache.myfaces.trinidad</groupId>
     <artifactId>trinidad-sandbox</artifactId>
-    <version>1.2.12.5.0-SNAPSHOT</version>
+    <version>1.2.12.5.0.5-SNAPSHOT</version>
   </parent>
 
   <artifactId>trinidad-sandbox-api</artifactId>
diff --git a/trinidad-sandbox/sandbox-build/pom.xml b/trinidad-sandbox/sandbox-build/pom.xml
index 3a704eb..4a87b30 100644
--- a/trinidad-sandbox/sandbox-build/pom.xml
+++ b/trinidad-sandbox/sandbox-build/pom.xml
@@ -27,7 +27,7 @@
   <parent>
     <groupId>org.apache.myfaces.trinidad</groupId>
     <artifactId>trinidad-sandbox</artifactId>
-    <version>1.2.12.5.0-SNAPSHOT</version>
+    <version>1.2.12.5.0.5-SNAPSHOT</version>
   </parent>
 
   <artifactId>trinidad-sandbox-build</artifactId>
diff --git a/trinidad-sandbox/sandbox-demo/pom.xml b/trinidad-sandbox/sandbox-demo/pom.xml
index 1619b48..e1f21cf 100644
--- a/trinidad-sandbox/sandbox-demo/pom.xml
+++ b/trinidad-sandbox/sandbox-demo/pom.xml
@@ -27,7 +27,7 @@
   <parent>
     <groupId>org.apache.myfaces.trinidad</groupId>
     <artifactId>trinidad-sandbox</artifactId>
-    <version>1.2.12.5.0-SNAPSHOT</version>
+    <version>1.2.12.5.0.5-SNAPSHOT</version>
   </parent>
 
   <artifactId>trinidad-sandbox-demo</artifactId>
diff --git a/trinidad-sandbox/sandbox-impl/pom.xml b/trinidad-sandbox/sandbox-impl/pom.xml
index dea08d0..5bc2353 100644
--- a/trinidad-sandbox/sandbox-impl/pom.xml
+++ b/trinidad-sandbox/sandbox-impl/pom.xml
@@ -27,7 +27,7 @@
   <parent>
     <groupId>org.apache.myfaces.trinidad</groupId>
     <artifactId>trinidad-sandbox</artifactId>
-    <version>1.2.12.5.0-SNAPSHOT</version>
+    <version>1.2.12.5.0.5-SNAPSHOT</version>
   </parent>
 
   <artifactId>trinidad-sandbox-impl</artifactId>

-- 
To stop receiving notification emails like this one, please contact
"commits@myfaces.apache.org" <co...@myfaces.apache.org>.