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:15 UTC

[myfaces-trinidad] branch 1.2.12.3.1-branch created (now 6169cc9)

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

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


      at 6169cc9  TRINIDAD-1839 - Agent PLATFORM_IPHONE should detect iPad as well

This branch includes the following new commits:

     new 7f97569  This branch is a maintainance tag off of 1.2.12.3
     new 9e3f314  Updated all version numbers
     new 6169cc9  TRINIDAD-1839 - Agent PLATFORM_IPHONE should detect iPad as well

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-1839 - Agent PLATFORM_IPHONE should detect iPad as well

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.3.1-branch
in repository https://gitbox.apache.org/repos/asf/myfaces-trinidad.git

commit 6169cc9637d8c649a21cf0b4c0150083c3498547
Author: Matthew Cooper <mc...@apache.org>
AuthorDate: Mon Jun 21 19:46:34 2010 +0000

    TRINIDAD-1839 - Agent PLATFORM_IPHONE should detect iPad as well
    
    The "iphone" platform is really the entire "iOS" platform which already included the iPhone and iPod touch but now also includes iPad.
---
 .../src/main/java/org/apache/myfaces/trinidad/context/Agent.java  | 2 +-
 .../apache/myfaces/trinidadinternal/agent/AgentFactoryImpl.java   | 8 +++++++-
 .../org/apache/myfaces/trinidadinternal/agent/TrinidadAgent.java  | 2 +-
 3 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/trinidad-api/src/main/java/org/apache/myfaces/trinidad/context/Agent.java b/trinidad-api/src/main/java/org/apache/myfaces/trinidad/context/Agent.java
index 851ee75..676a354 100644
--- a/trinidad-api/src/main/java/org/apache/myfaces/trinidad/context/Agent.java
+++ b/trinidad-api/src/main/java/org/apache/myfaces/trinidad/context/Agent.java
@@ -89,7 +89,7 @@ public interface Agent
   public static final String  PLATFORM_MAC = PLATFORM_MACOS;
 
   /**
-   * Constant for iPhone platform
+   * Constant for the iOS (iPhone/iPod touch/iPad) platform
    */
   public static final String  PLATFORM_IPHONE = "iphone";
 
diff --git a/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/agent/AgentFactoryImpl.java b/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/agent/AgentFactoryImpl.java
index ac0a06e..be4d65d 100644
--- a/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/agent/AgentFactoryImpl.java
+++ b/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/agent/AgentFactoryImpl.java
@@ -773,11 +773,17 @@ public class AgentFactoryImpl implements AgentFactory
 
     if (agent.indexOf("iPhone") > 0)
     {
+      // iPhone is a member of the iOS platform:
+      agentObj.setPlatform(Agent.PLATFORM_IPHONE);
+    }
+    else if (agent.indexOf("iPad") > 0)
+    {
+      // iPad is a member of the iOS platform:
       agentObj.setPlatform(Agent.PLATFORM_IPHONE);
     }
     else if (agent.indexOf("iPod") > 0)
     {
-      // At the moment, the iPod touch version of this browser matches iPhone's
+      // iPod is a member of the iOS platform:
       agentObj.setPlatform(Agent.PLATFORM_IPHONE);
     }
     else if (agent.indexOf("Win") > 0)
diff --git a/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/agent/TrinidadAgent.java b/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/agent/TrinidadAgent.java
index c74a030..d37a8a7 100644
--- a/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/agent/TrinidadAgent.java
+++ b/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/agent/TrinidadAgent.java
@@ -474,7 +474,7 @@ public interface TrinidadAgent extends Agent
   public static final String SKIN_GENERIC_PDA = "genericpda";
   
   /* 
-   * Skin family for all Safari browsers running in iPhones/iPod
+   * Skin family for all Safari browsers running in the iOS platform (iPhones/iPod/iPad)
    */
   public static final String SKIN_WEBKIT_IPHONE = "iPhonewebkit";
   

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

[myfaces-trinidad] 01/03: This branch is a maintainance tag off of 1.2.12.3

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.3.1-branch
in repository https://gitbox.apache.org/repos/asf/myfaces-trinidad.git

commit 7f97569f4b335935d45d09991dda5c81ce920191
Author: Scott Bryan <so...@apache.org>
AuthorDate: Fri Jun 11 13:48:56 2010 +0000

    This branch is a maintainance tag off of 1.2.12.3

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

[myfaces-trinidad] 02/03: Updated all version numbers

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.3.1-branch
in repository https://gitbox.apache.org/repos/asf/myfaces-trinidad.git

commit 9e3f314debf6e6327564003c73ad2996c23cb8a4
Author: Scott Bryan <so...@apache.org>
AuthorDate: Fri Jun 11 19:04:58 2010 +0000

    Updated all version numbers
---
 pom.xml                                | 8 ++++----
 trinidad-api/pom.xml                   | 2 +-
 trinidad-assembly/pom.xml              | 2 +-
 trinidad-build/pom.xml                 | 2 +-
 trinidad-examples/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 +-
 12 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/pom.xml b/pom.xml
index cca8f93..7617f8f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -33,7 +33,7 @@
 
   <groupId>org.apache.myfaces.trinidad</groupId>
   <artifactId>trinidad</artifactId>
-  <version>1.2.12.3-SNAPSHOT</version>
+  <version>1.2.12.3.1-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.3-branch</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/trinidad/branches/1.2.12.3-branch</developerConnection>
-    <url>http://svn.apache.org/viewcvs.cgi/myfaces/trinidad/branches/1.2.12.3-branch</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/trinidad/branches/1.2.12.3.1-branch</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/trinidad/branches/1.2.12.3.1-branch</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/myfaces/trinidad/branches/1.2.12.3.1-branch</url>
   </scm>
 
   <repositories>
diff --git a/trinidad-api/pom.xml b/trinidad-api/pom.xml
index dda0b89..1ed2efb 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.3-SNAPSHOT</version>
+    <version>1.2.12.3.1-SNAPSHOT</version>
   </parent>
 
   <artifactId>trinidad-api</artifactId>
diff --git a/trinidad-assembly/pom.xml b/trinidad-assembly/pom.xml
index b14d2e7..995eb66 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.3-SNAPSHOT</version>
+    <version>1.2.12.3.1-SNAPSHOT</version>
   </parent>
 
   <artifactId>trinidad-assembly</artifactId>
diff --git a/trinidad-build/pom.xml b/trinidad-build/pom.xml
index 439472c..173dbfe 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.3-SNAPSHOT</version>
+    <version>1.2.12.3.1-SNAPSHOT</version>
   </parent>
 
   <artifactId>trinidad-build</artifactId>
diff --git a/trinidad-examples/pom.xml b/trinidad-examples/pom.xml
index f0c8add..b644dcb 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.3-SNAPSHOT</version>
+    <version>1.2.12.3.1-SNAPSHOT</version>
   </parent>
 
   <artifactId>trinidad-example</artifactId>
diff --git a/trinidad-impl/pom.xml b/trinidad-impl/pom.xml
index 7327586..eb9a97e 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.3-SNAPSHOT</version>
+    <version>1.2.12.3.1-SNAPSHOT</version>
   </parent>
 
   <artifactId>trinidad-impl</artifactId>
diff --git a/trinidad-partial-lifecycle/pom.xml b/trinidad-partial-lifecycle/pom.xml
index b5d50be..0dc7e1a 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.3-SNAPSHOT</version>
+    <version>1.2.12.3.1-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 d2ca631..7407165 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.3-SNAPSHOT</version>
+    <version>1.2.12.3.1-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.3-branch</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/branches/1.2.12.3-branch</developerConnection>
-    <url>http://svn.apache.org/viewcvs.cgi/myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/branches/1.2.12.3-branch</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/branches/1.2.12.3.1-branch</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/branches/1.2.12.3.1-branch</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/branches/1.2.12.3.1-branch</url>
   </scm>
 
   <issueManagement>
diff --git a/trinidad-sandbox/sandbox-api/pom.xml b/trinidad-sandbox/sandbox-api/pom.xml
index 438af2a..59e619a 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.3-SNAPSHOT</version>
+    <version>1.2.12.3.1-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 9268e92..2f036fe 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.3-SNAPSHOT</version>
+    <version>1.2.12.3.1-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 f3f631c..680291e 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.3-SNAPSHOT</version>
+    <version>1.2.12.3.1-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 d372a77..4be9108 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.3-SNAPSHOT</version>
+    <version>1.2.12.3.1-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>.