lib/ext

Aleksander Machniak machniak at kolabsys.com
Mon Jan 14 11:38:57 CET 2013


 lib/ext/Syncroton/Model/GAL.php                 |   22 +++++++++++-----------
 lib/ext/Syncroton/Model/StoreResponseResult.php |    4 ++--
 2 files changed, 13 insertions(+), 13 deletions(-)

New commits:
commit cb0591137a4f2a880c49fe408605285b0bdbaacc
Author: Aleksander Machniak <alec at alec.pl>
Date:   Mon Jan 14 11:38:30 2013 +0100

    Fix GAL search on devices with protocolVersion=2.5 (Samsung Galaxy Tab - Android 2.2) (Bug #1119)

diff --git a/lib/ext/Syncroton/Model/GAL.php b/lib/ext/Syncroton/Model/GAL.php
index 31af916..917c5e5 100644
--- a/lib/ext/Syncroton/Model/GAL.php
+++ b/lib/ext/Syncroton/Model/GAL.php
@@ -35,17 +35,17 @@ class Syncroton_Model_GAL extends Syncroton_Model_AEntry
 
     protected $_properties = array(
         'GAL' => array(
-            'alias'         => array('type' => 'string'),
-            'company'       => array('type' => 'string'),
-            'displayName'   => array('type' => 'string'),
-            'emailAddress'  => array('type' => 'string'),
-            'firstName'     => array('type' => 'string'),
-            'lastName'      => array('type' => 'string'),
-            'mobilePhone'   => array('type' => 'string'),
-            'office'        => array('type' => 'string'),
-            'phone'         => array('type' => 'string'),
-            'picture'       => array('type' => 'container'),
-            'title'         => array('type' => 'string'),
+            'alias'         => array('type' => 'string', 'supportedSince' => '2.5'),
+            'company'       => array('type' => 'string', 'supportedSince' => '2.5'),
+            'displayName'   => array('type' => 'string', 'supportedSince' => '2.5'),
+            'emailAddress'  => array('type' => 'string', 'supportedSince' => '2.5'),
+            'firstName'     => array('type' => 'string', 'supportedSince' => '2.5'),
+            'lastName'      => array('type' => 'string', 'supportedSince' => '2.5'),
+            'mobilePhone'   => array('type' => 'string', 'supportedSince' => '2.5'),
+            'office'        => array('type' => 'string', 'supportedSince' => '2.5'),
+            'phone'         => array('type' => 'string', 'supportedSince' => '2.5'),
+            'picture'       => array('type' => 'container', 'supportedSince' => '14.0'),
+            'title'         => array('type' => 'string', 'supportedSince' => '2.5'),
         )
     );
 }
diff --git a/lib/ext/Syncroton/Model/StoreResponseResult.php b/lib/ext/Syncroton/Model/StoreResponseResult.php
index 292fed8..b129fa7 100644
--- a/lib/ext/Syncroton/Model/StoreResponseResult.php
+++ b/lib/ext/Syncroton/Model/StoreResponseResult.php
@@ -24,8 +24,8 @@ class Syncroton_Model_StoreResponseResult extends Syncroton_Model_AEntry
             'collectionId' => array('type' => 'string'),
         ),
         'Search' => array(
-            'longId'     => array('type' => 'string'),
-            'properties' => array('type' => 'container'),
+            'longId'     => array('type' => 'string', 'supportedSince' => '2.5'),
+            'properties' => array('type' => 'container', 'supportedSince' => '2.5'),
         )
     );
 }





More information about the commits mailing list