<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>Services/Facebook/Batch.php</filename>
    </added>
    <added>
      <filename>tests/AllTests.php</filename>
    </added>
    <added>
      <filename>tests/Services/AllTests.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/AdminTest.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/AllTests.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/ApplicationTest.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/AuthTest.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/BatchTest.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/CommonTest.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/ConnectTest.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/EventsTest.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/FBMLTest.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/FQLTest.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/FeedTest.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/FriendsTest.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/GroupsTest.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/MarketPlaceTest.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/NotificationsTest.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/PagesTest.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/PhotosTest.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/ProfileTest.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/ShareTest.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/UnitTestCommon.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/UsersTest.php</filename>
    </added>
    <added>
      <filename>tests/Services/Facebook/skel.php</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -76,7 +76,7 @@ class Services_Facebook_Admin extends Services_Facebook_Common
         //FB accepts the app properties as a json array
         $jsonProperties = json_encode($properties);
         
-        $result = $this-&gt;sendRequest('admin.getAppProperties', array(
+        $result = $this-&gt;callMethod('admin.getAppProperties', array(
                                      'properties' =&gt; $jsonProperties
                         ));
         
@@ -103,9 +103,11 @@ class Services_Facebook_Admin extends Services_Facebook_Common
         }
         $jsonProperties = json_encode($jsonArray);
         
-        return $this-&gt;sendRequest('admin.setAppProperties', array(
+        $result = $this-&gt;callMethod('admin.setAppProperties', array(
                                    'properties' =&gt; $jsonProperties
                     ));
+
+        return (intval((string) $result) == 1);
     }
     
     
@@ -119,7 +121,7 @@ class Services_Facebook_Admin extends Services_Facebook_Common
      */
     public function getNotificationsPerDay()
     {
-        return (int)$this-&gt;sendRequest('admin.getAllocation', array(
+        return (int)$this-&gt;callMethod('admin.getAllocation', array(
                                   'session_key' =&gt; $this-&gt;sessionKey,
                                   'integration_point_name' =&gt; 'notifications_per_day'
                 ));
@@ -135,7 +137,7 @@ class Services_Facebook_Admin extends Services_Facebook_Common
      **/
     public function getRequestsPerDay()
     {
-        return (int)$this-&gt;sendRequest('admin.getAllocation', array(
+        return (int)$this-&gt;callMethod('admin.getAllocation', array(
                                   'session_key' =&gt; $this-&gt;sessionKey,
                                   'integration_point_name' =&gt; 'requests_per_day'
                 ));</diff>
      <filename>Services/Facebook/Admin.php</filename>
    </modified>
    <modified>
      <diff>@@ -52,7 +52,7 @@ class Services_Facebook_Application extends Services_Facebook_Common
      **/
     public function getPublicInfoById($id)
     {
-        return $this-&gt;sendRequest('application.getPublicInfo', array(
+        return $this-&gt;callMethod('application.getPublicInfo', array(
                            'application_id' =&gt; $id
                 ));
         
@@ -69,7 +69,7 @@ class Services_Facebook_Application extends Services_Facebook_Common
      **/
     public function getPublicInfoByAPIKey($api_key)
     {
-        return $this-&gt;sendRequest('application.getPublicInfo', array(
+        return $this-&gt;callMethod('application.getPublicInfo', array(
                            'application_api_key' =&gt; $api_key
                 ));
     }
@@ -85,7 +85,7 @@ class Services_Facebook_Application extends Services_Facebook_Common
      **/
     public function getPublicInfoByCanvasName($canvas_name)
     {
-        return $this-&gt;sendRequest('application.getPublicInfo', array(
+        return $this-&gt;callMethod('application.getPublicInfo', array(
                            'application_canvas_name' =&gt; $canvas_name
                 ));
         </diff>
      <filename>Services/Facebook/Application.php</filename>
    </modified>
    <modified>
      <diff>@@ -52,7 +52,7 @@ class Services_Facebook_Auth extends Services_Facebook_Common
      */
     public function createToken()
     {
-        $result = $this-&gt;sendRequest('auth.createToken');
+        $result = $this-&gt;callMethod('auth.createToken');
         return (string)$result;
     }
 
@@ -65,7 +65,7 @@ class Services_Facebook_Auth extends Services_Facebook_Common
      */
     public function getSession($authToken)
     {
-        return $this-&gt;sendRequest('auth.getSession', array(
+        return $this-&gt;callMethod('auth.getSession', array(
             'auth_token' =&gt; $authToken
         ));
     }
@@ -84,7 +84,8 @@ class Services_Facebook_Auth extends Services_Facebook_Common
      */
     public function promoteSession()
     {
-        return $this-&gt;sendRequest('auth.promoteSession');
+        $result = (string) $this-&gt;callMethod('auth.promoteSession');
+        return $result;
     }
 
     /**
@@ -100,7 +101,8 @@ class Services_Facebook_Auth extends Services_Facebook_Common
      */
     public function expireSession()
     {
-        return $this-&gt;sendRequest('auth.expireSession');
+        $result = $this-&gt;callMethod('auth.expireSession');
+        return (intval((string) $result) == 1);
     }
 
     /**
@@ -124,7 +126,7 @@ class Services_Facebook_Auth extends Services_Facebook_Common
             $args['uid'] = $uid;
         }
 
-        $result = $this-&gt;sendRequest('auth.revokeAuthorization', $args);
+        $result = $this-&gt;callMethod('auth.revokeAuthorization', $args);
         return (intval($result) == 1);
     }
 }</diff>
      <filename>Services/Facebook/Auth.php</filename>
    </modified>
    <modified>
      <diff>@@ -56,8 +56,8 @@ abstract class Services_Facebook_Common
     public $sessionKey = '';
 
     /**
-     * Send a request to the API
-     *
+     * Call method 
+     * 
      * Used by all of the interface classes to send a request to the Facebook
      * API. It builds the standard argument list, munges that with the 
      * arguments passed to it, signs the request and sends it along to the
@@ -68,22 +68,32 @@ abstract class Services_Facebook_Common
      * SimpleXml and then checked for Facebook errors. 
      * 
      * Any formal error encountered is thrown as an exception.
+     * 
+     * @param mixed $method Method to call
+     * @param array $args   Arguments to send
+     *
+     * @return mixed Result
+     */
+    public function callMethod($method, array $args = array())
+    {
+        $this-&gt;updateArgs($args, $method);
+
+        $response = $this-&gt;sendRequest($args);
+        $result   = $this-&gt;parseResponse($response);
+
+        return $result;
+    }
+
+    /**
+     * Send a request to the API
      *
-     * @param string $method The API method to call
-     * @param array  $args   API arguments passed as GET args
+     * @param array $args API arguments passed as GET args
      *
      * @return object Response as an instance of SimleXmlElement
      * @throws Services_Facebook_Exception
      */
-    protected function sendRequest($method, array $args = array()) 
+    protected function sendRequest(array $args)
     {
-        $args['api_key'] = Services_Facebook::$apiKey;
-        $args['v']       = $this-&gt;version;
-        $args['format']  = 'XML';
-        $args['method']  = $method;
-        $args['call_id'] = microtime(true);
-        $args            = $this-&gt;signRequest($args);
-
         $ch = curl_init();
         curl_setopt($ch, CURLOPT_URL, $this-&gt;api);
         curl_setopt($ch, CURLOPT_HEADER, false);
@@ -91,17 +101,31 @@ abstract class Services_Facebook_Common
         curl_setopt($ch, CURLOPT_POSTFIELDS, $args);
         curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
         curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, Services_Facebook::$timeout);
-        $result = curl_exec($ch);
+        $response = curl_exec($ch);
 
         if (curl_errno($ch)) {
             throw new Services_Facebook_Exception(
-                curl_error($ch), curl_errno($ch), $method, $this-&gt;api
+                curl_error($ch), curl_errno($ch), $args['method'], $this-&gt;api
             );
         }
 
         curl_close($ch);
 
-        $xml = @simplexml_load_string($result);
+        return $response;
+    }
+
+    /**
+     * parseResponse 
+     * 
+     * Parses the raw response from Facebook
+     *
+     * @param mixed $response Response xml
+     *
+     * @return string Parsed response
+     */
+    protected function parseResponse($response)
+    {
+        $xml = simplexml_load_string($response);
         if (!$xml instanceof SimpleXmlElement) {
             throw new Services_Facebook_Exception(
                 'Could not parse XML response', 0, $this-&gt;api
@@ -112,12 +136,33 @@ abstract class Services_Facebook_Common
         if (is_array($error) &amp;&amp; count($error)) {
             throw new Services_Facebook_Exception($error['message'],
                                                   $error['code'], $this-&gt;api);
-        } 
+        }
 
         return $xml;
     }
 
     /**
+     * Update arguments
+     * 
+     * Updates the arguments with api_key, version, etc. Then
+     * signs it.
+     *
+     * @param array &amp;$args  Arguments being sent
+     * @param mixed $method Method being called
+     *
+     * @return void
+     */
+    protected function updateArgs(array &amp;$args, $method)
+    {
+        $args['api_key'] = Services_Facebook::$apiKey;
+        $args['v']       = $this-&gt;version;
+        $args['format']  = 'XML';
+        $args['method']  = $method;
+        $args['call_id'] = microtime(true);
+        $args            = $this-&gt;signRequest($args);
+    }
+
+    /**
      * Sign the request
      *
      * @param array $args Arguments for the request to be signed
@@ -183,10 +228,9 @@ abstract class Services_Facebook_Common
     }
 
     /**
-     * getAPI
-     * 
-     * @access public
-     * @return void
+     * Get API
+     *
+     * @return string API url
      */
     public function getAPI()
     {
@@ -194,10 +238,10 @@ abstract class Services_Facebook_Common
     }
 
     /**
-     * setAPI
+     * Set API
      * 
-     * @param  mixed  $api 
-     * @access public
+     * @param mixed $api Api url to set
+     *
      * @return void
      */
     public function setAPI($api)</diff>
      <filename>Services/Facebook/Common.php</filename>
    </modified>
    <modified>
      <diff>@@ -73,7 +73,7 @@ class Services_Facebook_Connect extends Services_Facebook_Common
      */
     public function getUnconnectedFriendsCount()
     {
-        $result = $this-&gt;sendRequest('connect.getUnconnectedFriendsCount', array(
+        $result = $this-&gt;callMethod('connect.getUnconnectedFriendsCount', array(
             'session_key' =&gt; $this-&gt;sessionKey
         ));
 
@@ -113,7 +113,7 @@ class Services_Facebook_Connect extends Services_Facebook_Common
      * @access public
      * @throws Services_Facebook_Exception If emash_hash is missing or
      *         another field was passed in that is not supported. 
-     * @return object SimpleXML object from sendRequest()
+     * @return object SimpleXML object from callMethod()
      */
     public function registerUsers(array $accounts)
     {
@@ -139,9 +139,16 @@ class Services_Facebook_Connect extends Services_Facebook_Common
             }
         }
 
-        return $this-&gt;sendRequest('connect.registerUsers', array(
+        $result = $this-&gt;callMethod('connect.registerUsers', array(
             'accounts' =&gt; json_encode($accounts)
         ));
+
+        $hashes = array();
+        foreach ($result-&gt;connect_registerUsers_response_elt as $hash) {
+            $hashes[] = (string) $hash;
+        }
+
+        return $hashes;
     }
 
     /**
@@ -164,13 +171,15 @@ class Services_Facebook_Connect extends Services_Facebook_Common
      *
      * @access public
      * @throws Services_Facebook_Exception if json_decode() is not available
-     * @return object SimpleXML object from sendRequest()
+     * @return object SimpleXML object from callMethod()
      */
     public function unregisterUsers(array $emailHashes)
     {
-        return $this-&gt;sendRequest('connect.unregisterUsers', array(
+        $result = $this-&gt;callMethod('connect.unregisterUsers', array(
             'email_hashes' =&gt; json_encode($emailHashes)
         ));
+
+        return (intval((string) $result) == 1);
     }
 
     /**</diff>
      <filename>Services/Facebook/Connect.php</filename>
    </modified>
    <modified>
      <diff>@@ -11,26 +11,26 @@ class Services_Facebook_Data extends Services_Facebook_Common
 
     protected $_prefix = 'data.';
 
-    protected function sendRequest($method, array $args = array())
+    protected function callMethod($method, array $args = array())
     {
-        return parent::sendRequest($this-&gt;_prefix . $method, $args);
+        return parent::callMethod($this-&gt;_prefix . $method, $args);
     }
 
     public function getUserPreference($pref_id) 
     {
-        return $this-&gt;sendRequest('getUserPreference', array(
+        return $this-&gt;callMethod('getUserPreference', array(
             'pref_id' =&gt; (int)$pref_id,
         ));
     }
 
     public function getUserPreferences()
     {
-        return $this-&gt;sendRequest('getUserPreferences');
+        return $this-&gt;callMethod('getUserPreferences');
     }
 
     public function setUserPreference($pref_id, $value)
     {
-        return $this-&gt;sendRequest(
+        return $this-&gt;callMethod(
             'setUserPreference',
             array(
                 'pref_id' =&gt; $pref_id,
@@ -45,7 +45,7 @@ class Services_Facebook_Data extends Services_Facebook_Common
     }
 
     public function createObjectType($name) {
-        return $this-&gt;sendRequest(
+        return $this-&gt;callMethod(
             'createObjectType',
             array(
                 'name' =&gt; $name,
@@ -54,7 +54,7 @@ class Services_Facebook_Data extends Services_Facebook_Common
     }
 
     public function dropObjectType($obj_type) {
-        return $this-&gt;sendRequest(
+        return $this-&gt;callMethod(
             'dropObjectType',
             array(
                 'obj_type' =&gt; $obj_type,
@@ -63,7 +63,7 @@ class Services_Facebook_Data extends Services_Facebook_Common
     }
 
     public function renameObjectType($obj_type, $new_name) {
-        return $this-&gt;sendRequest(
+        return $this-&gt;callMethod(
             'renameObjectType',
             array(
                 'obj_type' =&gt; $obj_type,
@@ -87,7 +87,7 @@ class Services_Facebook_Data extends Services_Facebook_Common
             $prop_type = constant($const_name);
         }
 
-        return $this-&gt;sendRequest(
+        return $this-&gt;callMethod(
             'defineObjectProperty',
             array(
                 'obj_type' =&gt; $obj_type,
@@ -98,7 +98,7 @@ class Services_Facebook_Data extends Services_Facebook_Common
     }
 
     public function undefineObjectProperty($obj_type, $prop_name) {
-        return $this-&gt;sendRequest(
+        return $this-&gt;callMethod(
             'undefineObjectProperty',
             array(
                 'obj_type' =&gt; $obj_type,
@@ -108,7 +108,7 @@ class Services_Facebook_Data extends Services_Facebook_Common
     }
 
     public function renameObjectProperty($obj_type, $prop_name, $new_name) {
-        return $this-&gt;sendRequest(
+        return $this-&gt;callMethod(
             'renameObjectProperty',
             array(
                 'obj_type' =&gt; $obj_type,
@@ -119,11 +119,11 @@ class Services_Facebook_Data extends Services_Facebook_Common
     }
 
     public function getObjectTypes() {
-        return $this-&gt;sendRequest('getObjectTypes');
+        return $this-&gt;callMethod('getObjectTypes');
     }
 
     public function getObjectType($obj_type) {
-        return $this-&gt;sendRequest(
+        return $this-&gt;callMethod(
             'getObjectType',
             array(
                 'obj_type' =&gt; $obj_type,
@@ -139,11 +139,11 @@ class Services_Facebook_Data extends Services_Facebook_Common
             $args['properties'] = json_encode($properties);
         }
 
-        return $this-&gt;sendRequest('createObject', $args);
+        return $this-&gt;callMethod('createObject', $args);
     }
 
     public function updateObject($obj_id, array $properties, $replace) {
-        return $this-&gt;sendRequest(
+        return $this-&gt;callMethod(
             'updateObject',
             array(
                 'obj_id' =&gt; $obj_id,
@@ -154,7 +154,7 @@ class Services_Facebook_Data extends Services_Facebook_Common
     }
 
     public function deleteObject($obj_id) {
-        return $this-&gt;sendRequest(
+        return $this-&gt;callMethod(
             'deleteObject',
             array(
                 'obj_id' =&gt; $obj_id,
@@ -163,7 +163,7 @@ class Services_Facebook_Data extends Services_Facebook_Common
     }
 
     public function deleteObjects(array $obj_ids) {
-        return $this-&gt;sendRequest(
+        return $this-&gt;callMethod(
             'deleteObjects',
             array(
                 'obj_ids' =&gt; json_encode($obj_ids),
@@ -181,7 +181,7 @@ class Services_Facebook_Data extends Services_Facebook_Common
         if (count($properties) &gt; 0) {
             $args['properties'] = json_encode($properties);
         }
-        return $this-&gt;sendRequest('getObject', $args);
+        return $this-&gt;callMethod('getObject', $args);
     }
 
     public function getObjects(array $obj_ids, array $properties = array()) {
@@ -192,11 +192,11 @@ class Services_Facebook_Data extends Services_Facebook_Common
             $args['properties'] = json_encode($properties);
         }
 
-        return $this-&gt;sendRequest('getObjects', $args);
+        return $this-&gt;callMethod('getObjects', $args);
     }
 
     public function getObjectProperty($obj_id, $prop_name) {
-        return $this-&gt;sendRequest(
+        return $this-&gt;callMethod(
             'getObjectProperty',
             array(
                 'obj_id' =&gt; $obj_id,
@@ -206,7 +206,7 @@ class Services_Facebook_Data extends Services_Facebook_Common
     }
 
     public function setObjectProperty($obj_id, $prop_name, $prop_value) {
-        return $this-&gt;sendRequest(
+        return $this-&gt;callMethod(
             'setObjectProperty',
             array(
                 'obj_id' =&gt; $obj_id,</diff>
      <filename>Services/Facebook/Data.php</filename>
    </modified>
    <modified>
      <diff>@@ -79,9 +79,7 @@ class Services_Facebook_Events extends Services_Facebook_Common
             $args['rsvp_status'] = $params['rsvp_status'];
         }
 
-        return $this-&gt;sendRequest('events.get', array(
-            'eid' =&gt; $eid
-        ));
+        return $this-&gt;callMethod('events.get', $args);
     }
 
     /**
@@ -97,7 +95,7 @@ class Services_Facebook_Events extends Services_Facebook_Common
             $eid = implode(',', $eid);
         } 
 
-        return $this-&gt;sendRequest('events.get', array(
+        return $this-&gt;callMethod('events.get', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'eid' =&gt; $eid
         ));
@@ -112,7 +110,7 @@ class Services_Facebook_Events extends Services_Facebook_Common
      */
     public function getEventsByUser($uid)
     {
-        return $this-&gt;sendRequest('events.get', array(
+        return $this-&gt;callMethod('events.get', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'uid' =&gt; $uid
         ));
@@ -131,7 +129,7 @@ class Services_Facebook_Events extends Services_Facebook_Common
      */
     public function getEventsByDate($start, $end)
     {
-        return $this-&gt;sendRequest('events.get', array(
+        return $this-&gt;callMethod('events.get', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'start' =&gt; $start,
             'end' =&gt; $end
@@ -148,7 +146,7 @@ class Services_Facebook_Events extends Services_Facebook_Common
      */
     public function getMembers($eid)
     {
-        return $this-&gt;sendRequest('events.getMembers', array(
+        return $this-&gt;callMethod('events.getMembers', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'eid' =&gt; $eid
         ));</diff>
      <filename>Services/Facebook/Events.php</filename>
    </modified>
    <modified>
      <diff>@@ -45,7 +45,7 @@ class Services_Facebook_FBML extends Services_Facebook_Common
      */
     public function refreshImgSrc($url)
     {
-        $result = $this-&gt;sendRequest('fbml.refreshImgSrc', array(
+        $result = $this-&gt;callMethod('fbml.refreshImgSrc', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'url' =&gt; $url
         ));
@@ -63,7 +63,7 @@ class Services_Facebook_FBML extends Services_Facebook_Common
      */
     public function refreshRefUrl($url)
     {
-        $result = $this-&gt;sendRequest('fbml.refreshRefUrl', array(
+        $result = $this-&gt;callMethod('fbml.refreshRefUrl', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'url' =&gt; $url
         ));
@@ -83,7 +83,7 @@ class Services_Facebook_FBML extends Services_Facebook_Common
      */
     public function setRefHandle($handle, $fbml)
     {
-        $result = $this-&gt;sendRequest('fbml.setRefHandle', array(
+        $result = $this-&gt;callMethod('fbml.setRefHandle', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'handle' =&gt; $handle,
             'fbml' =&gt; $fbml</diff>
      <filename>Services/Facebook/FBML.php</filename>
    </modified>
    <modified>
      <diff>@@ -62,7 +62,7 @@ class Services_Facebook_FQL extends Services_Facebook_Common
      */
     public function query($query)
     {
-        return $this-&gt;sendRequest('fql.query', array(
+        return $this-&gt;callMethod('fql.query', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'query' =&gt; $query
         ));</diff>
      <filename>Services/Facebook/FQL.php</filename>
    </modified>
    <modified>
      <diff>@@ -92,7 +92,7 @@ class Services_Facebook_Feed extends Services_Facebook_Common
             }
         } 
 
-        $result = $this-&gt;sendRequest('feed.publishStoryToUser', $args);
+        $result = $this-&gt;callMethod('feed.publishStoryToUser', $args);
         $check  = intval((string)$result-&gt;feed_publishStoryToUser_response_elt);
         return ($check == 1);
     }
@@ -160,7 +160,7 @@ class Services_Facebook_Feed extends Services_Facebook_Common
             }
         } 
 
-        $result = $this-&gt;sendRequest('feed.publishActionOfUser', $args);
+        $result = $this-&gt;callMethod('feed.publishActionOfUser', $args);
         $check  = intval((string)$result-&gt;feed_publishActionOfUser_response_elt);
         return ($check == 1);
     }
@@ -240,9 +240,8 @@ class Services_Facebook_Feed extends Services_Facebook_Common
             }
         }
 
-        $result = $this-&gt;sendRequest('feed.publishTemplatizedAction', $args);
-        $check  = intval((string)$result-&gt;feed_publishTemplatizedAction_response);
-        return ($check == 1);
+        $result = $this-&gt;callMethod('feed.publishTemplatizedAction', $args);
+        return (intval((string)$result) == 1);
     }
 
     /**
@@ -312,8 +311,8 @@ class Services_Facebook_Feed extends Services_Facebook_Common
             $args['full_story_template'] = json_encode($fullStoryTpl);
         }
         
-        $result = $this-&gt;sendRequest('feed.registerTemplateBundle', $args);
-        return (string)$result;
+        $result = $this-&gt;callMethod('feed.registerTemplateBundle', $args);
+        return (float) (string)$result;
     }
 
     /**
@@ -328,7 +327,7 @@ class Services_Facebook_Feed extends Services_Facebook_Common
      */
     public function getRegisteredTemplateBundles()
     {
-        return $this-&gt;sendRequest('feed.getRegisteredTemplateBundles');
+        return $this-&gt;callMethod('feed.getRegisteredTemplateBundles');
     }
 
     /**
@@ -345,7 +344,7 @@ class Services_Facebook_Feed extends Services_Facebook_Common
     public function getRegisteredTemplateBundleByID($id)
     {
         $args = array('template_bundle_id' =&gt; $id);
-        return $this-&gt;sendRequest('feed.getRegisteredTemplateBundleByID', $args);
+        return $this-&gt;callMethod('feed.getRegisteredTemplateBundleByID', $args);
     }
 
     /**
@@ -366,7 +365,7 @@ class Services_Facebook_Feed extends Services_Facebook_Common
     public function deactivateTemplateBundleByID($id)
     {
         $args = array('template_bundle_id' =&gt; $id);
-        $result = $this-&gt;sendRequest('feed.deactivateTemplateBundleByID', $args);
+        $result = $this-&gt;callMethod('feed.deactivateTemplateBundleByID', $args);
         return (intval($result) == 1);
     }
 
@@ -436,7 +435,7 @@ class Services_Facebook_Feed extends Services_Facebook_Common
             $args['body_general'] = $bodyGeneral;
         }
         
-        $result = $this-&gt;sendRequest('feed.publishUserAction', $args);
+        $result = $this-&gt;callMethod('feed.publishUserAction', $args);
         return (intval($result-&gt;feed_publishUserAction_response_elt) == 1);
     }
 </diff>
      <filename>Services/Facebook/Feed.php</filename>
    </modified>
    <modified>
      <diff>@@ -59,7 +59,7 @@ class Services_Facebook_Friends extends Services_Facebook_Common
             $uids2 = $uid2;
         }
 
-        $res = $this-&gt;sendRequest('friends.areFriends', array(
+        $res = $this-&gt;callMethod('friends.areFriends', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'uids1' =&gt; $uids1,
             'uids2' =&gt; $uids2
@@ -89,7 +89,7 @@ class Services_Facebook_Friends extends Services_Facebook_Common
             $args['session_key'] = $this-&gt;sessionKey;
         }
 
-        $result = $this-&gt;sendRequest('friends.get', $args);
+        $result = $this-&gt;callMethod('friends.get', $args);
 
         $ret = array();
         foreach ($result-&gt;uid as $uid) {
@@ -110,7 +110,7 @@ class Services_Facebook_Friends extends Services_Facebook_Common
      */
     public function getByList($flid)
     {
-        $result = $this-&gt;sendRequest('friends.get', array(
+        $result = $this-&gt;callMethod('friends.get', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'flid' =&gt; $flid
         ));
@@ -131,7 +131,7 @@ class Services_Facebook_Friends extends Services_Facebook_Common
      */
     public function getAppUsers()
     {
-        $result = $this-&gt;sendRequest('friends.getAppUsers', array(
+        $result = $this-&gt;callMethod('friends.getAppUsers', array(
             'session_key' =&gt; $this-&gt;sessionKey
         ));
 
@@ -152,7 +152,7 @@ class Services_Facebook_Friends extends Services_Facebook_Common
      */
     public function getLists()
     {
-        $result = $this-&gt;sendRequest('friends.getLists', array(
+        $result = $this-&gt;callMethod('friends.getLists', array(
             'session_key' =&gt; $this-&gt;sessionKey
         ));
         </diff>
      <filename>Services/Facebook/Friends.php</filename>
    </modified>
    <modified>
      <diff>@@ -50,7 +50,7 @@ class Services_Facebook_Groups extends Services_Facebook_Common
             }
         } 
         
-        return $this-&gt;sendRequest('groups.get', $args);
+        return $this-&gt;callMethod('groups.get', $args);
     }
 
     /**
@@ -62,10 +62,16 @@ class Services_Facebook_Groups extends Services_Facebook_Common
      */
     public function getMembers($gid)
     {
-        return $this-&gt;sendRequest('groups.getMembers', array(
+        $result = $this-&gt;callMethod('groups.getMembers', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'guid' =&gt; intval($gid)
         ));
+
+        $members = array();
+        foreach ($result-&gt;members-&gt;uid as $member) {
+            $members[] = (float) $member;
+        }
+        return $members;
     } 
 }
 </diff>
      <filename>Services/Facebook/Groups.php</filename>
    </modified>
    <modified>
      <diff>@@ -45,14 +45,14 @@ class Services_Facebook_MarketPlace extends Services_Facebook_Common
     public function createListing(Services_Facebook_MarketPlace_Listing $l)
     {
         $l-&gt;validate();
-        $result = $this-&gt;sendRequest('marketplace.createListing', array(
+        $result = $this-&gt;callMethod('marketplace.createListing', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'listing_id' =&gt; $l-&gt;id,
             'show_on_profile' =&gt; (($l-&gt;showInProfile) ? '1' : '0'),
             'listing_attrs' =&gt; json_encode($l-&gt;data)
         ));
 
-        $id    = intval((string)$result);
+        $id    = (float) (string) $result;
         $l-&gt;id = $id;
         return $l;
     }
@@ -65,9 +65,16 @@ class Services_Facebook_MarketPlace extends Services_Facebook_Common
      */
     public function getCategories()
     {
-        return $this-&gt;sendRequest('marketplace.getCategories', array(
+        $result = $this-&gt;callMethod('marketplace.getCategories', array(
             'session_key' =&gt; $this-&gt;sessionKey
         ));
+
+        $categories = array();
+        foreach ($result as $category) {
+            $categories[] = (string) $category;
+        }
+
+        return $categories;
     }
 
     /**
@@ -80,7 +87,7 @@ class Services_Facebook_MarketPlace extends Services_Facebook_Common
      */
     public function getSubCategories($category)
     {
-        return $this-&gt;sendRequest('marketplace.getSubCategories', array(
+        return $this-&gt;callMethod('marketplace.getSubCategories', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'category' =&gt; $category
         ));
@@ -97,7 +104,7 @@ class Services_Facebook_MarketPlace extends Services_Facebook_Common
      */
     public function getListings($listingIds = null, $uids = null)
     {
-        if ((!$listingIds) || (!$uids)) {
+        if ((!$listingIds) &amp;&amp; (!$uids)) {
             throw new Services_Facebook_Exception(
                 'Must specifiy at least 1 user or listing id'
             );
@@ -111,7 +118,7 @@ class Services_Facebook_MarketPlace extends Services_Facebook_Common
             $uids = implode(',', $listingIds);
         }
 
-        return $this-&gt;sendRequest('marketplace.getListings', array(
+        return $this-&gt;callMethod('marketplace.getListings', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'listing_ids' =&gt; $listingIds,
             'uids' =&gt; $uids
@@ -133,7 +140,7 @@ class Services_Facebook_MarketPlace extends Services_Facebook_Common
      */
     public function removeListing($listingId, $status = 'DEFAULT')
     {
-        $result = $this-&gt;sendRequest('marketplace.removeListing', array(
+        $result = $this-&gt;callMethod('marketplace.removeListing', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'listing_id' =&gt; $listingId,
             'status' =&gt; $status
@@ -168,7 +175,7 @@ class Services_Facebook_MarketPlace extends Services_Facebook_Common
             $args['subcategory'] = $subCategory;
         }
 
-        return $this-&gt;sendRequest('marketplace.search', $args);
+        return $this-&gt;callMethod('marketplace.search', $args);
     }
 }
 </diff>
      <filename>Services/Facebook/MarketPlace.php</filename>
    </modified>
    <modified>
      <diff>@@ -45,7 +45,7 @@ class Services_Facebook_Pages extends Services_Facebook_Common
      **/
     public function isAdmin($pageId = null)
     {
-        $result = $this-&gt;sendRequest('pages.isAdmin', array(
+        $result = $this-&gt;callMethod('pages.isAdmin', array(
                                      'session_key' =&gt; $this-&gt;sessionKey,
                                      'page_id' =&gt; $pageId
                   ));
@@ -63,7 +63,7 @@ class Services_Facebook_Pages extends Services_Facebook_Common
      **/
     public function isAppAdded($pageId = null)
     {
-        $result = $this-&gt;sendRequest('pages.isAppAdded', array(
+        $result = $this-&gt;callMethod('pages.isAppAdded', array(
                                      'session_key' =&gt; $this-&gt;sessionKey,
                                      'page_id' =&gt; $pageId
                   ));
@@ -84,7 +84,7 @@ class Services_Facebook_Pages extends Services_Facebook_Common
      **/
     public function isFan($pageId = null, $uid = null)
     {
-        $result = $this-&gt;sendRequest('pages.isFan', array(
+        $result = $this-&gt;callMethod('pages.isFan', array(
                                      'session_key' =&gt; $this-&gt;sessionKey,
                                      'page_id'  =&gt; $pageId,
                                      'uid'      =&gt; $uid</diff>
      <filename>Services/Facebook/Pages.php</filename>
    </modified>
    <modified>
      <diff>@@ -77,7 +77,7 @@ class Services_Facebook_Photos extends Services_Facebook_Common
             $args['tag_text'] = $tag;
         }
 
-        $res = $this-&gt;sendRequest('photos.addTag', $args);
+        $result = $this-&gt;callMethod('photos.addTag', $args);
         return (intval((string)$result) == 1);
     }
 
@@ -91,7 +91,7 @@ class Services_Facebook_Photos extends Services_Facebook_Common
      */
     public function addTags($pid, array $tags)
     {
-        $res = $this-&gt;sendRequest('photos.addTag', array(
+        $result = $this-&gt;callMethod('photos.addTag', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'tags' =&gt; json_encode($tags)
         ));
@@ -124,7 +124,7 @@ class Services_Facebook_Photos extends Services_Facebook_Common
             $args['description'] = $description;
         }
 
-        return $this-&gt;sendRequest('photos.createAlbum', $args);
+        return $this-&gt;callMethod('photos.createAlbum', $args);
     }
 
     /**
@@ -141,7 +141,7 @@ class Services_Facebook_Photos extends Services_Facebook_Common
             $pids = implode(',', $pids);
         }
 
-        return $this-&gt;sendRequest('photos.get', array(
+        return $this-&gt;callMethod('photos.get', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'pids' =&gt; $pids
         ));
@@ -157,7 +157,7 @@ class Services_Facebook_Photos extends Services_Facebook_Common
      */
     public function getPhotosByAlbum($aid)
     {
-        return $this-&gt;sendRequest('photos.get', array(
+        return $this-&gt;callMethod('photos.get', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'aid' =&gt; $aid
         ));
@@ -173,7 +173,7 @@ class Services_Facebook_Photos extends Services_Facebook_Common
      */
     public function getPhotosByUser($uid)
     {
-        return $this-&gt;sendRequest('photos.get', array(
+        return $this-&gt;callMethod('photos.get', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'subj_id' =&gt; $uid
         ));
@@ -189,7 +189,7 @@ class Services_Facebook_Photos extends Services_Facebook_Common
      */
     public function getAlbumsByPhotos(array $pids)
     {
-        return $this-&gt;sendRequest('photos.getAlbums', array(
+        return $this-&gt;callMethod('photos.getAlbums', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'pids' =&gt; implode(',', $pids)
         ));
@@ -205,7 +205,7 @@ class Services_Facebook_Photos extends Services_Facebook_Common
      */
     public function getAlbumsByUser($uid)
     {
-        return $this-&gt;sendRequest('photos.getAlbums', array(
+        return $this-&gt;callMethod('photos.getAlbums', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'uid' =&gt; $uid
         ));
@@ -221,7 +221,7 @@ class Services_Facebook_Photos extends Services_Facebook_Common
      */
     public function getTags(array $pids)
     {
-        return $this-&gt;sendRequest('photos.getTags', array(
+        return $this-&gt;callMethod('photos.getTags', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'pids' =&gt; implode(',', $pids)
         ));</diff>
      <filename>Services/Facebook/Photos.php</filename>
    </modified>
    <modified>
      <diff>@@ -67,7 +67,7 @@ class Services_Facebook_Profile extends Services_Facebook_Common
             $args['uid'] = $uid;
         }
 
-        $result = $this-&gt;sendRequest('profile.setFBML', $args);
+        $result = $this-&gt;callMethod('profile.setFBML', $args);
         $check  = intval((string)$result);
         return ($check == 1);
     }
@@ -87,7 +87,8 @@ class Services_Facebook_Profile extends Services_Facebook_Common
             $args['uid'] = $uid;
         }
 
-        return $this-&gt;sendRequest('profile.getFBML', $args);
+        $result = $this-&gt;callMethod('profile.getFBML', $args);
+        return (string) $result;
     }
 }
 </diff>
      <filename>Services/Facebook/Profile.php</filename>
    </modified>
    <modified>
      <diff>@@ -65,7 +65,7 @@ class Services_Facebook_Users extends Services_Facebook_Common
      */
     public function isAppAdded()
     {
-        $result = $this-&gt;sendRequest('users.isAppAdded', array(
+        $result = $this-&gt;callMethod('users.isAppAdded', array(
             'session_key' =&gt; $this-&gt;sessionKey
         )); 
 
@@ -96,7 +96,7 @@ class Services_Facebook_Users extends Services_Facebook_Common
             $args['status'] = $status;
         }
 
-        $res = $this-&gt;sendRequest('users.setStatus', $args); 
+        $res = $this-&gt;callMethod('users.setStatus', $args); 
         return (intval((string)$res) == 1);
     }
 
@@ -119,7 +119,7 @@ class Services_Facebook_Users extends Services_Facebook_Common
             $fields = $this-&gt;userFields;
         }
 
-        return $this-&gt;sendRequest('users.getInfo', array(
+        return $this-&gt;callMethod('users.getInfo', array(
             'session_key' =&gt; $this-&gt;sessionKey,
             'uids' =&gt; $uids,
             'fields' =&gt; implode(',', $fields)
@@ -138,7 +138,7 @@ class Services_Facebook_Users extends Services_Facebook_Common
      */
     public function getLoggedInUser()
     {
-        $result = $this-&gt;sendRequest('users.getLoggedInUser', array(
+        $result = $this-&gt;callMethod('users.getLoggedInUser', array(
             'session_key' =&gt; $this-&gt;sessionKey
         ));
 
@@ -180,7 +180,7 @@ class Services_Facebook_Users extends Services_Facebook_Common
                 'given for hadAppPermission.');
         }
 
-        $result = $this-&gt;sendRequest('users.hasAppPermission', $params);
+        $result = $this-&gt;callMethod('users.hasAppPermission', $params);
 
         return (intval((string)$result) == 1);
     }</diff>
      <filename>Services/Facebook/Users.php</filename>
    </modified>
    <modified>
      <diff>@@ -1,1451 +1,162 @@
 &lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
-&lt;package packagerversion=&quot;0.1.0&quot; 
-         version=&quot;2.0&quot; 
-         xmlns=&quot;http://pear.php.net/dtd/package-2.0&quot; 
-         xmlns:tasks=&quot;http://pear.php.net/dtd/tasks-1.0&quot; 
-         xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; 
-         xsi:schemaLocation=&quot;http://pear.php.net/dtd/tasks-1.0
-                             http://pear.php.net/dtd/tasks-1.0.xsd
-                             http://pear.php.net/dtd/package-2.0
-                             http://pear.php.net/dtd/package-2.0.xsd&quot;&gt;
-    &lt;name&gt;Services_Facebook&lt;/name&gt;
-    &lt;channel&gt;pear.php.net&lt;/channel&gt;
-    &lt;summary&gt;PHP interface to Facebook's API&lt;/summary&gt;
-    &lt;description&gt;An interface for accessing Facebook's web services API at http://api.facebook.com.&lt;/description&gt;
-    &lt;lead&gt;
-        &lt;name&gt;Joe Stump&lt;/name&gt;
-        &lt;user&gt;jstump&lt;/user&gt;
-        &lt;email&gt;joe@joestump.net&lt;/email&gt;
-        &lt;active&gt;yes&lt;/active&gt;
-    &lt;/lead&gt;
-    &lt;lead&gt;
-        &lt;name&gt;Jeff Hodsdon&lt;/name&gt;
-        &lt;user&gt;jeffhodsdon&lt;/user&gt;
-        &lt;email&gt;jeffhodsdon@gmail.com&lt;/email&gt;
-        &lt;active&gt;yes&lt;/active&gt;
-    &lt;/lead&gt;
-    &lt;developer&gt;
-        &lt;name&gt;Travis Swicegood&lt;/name&gt;
-        &lt;user&gt;tswicegood&lt;/user&gt;
-        &lt;email&gt;development@domain51.com&lt;/email&gt;
-        &lt;active&gt;yes&lt;/active&gt;
-    &lt;/developer&gt;
-    &lt;date&gt;2008-12-18&lt;/date&gt;
-    &lt;version&gt;
-        &lt;release&gt;0.1.8&lt;/release&gt;
-        &lt;api&gt;0.1.0&lt;/api&gt;
-    &lt;/version&gt;
-    &lt;stability&gt;
-        &lt;release&gt;alpha&lt;/release&gt;
-        &lt;api&gt;alpha&lt;/api&gt;
-    &lt;/stability&gt;
-    &lt;license uri=&quot;http://www.opensource.org/licenses/bsd-license.php&quot;&gt;New BSD License&lt;/license&gt;
-    &lt;notes&gt;&lt;![CDATA[
-        * Updated friends.get to support passing in a uid  as  an argument.
-]]&gt;&lt;/notes&gt;
-    &lt;contents&gt;
-        &lt;dir name=&quot;/&quot;&gt;
-            &lt;dir name=&quot;Services&quot;&gt;
-                &lt;file name=&quot;Facebook.php&quot; role=&quot;php&quot;&gt;
-                    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                &lt;/file&gt;
-                &lt;dir name=&quot;Facebook&quot;&gt;
-                    &lt;file name=&quot;Admin.php&quot; role=&quot;php&quot;&gt;
-                        &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                    &lt;/file&gt;
-                    &lt;file name=&quot;Application.php&quot; role=&quot;php&quot;&gt;
-                        &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                    &lt;/file&gt;
-                    &lt;file name=&quot;Auth.php&quot; role=&quot;php&quot;&gt;
-                        &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                    &lt;/file&gt;
-                    &lt;file name=&quot;Common.php&quot; role=&quot;php&quot;&gt;
-                        &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                    &lt;/file&gt;
-                    &lt;file name=&quot;Connect.php&quot; role=&quot;php&quot;&gt;
-                        &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                    &lt;/file&gt;
-                    &lt;file name=&quot;Exception.php&quot; role=&quot;php&quot;&gt;
-                        &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                    &lt;/file&gt;
-                    &lt;file name=&quot;Events.php&quot; role=&quot;php&quot;&gt;
-                        &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                    &lt;/file&gt;
-                    &lt;file name=&quot;FBML.php&quot; role=&quot;php&quot;&gt;
-                        &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                    &lt;/file&gt;
-                    &lt;file name=&quot;FQL.php&quot; role=&quot;php&quot;&gt;
-                        &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                    &lt;/file&gt;
-                    &lt;file name=&quot;Feed.php&quot; role=&quot;php&quot;&gt;
-                        &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                    &lt;/file&gt;
-                    &lt;file name=&quot;Friends.php&quot; role=&quot;php&quot;&gt;
-                        &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                    &lt;/file&gt;
-                    &lt;file name=&quot;Groups.php&quot; role=&quot;php&quot;&gt;
-                        &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                    &lt;/file&gt;
-                    &lt;file name=&quot;MarketPlace.php&quot; role=&quot;php&quot;&gt;
-                        &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                    &lt;/file&gt;
-                    &lt;file name=&quot;Notifications.php&quot; role=&quot;php&quot;&gt;
-                        &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                    &lt;/file&gt;
-                    &lt;file name=&quot;Pages.php&quot; role=&quot;php&quot;&gt;
-                        &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                    &lt;/file&gt;
-                    &lt;file name=&quot;Photos.php&quot; role=&quot;php&quot;&gt;
-                        &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                    &lt;/file&gt;
-                    &lt;file name=&quot;Profile.php&quot; role=&quot;php&quot;&gt;
-                        &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                    &lt;/file&gt;
-                    &lt;file name=&quot;Share.php&quot; role=&quot;php&quot;&gt;
-                        &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                    &lt;/file&gt;
-                    &lt;file name=&quot;Users.php&quot; role=&quot;php&quot;&gt;
-                        &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                    &lt;/file&gt;
-                    &lt;dir name=&quot;MarketPlace&quot;&gt;
-                        &lt;file name=&quot;Listing.php&quot; role=&quot;php&quot;&gt;
-                            &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                        &lt;/file&gt;
-                    &lt;/dir&gt;
-                &lt;/dir&gt;
-            &lt;/dir&gt;
-            &lt;dir name=&quot;tests&quot;&gt;
-                &lt;file name=&quot;010-users-isAppAdded.phpt&quot;
-                      role=&quot;test&quot; /&gt;
-                &lt;file name=&quot;012-users-getInfo.phpt&quot;
-                      role=&quot;test&quot; /&gt; 
-                &lt;file name=&quot;014-users-getLoggedInUser.phpt&quot;
-                      role=&quot;test&quot; /&gt; 
-                &lt;file name=&quot;020-profile-setFBML.phpt&quot;
-                      role=&quot;test&quot; /&gt; 
-                &lt;file name=&quot;022-profile-getFBML.phpt&quot;
-                      role=&quot;test&quot; /&gt; 
-                &lt;file name=&quot;030-friends-areFriends.phpt&quot;
-                      role=&quot;test&quot; /&gt; 
-                &lt;file name=&quot;032-friends-get.phpt&quot;
-                      role=&quot;test&quot; /&gt; 
-                &lt;file name=&quot;034-friends-getAppUsers.phpt&quot;
-                      role=&quot;test&quot; /&gt; 
-                &lt;file name=&quot;040-fql-query.phpt&quot;
-                      role=&quot;test&quot; /&gt; 
-                &lt;file name=&quot;050-feed-publishStoryToUser.phpt&quot;
-                      role=&quot;test&quot; /&gt; 
-                &lt;file name=&quot;052-feed-publishActionOfUser.phpt&quot;
-                      role=&quot;test&quot; /&gt; 
-                &lt;file name=&quot;060-photos-createAlbum.phpt&quot;
-                      role=&quot;test&quot; /&gt; 
-                &lt;file name=&quot;062-photos-upload.phpt&quot;
-                      role=&quot;test&quot; /&gt; 
-                &lt;file name=&quot;080-application-getPublicInfoById.phpt&quot;
-                      role=&quot;test&quot; /&gt;
-                &lt;file name=&quot;081-application-getPublicInfoByApiKey.phpt&quot;
-                      role=&quot;test&quot; /&gt;
-                &lt;file name=&quot;082-application-getPublicInfoByCanvasName.phpt&quot;
-                      role=&quot;test&quot; /&gt;
-                &lt;file name=&quot;090-admin-getNotificationsPerDay.phpt&quot;
-                      role=&quot;test&quot; /&gt;
-                &lt;file name=&quot;091-admin-getRequestsPerDay.phpt&quot;
-                      role=&quot;test&quot; /&gt;
-                &lt;file name=&quot;092-admin-getAppProperties.phpt&quot;
-                      role=&quot;test&quot; /&gt;
-                &lt;file name=&quot;110-pages-isAdmin.phpt&quot;
-                      role=&quot;test&quot; /&gt;
-                &lt;file name=&quot;111-pages-isFan.phpt&quot;
-                      role=&quot;test&quot; /&gt;
-                &lt;file name=&quot;112-pages-isAppAdded.phpt&quot;
-                      role=&quot;test&quot; /&gt;
-                &lt;file name=&quot;120-marketplace-createListing.phpt&quot;
-                      role=&quot;test&quot; /&gt;
-                &lt;file name=&quot;121-marketplace-getCategories.phpt&quot;
-                      role=&quot;test&quot; /&gt;
-                &lt;file name=&quot;122-marketplace-getSubCategory.phpt&quot;
-                      role=&quot;test&quot; /&gt;
-                &lt;file name=&quot;123-marketplace-getListings.phpt&quot;
-                      role=&quot;test&quot; /&gt;
-                &lt;file name=&quot;124-marketplace-removeListing.phpt&quot;
-                      role=&quot;test&quot; /&gt;
-                &lt;file name=&quot;125-marketplace-search.phpt&quot;
-                      role=&quot;test&quot; /&gt;
-                &lt;file name=&quot;130-connect-hashEmail.phpt&quot;
-                      role=&quot;test&quot; /&gt;
-                &lt;file name=&quot;131-connect-unregisterUsers.phpt&quot;
-                      role=&quot;test&quot; /&gt;
-                &lt;file name=&quot;132-connect-registerUsers.phpt&quot;
-                      role=&quot;test&quot; /&gt;
-                &lt;file name=&quot;test-image.jpg&quot;
-                      role=&quot;test&quot; /&gt; 
-                &lt;file name=&quot;tests-config.php.example&quot;
-                      role=&quot;test&quot; /&gt; 
-            &lt;/dir&gt;
-        &lt;/dir&gt;
-    &lt;/contents&gt;
-    &lt;dependencies&gt;
-        &lt;required&gt;
-            &lt;php&gt;
-                &lt;min&gt;5.1.0&lt;/min&gt;
-            &lt;/php&gt;
-            &lt;pearinstaller&gt;
-                &lt;min&gt;1.4.0b1&lt;/min&gt;
-            &lt;/pearinstaller&gt;
-            &lt;package&gt;
-                &lt;name&gt;Validate&lt;/name&gt;
-                &lt;channel&gt;pear.php.net&lt;/channel&gt;
-                &lt;min&gt;0.8.1&lt;/min&gt;
-            &lt;/package&gt;
-            &lt;extension&gt;
-                &lt;name&gt;curl&lt;/name&gt;
-            &lt;/extension&gt;
-        &lt;/required&gt;
-    &lt;/dependencies&gt;
-    &lt;phprelease /&gt;
-    &lt;changelog&gt;
-        &lt;release&gt;
-            &lt;date&gt;2008-09-05&lt;/date&gt;
-            &lt;version&gt;
-                &lt;release&gt;0.1.4&lt;/release&gt;
-                &lt;api&gt;0.1.0&lt;/api&gt;
-            &lt;/version&gt;
-            &lt;stability&gt;
-                &lt;release&gt;alpha&lt;/release&gt;
-                &lt;api&gt;alpha&lt;/api&gt;
-            &lt;/stability&gt;
-            &lt;license uri=&quot;http://www.opensource.org/licenses/bsd-license.php&quot;&gt;New BSD License&lt;/license&gt;
-            &lt;notes&gt;&lt;![CDATA[
-                * 1. Added singleton method for Services_Facebook. 2. Updated Notifications.send() to use new names for types. (user_to_user and app_to_user) 
-                * Added CURL timeout for requests.
-                * Added method getPhoto for users.
-        ]]&gt;&lt;/notes&gt;
-            &lt;contents&gt;
-                &lt;dir name=&quot;/&quot;&gt;
-                    &lt;dir name=&quot;Services&quot;&gt;
-                        &lt;file name=&quot;Facebook.php&quot; role=&quot;php&quot;&gt;
-                            &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                        &lt;/file&gt;
-                        &lt;dir name=&quot;Facebook&quot;&gt;
-                            &lt;file name=&quot;Admin.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Application.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Auth.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Common.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Connect.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Exception.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Events.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;FBML.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;FQL.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Feed.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Friends.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Groups.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;MarketPlace.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Notifications.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Pages.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Photos.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Profile.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Share.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Users.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;dir name=&quot;MarketPlace&quot;&gt;
-                                &lt;file name=&quot;Listing.php&quot; role=&quot;php&quot;&gt;
-                                    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                                &lt;/file&gt;
-                            &lt;/dir&gt;
-                        &lt;/dir&gt;
-                    &lt;/dir&gt;
-                    &lt;dir name=&quot;tests&quot;&gt;
-                        &lt;file name=&quot;010-users-isAppAdded.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;012-users-getInfo.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;014-users-getLoggedInUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;020-profile-setFBML.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;022-profile-getFBML.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;030-friends-areFriends.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;032-friends-get.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;034-friends-getAppUsers.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;040-fql-query.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;050-feed-publishStoryToUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;052-feed-publishActionOfUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;060-photos-createAlbum.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;062-photos-upload.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;080-application-getPublicInfoById.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;081-application-getPublicInfoByApiKey.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;082-application-getPublicInfoByCanvasName.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;090-admin-getNotificationsPerDay.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;091-admin-getRequestsPerDay.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;092-admin-getAppProperties.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;110-pages-isAdmin.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;111-pages-isFan.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;112-pages-isAppAdded.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;120-marketplace-createListing.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;121-marketplace-getCategories.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;122-marketplace-getSubCategory.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;123-marketplace-getListings.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;124-marketplace-removeListing.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;125-marketplace-search.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;130-connect-hashEmail.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;131-connect-unregisterUsers.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;132-connect-registerUsers.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;test-image.jpg&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;tests-config.php.example&quot;
-                              role=&quot;test&quot; /&gt; 
-                    &lt;/dir&gt;
-                &lt;/dir&gt;
-            &lt;/contents&gt;
-        &lt;/release&gt;
-        &lt;release&gt;
-            &lt;date&gt;2008-09-05&lt;/date&gt;
-            &lt;version&gt;
-                &lt;release&gt;0.1.4&lt;/release&gt;
-                &lt;api&gt;0.1.0&lt;/api&gt;
-            &lt;/version&gt;
-            &lt;stability&gt;
-                &lt;release&gt;alpha&lt;/release&gt;
-                &lt;api&gt;alpha&lt;/api&gt;
-            &lt;/stability&gt;
-            &lt;license uri=&quot;http://www.opensource.org/licenses/bsd-license.php&quot;&gt;New BSD License&lt;/license&gt;
-            &lt;notes&gt;&lt;![CDATA[
-                * Added missing dependency for Validate.
-                * Fixed a typo in a constant in Services_Facebook_Notifications.
-        ]]&gt;&lt;/notes&gt;
-            &lt;contents&gt;
-                &lt;dir name=&quot;/&quot;&gt;
-                    &lt;dir name=&quot;Services&quot;&gt;
-                        &lt;file name=&quot;Facebook.php&quot; role=&quot;php&quot;&gt;
-                            &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                        &lt;/file&gt;
-                        &lt;dir name=&quot;Facebook&quot;&gt;
-                            &lt;file name=&quot;Admin.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Application.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Auth.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Common.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Connect.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Exception.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Events.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;FBML.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;FQL.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Feed.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Friends.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Groups.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;MarketPlace.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Notifications.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Pages.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Photos.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Profile.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Share.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Users.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;dir name=&quot;MarketPlace&quot;&gt;
-                                &lt;file name=&quot;Listing.php&quot; role=&quot;php&quot;&gt;
-                                    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                                &lt;/file&gt;
-                            &lt;/dir&gt;
-                        &lt;/dir&gt;
-                    &lt;/dir&gt;
-                    &lt;dir name=&quot;tests&quot;&gt;
-                        &lt;file name=&quot;010-users-isAppAdded.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;012-users-getInfo.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;014-users-getLoggedInUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;020-profile-setFBML.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;022-profile-getFBML.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;030-friends-areFriends.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;032-friends-get.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;034-friends-getAppUsers.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;040-fql-query.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;050-feed-publishStoryToUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;052-feed-publishActionOfUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;060-photos-createAlbum.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;062-photos-upload.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;080-application-getPublicInfoById.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;081-application-getPublicInfoByApiKey.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;082-application-getPublicInfoByCanvasName.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;090-admin-getNotificationsPerDay.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;091-admin-getRequestsPerDay.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;092-admin-getAppProperties.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;110-pages-isAdmin.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;111-pages-isFan.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;112-pages-isAppAdded.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;120-marketplace-createListing.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;121-marketplace-getCategories.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;122-marketplace-getSubCategory.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;123-marketplace-getListings.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;124-marketplace-removeListing.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;125-marketplace-search.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;130-connect-hashEmail.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;131-connect-unregisterUsers.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;132-connect-registerUsers.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;test-image.jpg&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;tests-config.php.example&quot;
-                              role=&quot;test&quot; /&gt; 
-                    &lt;/dir&gt;
-                &lt;/dir&gt;
-            &lt;/contents&gt;
-        &lt;/release&gt;
-        &lt;release&gt;
-                &lt;notes&gt;&lt;![CDATA[
-                * Added new auth endpoints.
-                * Added new modifications to notification.send().
-                * Added new feed endpoints.
-                * Added get and set for api url to allow use of beta and connect api urls
-                * Additions to fix Bug #14351
-                * Thanks to Matt Fonda for the patches!
-                * Applied patch for fix regarding PEAR Bug #14361.  Undefined variable in __get.
-                * Fixed bug for undefined varible $url in Services_Facebook_Common::sendRequest(). Fixes #14349. 
-        ]]&gt;&lt;/notes&gt;
-            &lt;contents&gt;
-                &lt;dir name=&quot;/&quot;&gt;
-                    &lt;dir name=&quot;Services&quot;&gt;
-                        &lt;file name=&quot;Facebook.php&quot; role=&quot;php&quot;&gt;
-                            &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                        &lt;/file&gt;
-                        &lt;dir name=&quot;Facebook&quot;&gt;
-                            &lt;file name=&quot;Admin.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Application.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Auth.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Common.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Connect.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Exception.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Events.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;FBML.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;FQL.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Feed.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Friends.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Groups.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;MarketPlace.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Notifications.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Pages.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Photos.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Profile.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Share.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Users.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;dir name=&quot;MarketPlace&quot;&gt;
-                                &lt;file name=&quot;Listing.php&quot; role=&quot;php&quot;&gt;
-                                    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                                &lt;/file&gt;
-                            &lt;/dir&gt;
-                        &lt;/dir&gt;
-                    &lt;/dir&gt;
-                    &lt;dir name=&quot;tests&quot;&gt;
-                        &lt;file name=&quot;010-users-isAppAdded.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;012-users-getInfo.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;014-users-getLoggedInUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;020-profile-setFBML.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;022-profile-getFBML.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;030-friends-areFriends.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;032-friends-get.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;034-friends-getAppUsers.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;040-fql-query.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;050-feed-publishStoryToUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;052-feed-publishActionOfUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;060-photos-createAlbum.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;062-photos-upload.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;080-application-getPublicInfoById.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;081-application-getPublicInfoByApiKey.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;082-application-getPublicInfoByCanvasName.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;090-admin-getNotificationsPerDay.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;091-admin-getRequestsPerDay.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;092-admin-getAppProperties.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;110-pages-isAdmin.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;111-pages-isFan.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;112-pages-isAppAdded.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;120-marketplace-createListing.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;121-marketplace-getCategories.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;122-marketplace-getSubCategory.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;123-marketplace-getListings.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;124-marketplace-removeListing.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;125-marketplace-search.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;130-connect-hashEmail.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;131-connect-unregisterUsers.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;132-connect-registerUsers.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;test-image.jpg&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;tests-config.php.example&quot;
-                              role=&quot;test&quot; /&gt; 
-                    &lt;/dir&gt;
-                &lt;/dir&gt;
-            &lt;/contents&gt;
-        &lt;/release&gt;
-        &lt;release&gt;
-            &lt;date&gt;2008-06-22&lt;/date&gt;
-            &lt;version&gt;
-                &lt;release&gt;0.1.1&lt;/release&gt;
-                &lt;api&gt;0.1.0&lt;/api&gt;
-            &lt;/version&gt;
-            &lt;stability&gt;
-                &lt;release&gt;alpha&lt;/release&gt;
-                &lt;api&gt;alpha&lt;/api&gt;
-            &lt;/stability&gt;
-            &lt;license uri=&quot;http://www.opensource.org/licenses/bsd-license.php&quot;&gt;New BSD License&lt;/license&gt;
-            &lt;notes&gt;&lt;![CDATA[
-                * Fixed parse error in Feed.php (Bug #14196)
-                * Docblock cleanup
-        ]]&gt;&lt;/notes&gt;
-            &lt;contents&gt;
-                &lt;dir name=&quot;/&quot;&gt;
-                    &lt;dir name=&quot;Services&quot;&gt;
-                        &lt;file name=&quot;Facebook.php&quot; role=&quot;php&quot;&gt;
-                            &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                        &lt;/file&gt;
-                        &lt;dir name=&quot;Facebook&quot;&gt;
-                            &lt;file name=&quot;Admin.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Application.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Auth.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Common.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Exception.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Events.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;FBML.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;FQL.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Feed.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Friends.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Groups.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;MarketPlace.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Notifications.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Pages.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Photos.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Profile.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Share.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;file name=&quot;Users.php&quot; role=&quot;php&quot;&gt;
-                                &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                            &lt;/file&gt;
-                            &lt;dir name=&quot;MarketPlace&quot;&gt;
-                                &lt;file name=&quot;Listing.php&quot; role=&quot;php&quot;&gt;
-                                    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                                &lt;/file&gt;
-                            &lt;/dir&gt;
-                        &lt;/dir&gt;
-                    &lt;/dir&gt;
-                    &lt;dir name=&quot;tests&quot;&gt;
-                        &lt;file name=&quot;010-users-isAppAdded.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;012-users-getInfo.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;014-users-getLoggedInUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;020-profile-setFBML.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;022-profile-getFBML.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;030-friends-areFriends.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;032-friends-get.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;034-friends-getAppUsers.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;040-fql-query.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;050-feed-publishStoryToUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;052-feed-publishActionOfUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;060-photos-createAlbum.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;062-photos-upload.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;080-application-getPublicInfoById.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;081-application-getPublicInfoByApiKey.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;082-application-getPublicInfoByCanvasName.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;090-admin-getNotificationsPerDay.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;091-admin-getRequestsPerDay.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;092-admin-getAppProperties.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;110-pages-isAdmin.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;111-pages-isFan.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;112-pages-isAppAdded.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;120-marketplace-createListing.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;121-marketplace-getCategories.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;122-marketplace-getSubCategory.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;123-marketplace-getListings.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;124-marketplace-removeListing.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;125-marketplace-search.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;test-image.jpg&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;tests-config.php.example&quot;
-                              role=&quot;test&quot; /&gt; 
-                    &lt;/dir&gt;
-                &lt;/dir&gt;
-            &lt;/contents&gt;
-        &lt;/release&gt;
-        &lt;release&gt;
-           &lt;date&gt;2008-04-11&lt;/date&gt;
-           &lt;version&gt;
-               &lt;release&gt;0.1.0&lt;/release&gt;
-               &lt;api&gt;0.1.0&lt;/api&gt;
-           &lt;/version&gt;
-           &lt;stability&gt;
-               &lt;release&gt;alpha&lt;/release&gt;
-               &lt;api&gt;alpha&lt;/api&gt;
-           &lt;/stability&gt;
-           &lt;license uri=&quot;http://www.opensource.org/licenses/bsd-license.php&quot;&gt;New BSD License&lt;/license&gt;
-           &lt;notes&gt;&lt;![CDATA[
-               *Initial release
-       ]]&gt;&lt;/notes&gt;
-           &lt;contents&gt;
-               &lt;dir name=&quot;/&quot;&gt;
-                   &lt;dir name=&quot;Services&quot;&gt;
-                       &lt;file name=&quot;Facebook.php&quot; role=&quot;php&quot;&gt;
-                           &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                       &lt;/file&gt;
-                       &lt;dir name=&quot;Facebook&quot;&gt;
-                           &lt;file name=&quot;Admin.php&quot; role=&quot;php&quot;&gt;
-                               &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                           &lt;/file&gt;
-                           &lt;file name=&quot;Application.php&quot; role=&quot;php&quot;&gt;
-                               &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                           &lt;/file&gt;
-                           &lt;file name=&quot;Auth.php&quot; role=&quot;php&quot;&gt;
-                               &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                           &lt;/file&gt;
-                           &lt;file name=&quot;Common.php&quot; role=&quot;php&quot;&gt;
-                               &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                           &lt;/file&gt;
-                           &lt;file name=&quot;Exception.php&quot; role=&quot;php&quot;&gt;
-                               &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                           &lt;/file&gt;
-                           &lt;file name=&quot;Events.php&quot; role=&quot;php&quot;&gt;
-                               &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                           &lt;/file&gt;
-                           &lt;file name=&quot;FBML.php&quot; role=&quot;php&quot;&gt;
-                               &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                           &lt;/file&gt;
-                           &lt;file name=&quot;FQL.php&quot; role=&quot;php&quot;&gt;
-                               &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                           &lt;/file&gt;
-                           &lt;file name=&quot;Feed.php&quot; role=&quot;php&quot;&gt;
-                               &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                           &lt;/file&gt;
-                           &lt;file name=&quot;Friends.php&quot; role=&quot;php&quot;&gt;
-                               &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                           &lt;/file&gt;
-                           &lt;file name=&quot;Groups.php&quot; role=&quot;php&quot;&gt;
-                               &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                           &lt;/file&gt;
-                           &lt;file name=&quot;MarketPlace.php&quot; role=&quot;php&quot;&gt;
-                               &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                           &lt;/file&gt;
-                           &lt;file name=&quot;Notifications.php&quot; role=&quot;php&quot;&gt;
-                               &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                           &lt;/file&gt;
-                           &lt;file name=&quot;Pages.php&quot; role=&quot;php&quot;&gt;
-                               &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                           &lt;/file&gt;
-                           &lt;file name=&quot;Photos.php&quot; role=&quot;php&quot;&gt;
-                               &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                           &lt;/file&gt;
-                           &lt;file name=&quot;Profile.php&quot; role=&quot;php&quot;&gt;
-                               &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                           &lt;/file&gt;
-                           &lt;file name=&quot;Share.php&quot; role=&quot;php&quot;&gt;
-                               &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                           &lt;/file&gt;
-                           &lt;file name=&quot;Users.php&quot; role=&quot;php&quot;&gt;
-                               &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                           &lt;/file&gt;
-                           &lt;dir name=&quot;MarketPlace&quot;&gt;
-                               &lt;file name=&quot;Listing.php&quot; role=&quot;php&quot;&gt;
-                                   &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
-                               &lt;/file&gt;
-                           &lt;/dir&gt;
-                       &lt;/dir&gt;
-                   &lt;/dir&gt;
-                   &lt;dir name=&quot;tests&quot;&gt;
-                       &lt;file name=&quot;010-users-isAppAdded.phpt&quot;
-                             role=&quot;test&quot; /&gt;
-                       &lt;file name=&quot;012-users-getInfo.phpt&quot;
-                             role=&quot;test&quot; /&gt; 
-                       &lt;file name=&quot;014-users-getLoggedInUser.phpt&quot;
-                             role=&quot;test&quot; /&gt; 
-                       &lt;file name=&quot;020-profile-setFBML.phpt&quot;
-                             role=&quot;test&quot; /&gt; 
-                       &lt;file name=&quot;022-profile-getFBML.phpt&quot;
-                             role=&quot;test&quot; /&gt; 
-                       &lt;file name=&quot;030-friends-areFriends.phpt&quot;
-                             role=&quot;test&quot; /&gt; 
-                       &lt;file name=&quot;032-friends-get.phpt&quot;
-                             role=&quot;test&quot; /&gt; 
-                       &lt;file name=&quot;034-friends-getAppUsers.phpt&quot;
-                             role=&quot;test&quot; /&gt; 
-                       &lt;file name=&quot;040-fql-query.phpt&quot;
-                             role=&quot;test&quot; /&gt; 
-                       &lt;file name=&quot;050-feed-publishStoryToUser.phpt&quot;
-                             role=&quot;test&quot; /&gt; 
-                       &lt;file name=&quot;052-feed-publishActionOfUser.phpt&quot;
-                             role=&quot;test&quot; /&gt; 
-                       &lt;file name=&quot;060-photos-createAlbum.phpt&quot;
-                             role=&quot;test&quot; /&gt; 
-                       &lt;file name=&quot;062-photos-upload.phpt&quot;
-                             role=&quot;test&quot; /&gt; 
-                       &lt;file name=&quot;080-application-getPublicInfoById.phpt&quot;
-                             role=&quot;test&quot; /&gt;
-                       &lt;file name=&quot;081-application-getPublicInfoByApiKey.phpt&quot;
-                             role=&quot;test&quot; /&gt;
-                       &lt;file name=&quot;082-application-getPublicInfoByCanvasName.phpt&quot;
-                             role=&quot;test&quot; /&gt;
-                       &lt;file name=&quot;090-admin-getNotificationsPerDay.phpt&quot;
-                             role=&quot;test&quot; /&gt;
-                       &lt;file name=&quot;091-admin-getRequestsPerDay.phpt&quot;
-                             role=&quot;test&quot; /&gt;
-                       &lt;file name=&quot;092-admin-getAppProperties.phpt&quot;
-                             role=&quot;test&quot; /&gt;
-                       &lt;file name=&quot;110-pages-isAdmin.phpt&quot;
-                             role=&quot;test&quot; /&gt;
-                       &lt;file name=&quot;111-pages-isFan.phpt&quot;
-                             role=&quot;test&quot; /&gt;
-                       &lt;file name=&quot;112-pages-isAppAdded.phpt&quot;
-                             role=&quot;test&quot; /&gt;
-                       &lt;file name=&quot;120-marketplace-createListing.phpt&quot;
-                             role=&quot;test&quot; /&gt;
-                       &lt;file name=&quot;121-marketplace-getCategories.phpt&quot;
-                             role=&quot;test&quot; /&gt;
-                       &lt;file name=&quot;122-marketplace-getSubCategory.phpt&quot;
-                             role=&quot;test&quot; /&gt;
-                       &lt;file name=&quot;123-marketplace-getListings.phpt&quot;
-                             role=&quot;test&quot; /&gt;
-                       &lt;file name=&quot;124-marketplace-removeListing.phpt&quot;
-                             role=&quot;test&quot; /&gt;
-                       &lt;file name=&quot;125-marketplace-search.phpt&quot;
-                             role=&quot;test&quot; /&gt;
-                       &lt;file name=&quot;test-image.jpg&quot;
-                             role=&quot;test&quot; /&gt; 
-                       &lt;file name=&quot;tests-config.php.example&quot;
-                             role=&quot;test&quot; /&gt; 
-                   &lt;/dir&gt;
-               &lt;/dir&gt;
-           &lt;/contents&gt;
-        &lt;/release&gt;
-		&lt;release&gt;
-		    &lt;date&gt;2008-04-05&lt;/date&gt;
-		    &lt;version&gt;
-		        &lt;release&gt;0.0.4&lt;/release&gt;
-		        &lt;api&gt;0.0.3&lt;/api&gt;
-		    &lt;/version&gt;
-		    &lt;stability&gt;
-		        &lt;release&gt;alpha&lt;/release&gt;
-		        &lt;api&gt;alpha&lt;/api&gt;
-		    &lt;/stability&gt;
-		    &lt;license uri=&quot;http://www.opensource.org/licenses/bsd-license.php&quot;&gt;New BSD License&lt;/license&gt;
-		    &lt;notes&gt;&lt;![CDATA[
-		        * Updated code to largely pass all of the PEAR CS problems brought up by phpcs
-		    ]]&gt;&lt;/notes&gt;
-		    &lt;contents&gt;
-		        &lt;dir name=&quot;/&quot;&gt;
-		            &lt;dir name=&quot;Services&quot;&gt;
-		                &lt;file name=&quot;Facebook.php&quot;
-		                      role=&quot;php&quot; /&gt;
-		                &lt;dir name=&quot;Facebook&quot;&gt;
-		                    &lt;file name=&quot;Admin.php&quot;
-		                          role=&quot;php&quot; /&gt;
-		                    &lt;file name=&quot;Application.php&quot;
-		                          role=&quot;php&quot; /&gt;
-		                    &lt;file name=&quot;Auth.php&quot;
-		                          role=&quot;php&quot; /&gt;
-		                    &lt;file name=&quot;Common.php&quot;
-		                          role=&quot;php&quot; /&gt;
-		                    &lt;file name=&quot;Exception.php&quot;
-		                          role=&quot;php&quot; /&gt;
-		                    &lt;file name=&quot;Events.php&quot;
-		                          role=&quot;php&quot; /&gt;
-		                    &lt;file name=&quot;FBML.php&quot;
-		                          role=&quot;php&quot; /&gt;
-		                    &lt;file name=&quot;FQL.php&quot;
-		                          role=&quot;php&quot; /&gt;
-		                    &lt;file name=&quot;Feed.php&quot;
-		                          role=&quot;php&quot; /&gt;
-		                    &lt;file name=&quot;Friends.php&quot;
-		                          role=&quot;php&quot; /&gt;
-		                    &lt;file name=&quot;Groups.php&quot;
-		                          role=&quot;php&quot; /&gt;
-		                    &lt;file name=&quot;MarketPlace.php&quot;
-		                          role=&quot;php&quot; /&gt;
-		                    &lt;file name=&quot;Notifications.php&quot;
-		                          role=&quot;php&quot; /&gt;
-		                    &lt;file name=&quot;Pages.php&quot;
-		                          role=&quot;php&quot; /&gt;
-		                    &lt;file name=&quot;Photos.php&quot;
-		                          role=&quot;php&quot; /&gt;
-		                    &lt;file name=&quot;Profile.php&quot;
-		                          role=&quot;php&quot; /&gt;
-		                    &lt;file name=&quot;Share.php&quot;
-		                          role=&quot;php&quot; /&gt;
-		                    &lt;file name=&quot;Users.php&quot;
-		                          role=&quot;php&quot; /&gt;
-		                    &lt;dir name=&quot;MarketPlace&quot;&gt;
-		                        &lt;file name=&quot;Listing.php&quot;
-		                              role=&quot;php&quot; /&gt;
-		                    &lt;/dir&gt;
-		                &lt;/dir&gt;
-		            &lt;/dir&gt;
-		            &lt;dir name=&quot;tests&quot;&gt;
-		                &lt;file name=&quot;010-users-isAppAdded.phpt&quot;
-		                      role=&quot;test&quot; /&gt;
-		                &lt;file name=&quot;012-users-getInfo.phpt&quot;
-		                      role=&quot;test&quot; /&gt; 
-		                &lt;file name=&quot;014-users-getLoggedInUser.phpt&quot;
-		                      role=&quot;test&quot; /&gt; 
-		                &lt;file name=&quot;020-profile-setFBML.phpt&quot;
-		                      role=&quot;test&quot; /&gt; 
-		                &lt;file name=&quot;022-profile-getFBML.phpt&quot;
-		                      role=&quot;test&quot; /&gt; 
-		                &lt;file name=&quot;030-friends-areFriends.phpt&quot;
-		                      role=&quot;test&quot; /&gt; 
-		                &lt;file name=&quot;032-friends-get.phpt&quot;
-		                      role=&quot;test&quot; /&gt; 
-		                &lt;file name=&quot;034-friends-getAppUsers.phpt&quot;
-		                      role=&quot;test&quot; /&gt; 
-		                &lt;file name=&quot;040-fql-query.phpt&quot;
-		                      role=&quot;test&quot; /&gt; 
-		                &lt;file name=&quot;050-feed-publishStoryToUser.phpt&quot;
-		                      role=&quot;test&quot; /&gt; 
-		                &lt;file name=&quot;052-feed-publishActionOfUser.phpt&quot;
-		                      role=&quot;test&quot; /&gt; 
-		                &lt;file name=&quot;060-photos-createAlbum.phpt&quot;
-		                      role=&quot;test&quot; /&gt; 
-		                &lt;file name=&quot;062-photos-upload.phpt&quot;
-		                      role=&quot;test&quot; /&gt; 
-		                &lt;file name=&quot;080-application-getPublicInfoById.phpt&quot;
-		                      role=&quot;test&quot; /&gt;
-		                &lt;file name=&quot;081-application-getPublicInfoByApiKey.phpt&quot;
-		                      role=&quot;test&quot; /&gt;
-		                &lt;file name=&quot;082-application-getPublicInfoByCanvasName.phpt&quot;
-		                      role=&quot;test&quot; /&gt;
-		&lt;!--
-		                &lt;file name=&quot;090-admin-getNotifcationsPerDay.phpt&quot;
-		                      role=&quot;test&quot; /&gt;
-		--&gt;
-		                &lt;file name=&quot;091-admin-getRequestsPerDay.phpt&quot;
-		                      role=&quot;test&quot; /&gt;
-		                &lt;file name=&quot;092-admin-getAppProperties.phpt&quot;
-		                      role=&quot;test&quot; /&gt;
-		                &lt;file name=&quot;110-pages-isAdmin.phpt&quot;
-		                      role=&quot;test&quot; /&gt;
-		                &lt;file name=&quot;111-pages-isFan.phpt&quot;
-		                      role=&quot;test&quot; /&gt;
-		                &lt;file name=&quot;112-pages-isAppAdded.phpt&quot;
-		                      role=&quot;test&quot; /&gt;
-		                &lt;file name=&quot;120-marketplace-createListing.phpt&quot;
-		                      role=&quot;test&quot; /&gt;
-		                &lt;file name=&quot;121-marketplace-getCategories.phpt&quot;
-		                      role=&quot;test&quot; /&gt;
-		&lt;!--
-		                &lt;file name=&quot;122-marketplace-getSubCategories.phpt&quot;
-		                      role=&quot;test&quot; /&gt;
-		--&gt;
-		                &lt;file name=&quot;123-marketplace-getListings.phpt&quot;
-		                      role=&quot;test&quot; /&gt;
-		                &lt;file name=&quot;124-marketplace-removeListing.phpt&quot;
-		                      role=&quot;test&quot; /&gt;
-		                &lt;file name=&quot;125-marketplace-search.phpt&quot;
-		                      role=&quot;test&quot; /&gt;
-		                &lt;file name=&quot;test-image.jpg&quot;
-		                      role=&quot;test&quot; /&gt; 
-		                &lt;file name=&quot;tests-config.php.example&quot;
-		                      role=&quot;test&quot; /&gt; 
-		            &lt;/dir&gt;
-		        &lt;/dir&gt;
-		    &lt;/contents&gt;
-		&lt;/release&gt;
-        &lt;release&gt;
-            &lt;date&gt;2008-04-03&lt;/date&gt;
-            &lt;version&gt;
-                &lt;release&gt;0.0.3&lt;/release&gt;
-                &lt;api&gt;0.0.3&lt;/api&gt;
-            &lt;/version&gt;
-            &lt;stability&gt;
-                &lt;release&gt;alpha&lt;/release&gt;
-                &lt;api&gt;alpha&lt;/api&gt;
-            &lt;/stability&gt;
-            &lt;license uri=&quot;http://www.opensource.org/licenses/bsd-license.php&quot;&gt;New BSD License&lt;/license&gt;
-            &lt;notes&gt;&lt;![CDATA[
-                * Updated Services_Facebook_Profile::setFBML() to accept new parameters
-                * Finished marketplace driver endpoints
-                * Added admin, application and pages drivers
-                * Switched to lazy loading of drivers
-                * Added Services_Facebook_Share to parse Facebook style share meta data from HTML source
-            ]]&gt;&lt;/notes&gt;
-            &lt;contents&gt;
-                &lt;dir name=&quot;/&quot;&gt;
-                    &lt;dir name=&quot;Services&quot;&gt;
-                        &lt;file name=&quot;Facebook.php&quot;
-                              role=&quot;php&quot; /&gt;
-                        &lt;dir name=&quot;Facebook&quot;&gt;
-                            &lt;file name=&quot;Admin.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Application.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Auth.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Common.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Exception.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Events.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;FBML.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;FQL.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Feed.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Friends.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Groups.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;MarketPlace.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Notifications.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Pages.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Photos.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Profile.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Share.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Users.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;dir name=&quot;MarketPlace&quot;&gt;
-                                &lt;file name=&quot;Listing.php&quot;
-                                      role=&quot;php&quot; /&gt;
-                            &lt;/dir&gt;
-                        &lt;/dir&gt;
-                    &lt;/dir&gt;
-                    &lt;dir name=&quot;tests&quot;&gt;
-                        &lt;file name=&quot;010-users-isAppAdded.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;012-users-getInfo.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;014-users-getLoggedInUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;020-profile-setFBML.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;022-profile-getFBML.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;030-friends-areFriends.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;032-friends-get.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;034-friends-getAppUsers.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;040-fql-query.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;050-feed-publishStoryToUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;052-feed-publishActionOfUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;060-photos-createAlbum.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;062-photos-upload.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;080-application-getPublicInfoById.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;081-application-getPublicInfoByApiKey.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;082-application-getPublicInfoByCanvasName.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-        &lt;!--
-                        &lt;file name=&quot;090-admin-getNotifcationsPerDay.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-        --&gt;
-                        &lt;file name=&quot;091-admin-getRequestsPerDay.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;092-admin-getAppProperties.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;110-pages-isAdmin.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;111-pages-isFan.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;112-pages-isAppAdded.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;120-marketplace-createListing.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;121-marketplace-getCategories.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-        &lt;!--
-                        &lt;file name=&quot;122-marketplace-getSubCategories.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-        --&gt;
-                        &lt;file name=&quot;123-marketplace-getListings.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;124-marketplace-removeListing.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;125-marketplace-search.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;test-image.jpg&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;tests-config.php.example&quot;
-                              role=&quot;test&quot; /&gt; 
-                    &lt;/dir&gt;
-                &lt;/dir&gt;
-            &lt;/contents&gt;
-        &lt;/release&gt;
-        &lt;release&gt;
-            &lt;date&gt;2007-11-06&lt;/date&gt;
-            &lt;time&gt;15:53:42&lt;/time&gt;
-            &lt;version&gt;
-                &lt;release&gt;0.0.2&lt;/release&gt;
-                &lt;api&gt;0.0.2&lt;/api&gt;
-            &lt;/version&gt;
-            &lt;stability&gt;
-                &lt;release&gt;alpha&lt;/release&gt;
-                &lt;api&gt;alpha&lt;/api&gt;
-            &lt;/stability&gt;
-            &lt;license uri=&quot;http://www.opensource.org/licenses/bsd-license.php&quot;&gt;New BSD License&lt;/license&gt;
-            &lt;notes&gt;&lt;![CDATA[
-                * Completed all of the other endpoints.
-                * Added Services_Facebook_Share::parse() to parse out share partner meta information.
-            ]]&gt;&lt;/notes&gt;
-            &lt;contents&gt;
-                &lt;dir name=&quot;/&quot;&gt;
-                    &lt;dir name=&quot;Services&quot;&gt;
-                        &lt;file name=&quot;Facebook.php&quot;
-                              role=&quot;php&quot; /&gt;
-                        &lt;dir name=&quot;Facebook&quot;&gt;
-                            &lt;file name=&quot;Admin.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Application.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Auth.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Common.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Exception.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Events.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;FBML.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;FQL.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Feed.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Friends.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Groups.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;MarketPlace.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Notifications.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Pages.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Photos.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Profile.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Share.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Users.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;dir name=&quot;MarketPlace&quot;&gt;
-                                &lt;file name=&quot;Listing.php&quot;
-                                      role=&quot;php&quot; /&gt;
-                            &lt;/dir&gt;
-                        &lt;/dir&gt;
-                    &lt;/dir&gt;
-                    &lt;dir name=&quot;tests&quot;&gt;
-                        &lt;file name=&quot;010-users-isAppAdded.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;012-users-getInfo.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;014-users-getLoggedInUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;020-profile-setFBML.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;022-profile-getFBML.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;030-friends-areFriends.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;032-friends-get.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;034-friends-getAppUsers.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;040-fql-query.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;050-feed-publishStoryToUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;052-feed-publishActionOfUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;060-photos-createAlbum.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;062-photos-upload.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;080-application-getPublicInfoById.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;081-application-getPublicInfoByApiKey.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;082-application-getPublicInfoByCanvasName.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;090-admin-getNotifcationsPerDay.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;091-admin-getRequestsPerDay.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;092-admin-getAppProperties.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;110-pages-isAdmin.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;111-pages-isFan.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;112-pages-isAppAdded.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;120-marketplace-createListing.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;121-marketplace-getCategories.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;122-marketplace-getSubCategories.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;123-marketplace-getListings.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;124-marketplace-removeListing.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;125-marketplace-search.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;test-image.jpg&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;tests-config.php.example&quot;
-                              role=&quot;test&quot; /&gt; 
-                    &lt;/dir&gt;
-                &lt;/dir&gt;
-            &lt;/contents&gt;
-        &lt;/release&gt;
-        &lt;release&gt;
-            &lt;date&gt;2007-08-24&lt;/date&gt;
-            &lt;time&gt;15:53:42&lt;/time&gt;
-            &lt;version&gt;
-                &lt;release&gt;0.0.1&lt;/release&gt;
-                &lt;api&gt;0.0.1&lt;/api&gt;
-            &lt;/version&gt;
-            &lt;stability&gt;
-                &lt;release&gt;alpha&lt;/release&gt;
-                &lt;api&gt;alpha&lt;/api&gt;
-            &lt;/stability&gt;
-            &lt;license uri=&quot;http://www.opensource.org/licenses/bsd-license.php&quot;&gt;New BSD License&lt;/license&gt;
-            &lt;notes&gt;&lt;![CDATA[
-                * Initial release
-                * Added Services_Facebook_Exception
-            ]]&gt;&lt;/notes&gt;
-            &lt;contents&gt;
-                &lt;dir name=&quot;/&quot;&gt;
-                    &lt;dir name=&quot;Services&quot;&gt;
-                        &lt;file name=&quot;Facebook.php&quot;
-                              role=&quot;php&quot; /&gt;
-                        &lt;dir name=&quot;Facebook&quot;&gt;
-                            &lt;file name=&quot;Auth.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Common.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Exception.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Events.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;FBML.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;FQL.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Feed.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Friends.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Groups.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Notifications.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Photos.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Profile.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                            &lt;file name=&quot;Users.php&quot;
-                                  role=&quot;php&quot; /&gt;
-                        &lt;/dir&gt;
-                    &lt;/dir&gt;
-                    &lt;dir name=&quot;tests&quot;&gt;
-                        &lt;file name=&quot;010-users-isAppAdded.phpt&quot;
-                              role=&quot;test&quot; /&gt;
-                        &lt;file name=&quot;012-users-getInfo.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;014-users-getLoggedInUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;020-profile-setFBML.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;022-profile-getFBML.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;030-friends-areFriends.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;032-friends-get.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;034-friends-getAppUsers.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;040-fql-query.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;050-feed-publishStoryToUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;052-feed-publishActionOfUser.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;060-photos-createAlbum.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;062-photos-upload.phpt&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;test-image.jpg&quot;
-                              role=&quot;test&quot; /&gt; 
-                        &lt;file name=&quot;tests-config.php&quot;
-                              role=&quot;test&quot; /&gt; 
-                    &lt;/dir&gt;
-                &lt;/dir&gt;
-            &lt;/contents&gt;
-        &lt;/release&gt;
-    &lt;/changelog&gt;
+&lt;package packagerversion=&quot;1.7.2&quot; version=&quot;2.0&quot; xmlns=&quot;http://pear.php.net/dtd/package-2.0&quot; xmlns:tasks=&quot;http://pear.php.net/dtd/tasks-1.0&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:schemaLocation=&quot;http://pear.php.net/dtd/tasks-1.0     http://pear.php.net/dtd/tasks-1.0.xsd     http://pear.php.net/dtd/package-2.0     http://pear.php.net/dtd/package-2.0.xsd&quot;&gt;
+ &lt;name&gt;Services_Facebook&lt;/name&gt;
+ &lt;channel&gt;pear.php.net&lt;/channel&gt;
+ &lt;summary&gt;PHP interface to Facebook&amp;apos;s API&lt;/summary&gt;
+ &lt;description&gt;An interface for accessing Facebook&amp;apos;s web services API at http://api.facebook.com&lt;/description&gt;
+ &lt;lead&gt;
+  &lt;name&gt;Jeff Hodsdon&lt;/name&gt;
+  &lt;user&gt;jeffhodsdon&lt;/user&gt;
+  &lt;email&gt;jeffhodsdon@gmail.com&lt;/email&gt;
+  &lt;active&gt;yes&lt;/active&gt;
+ &lt;/lead&gt;
+ &lt;lead&gt;
+  &lt;name&gt;Joe Stump&lt;/name&gt;
+  &lt;user&gt;jstump&lt;/user&gt;
+  &lt;email&gt;joe@joestump.net&lt;/email&gt;
+  &lt;active&gt;yes&lt;/active&gt;
+ &lt;/lead&gt;
+ &lt;developer&gt;
+  &lt;name&gt;Travis Swicegood&lt;/name&gt;
+  &lt;user&gt;tswicegood&lt;/user&gt;
+  &lt;email&gt;development@domain51.com&lt;/email&gt;
+  &lt;active&gt;yes&lt;/active&gt;
+ &lt;/developer&gt;
+ &lt;date&gt;2009-01-22&lt;/date&gt;
+ &lt;time&gt;01:40:08&lt;/time&gt;
+ &lt;version&gt;
+  &lt;release&gt;0.2.0&lt;/release&gt;
+  &lt;api&gt;0.2.0&lt;/api&gt;
+ &lt;/version&gt;
+ &lt;stability&gt;
+  &lt;release&gt;alpha&lt;/release&gt;
+  &lt;api&gt;alpha&lt;/api&gt;
+ &lt;/stability&gt;
+ &lt;license uri=&quot;http://www.opensource.org/licenses/bsd-license.php&quot;&gt;New BSD License&lt;/license&gt;
+ &lt;notes&gt;* Batching support
+* PHPUnit tests&lt;/notes&gt;
+ &lt;contents&gt;
+  &lt;dir baseinstalldir=&quot;/&quot; name=&quot;/&quot;&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;04cd99b281f8162227481d02a7d7b8ff&quot; name=&quot;Services/Facebook.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package-version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;9b1498927bd1698a2986dd281fbcaa80&quot; name=&quot;Services/Facebook/Admin.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;9c3d1aa3b8bd3aff55eefc34bdccc4a3&quot; name=&quot;Services/Facebook/Application.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;c89d9ebf9b51544b5a426dc82008878c&quot; name=&quot;Services/Facebook/Auth.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;7dd96a24bebad392080951d11154c0ac&quot; name=&quot;Services/Facebook/Batch.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;9ba6019638faab0a4d94ddd8f83e08eb&quot; name=&quot;Services/Facebook/Common.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;d4484a5aa16096cfb908b477541f7f91&quot; name=&quot;Services/Facebook/Connect.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;a90514bbe06be2fb96c18a89f20d646a&quot; name=&quot;Services/Facebook/Data.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;4bb2cc0e2d2dbdf0cec8476486806633&quot; name=&quot;Services/Facebook/Events.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;a6204a032314b3b8ed593305a15b77dc&quot; name=&quot;Services/Facebook/Exception.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;fdf764cd959859e54135e2eeea865dbf&quot; name=&quot;Services/Facebook/FBML.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;ee841dc324374f70d3378b479d8df347&quot; name=&quot;Services/Facebook/Feed.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;19705ff5b19cf26e6645a2c529175307&quot; name=&quot;Services/Facebook/FQL.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;e6d4f232c60f265d4b8a69fa81af30c7&quot; name=&quot;Services/Facebook/Friends.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;6eb3a4530f415bd60ed42158f07fd03c&quot; name=&quot;Services/Facebook/Groups.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;33e3059714adf13f9c664ecdb1c6eb1f&quot; name=&quot;Services/Facebook/MarketPlace.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;4a160f3bc3e573750b461bfd8aed4363&quot; name=&quot;Services/Facebook/Notifications.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;6033491f62ae903f6a352b78c69e1254&quot; name=&quot;Services/Facebook/Pages.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;3d56bace9ff73e354d772ea6c3fd84cd&quot; name=&quot;Services/Facebook/Photos.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;d21a8903e72843be1cadfb88aae635be&quot; name=&quot;Services/Facebook/Profile.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;c2bfc77b124c7ffacccab8fca0e3e4e2&quot; name=&quot;Services/Facebook/Share.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;626dd1d073b4cb6061e8e89234d6cba6&quot; name=&quot;Services/Facebook/Users.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;c328b6dea969aa4e7197f4c6af9bcd00&quot; name=&quot;Services/Facebook/MarketPlace/Listing.php&quot; role=&quot;php&quot;&gt;
+    &lt;tasks:replace from=&quot;@package_version@&quot; to=&quot;version&quot; type=&quot;package-info&quot; /&gt;
+   &lt;/file&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;b16cec82a3bd0158f5f4c459d363143d&quot; name=&quot;tests/AllTests.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;47c031385084d5f13abca5281b475c50&quot; name=&quot;tests/Services/AllTests.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;ceea493ae9a86378b68a7152076bc3c6&quot; name=&quot;tests/Services/Facebook/AdminTest.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;d845ea238396fb671fc30131059e1120&quot; name=&quot;tests/Services/Facebook/AllTests.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;033d0856fc12c879b5274909410f6845&quot; name=&quot;tests/Services/Facebook/ApplicationTest.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;7f737d33f8d619b7cde065045acf11fe&quot; name=&quot;tests/Services/Facebook/AuthTest.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;cb1c8cd1333368d5a78cadb1ce3d7dc9&quot; name=&quot;tests/Services/Facebook/BatchTest.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;b12b6666305f9bc9d4bd31c3b5b8d4a5&quot; name=&quot;tests/Services/Facebook/CommonTest.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;75cb5cf0b24086fc4b0447a02bb5a010&quot; name=&quot;tests/Services/Facebook/ConnectTest.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;c6f8c19605bbb64f3135eaf07cb5d26f&quot; name=&quot;tests/Services/Facebook/EventsTest.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;b4a50769855d9af403cbf1158b7ef8d3&quot; name=&quot;tests/Services/Facebook/FBMLTest.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;f453a81186c7a9dcd7c51184c4133927&quot; name=&quot;tests/Services/Facebook/FeedTest.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;30bf8014f1cb6cbc8acafd503cd3274e&quot; name=&quot;tests/Services/Facebook/FQLTest.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;e9b80ab476942dc99592d6a9e66f2fd9&quot; name=&quot;tests/Services/Facebook/FriendsTest.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;a9c654ae1191f37207be5ed6b2089f4a&quot; name=&quot;tests/Services/Facebook/GroupsTest.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;42713fc63885ce58cfc9191e0b51bb58&quot; name=&quot;tests/Services/Facebook/MarketPlaceTest.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;391cdfebbcf6e1304ffd4baf31e0b4cc&quot; name=&quot;tests/Services/Facebook/NotificationsTest.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;e76c443a523cbd6074fa91f875b29831&quot; name=&quot;tests/Services/Facebook/PagesTest.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;53180cb44ceec8a2060e5c7c8ec9bbee&quot; name=&quot;tests/Services/Facebook/PhotosTest.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;e6c8d2ef3a265c3d79fc46088d0d8bed&quot; name=&quot;tests/Services/Facebook/ProfileTest.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;d529c76c54b33ddc3e15cbf7d3cc7c15&quot; name=&quot;tests/Services/Facebook/ShareTest.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;0bb3e929a25f0073e4e796c4c1a692f7&quot; name=&quot;tests/Services/Facebook/skel.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;d3196b2d79a70dff755be6d31ad750dc&quot; name=&quot;tests/Services/Facebook/UnitTestCommon.php&quot; role=&quot;test&quot; /&gt;
+   &lt;file baseinstalldir=&quot;/&quot; md5sum=&quot;22a87616d257c2c0363622813a3d6c4f&quot; name=&quot;tests/Services/Facebook/UsersTest.php&quot; role=&quot;test&quot; /&gt;
+  &lt;/dir&gt;
+ &lt;/contents&gt;
+ &lt;dependencies&gt;
+  &lt;required&gt;
+   &lt;php&gt;
+    &lt;min&gt;5.2.0&lt;/min&gt;
+   &lt;/php&gt;
+   &lt;pearinstaller&gt;
+    &lt;min&gt;1.4.0&lt;/min&gt;
+   &lt;/pearinstaller&gt;
+  &lt;/required&gt;
+ &lt;/dependencies&gt;
+ &lt;phprelease /&gt;
+ &lt;changelog&gt;
+  &lt;release&gt;
+   &lt;version&gt;
+    &lt;release&gt;0.2.0&lt;/release&gt;
+    &lt;api&gt;0.2.0&lt;/api&gt;
+   &lt;/version&gt;
+   &lt;stability&gt;
+    &lt;release&gt;alpha&lt;/release&gt;
+    &lt;api&gt;alpha&lt;/api&gt;
+   &lt;/stability&gt;
+   &lt;date&gt;2009-01-22&lt;/date&gt;
+   &lt;license uri=&quot;http://www.opensource.org/licenses/bsd-license.php&quot;&gt;New BSD License&lt;/license&gt;
+   &lt;notes&gt;* Batching support
+* PHPUnit tests&lt;/notes&gt;
+  &lt;/release&gt;
+ &lt;/changelog&gt;
 &lt;/package&gt;</diff>
      <filename>package.xml</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>tests/010-users-isAppAdded.phpt</filename>
    </removed>
    <removed>
      <filename>tests/012-users-getInfo.phpt</filename>
    </removed>
    <removed>
      <filename>tests/014-users-getLoggedInUser.phpt</filename>
    </removed>
    <removed>
      <filename>tests/020-profile-setFBML.phpt</filename>
    </removed>
    <removed>
      <filename>tests/022-profile-getFBML.phpt</filename>
    </removed>
    <removed>
      <filename>tests/030-friends-areFriends.phpt</filename>
    </removed>
    <removed>
      <filename>tests/032-friends-get.phpt</filename>
    </removed>
    <removed>
      <filename>tests/034-friends-getAppUsers.phpt</filename>
    </removed>
    <removed>
      <filename>tests/040-fql-query.phpt</filename>
    </removed>
    <removed>
      <filename>tests/050-feed-publishStoryToUser.phpt</filename>
    </removed>
    <removed>
      <filename>tests/052-feed-publishActionOfUser.phpt</filename>
    </removed>
    <removed>
      <filename>tests/060-photos-createAlbum.phpt</filename>
    </removed>
    <removed>
      <filename>tests/062-photos-upload.phpt</filename>
    </removed>
    <removed>
      <filename>tests/070-isValidRequest.phpt</filename>
    </removed>
    <removed>
      <filename>tests/080-application-getPublicInfoById.phpt</filename>
    </removed>
    <removed>
      <filename>tests/081-application-getPublicInfoByApiKey.phpt</filename>
    </removed>
    <removed>
      <filename>tests/082-application-getPublicInfoByCanvasName.phpt</filename>
    </removed>
    <removed>
      <filename>tests/090-admin-getNotificationsPerDay.phpt</filename>
    </removed>
    <removed>
      <filename>tests/091-admin-getRequestsPerDay.phpt</filename>
    </removed>
    <removed>
      <filename>tests/092-admin-getAppProperties.phpt</filename>
    </removed>
    <removed>
      <filename>tests/100-share-parser.phpt</filename>
    </removed>
    <removed>
      <filename>tests/110-pages-isAdmin.phpt</filename>
    </removed>
    <removed>
      <filename>tests/111-pages-isFan.phpt</filename>
    </removed>
    <removed>
      <filename>tests/112-pages-isAppAdded.phpt</filename>
    </removed>
    <removed>
      <filename>tests/120-marketplace-createListing.phpt</filename>
    </removed>
    <removed>
      <filename>tests/121-marketplace-getCategories.phpt</filename>
    </removed>
    <removed>
      <filename>tests/122-marketplace-getSubCategory.phpt</filename>
    </removed>
    <removed>
      <filename>tests/123-marketplace-getListings.phpt</filename>
    </removed>
    <removed>
      <filename>tests/124-marketplace-removeListing.phpt</filename>
    </removed>
    <removed>
      <filename>tests/125-marketplace-search.phpt</filename>
    </removed>
    <removed>
      <filename>tests/130-connect-hashEmail.phpt</filename>
    </removed>
    <removed>
      <filename>tests/131-connect-unregisterUsers.phpt</filename>
    </removed>
    <removed>
      <filename>tests/132-connect-registerUsers.phpt</filename>
    </removed>
    <removed>
      <filename>tests/test-image.jpg</filename>
    </removed>
    <removed>
      <filename>tests/tests-config.php.example</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>c2c9b98bc780bc992fafea85236360d240d7b684</id>
    </parent>
  </parents>
  <author>
    <name>jeffhodsdon</name>
    <email>jeffhodsdon@e4a961c0-893e-0410-870e-adc8fef1e38a</email>
  </author>
  <url>http://github.com/joestump/services_facebook/commit/b3ac26c877710a3e0201611dbd2ca8e7e2a1cba1</url>
  <id>b3ac26c877710a3e0201611dbd2ca8e7e2a1cba1</id>
  <committed-date>2009-01-21T17:42:07-08:00</committed-date>
  <authored-date>2009-01-21T17:42:07-08:00</authored-date>
  <message>Merged work from batching and unit tests into trunk for 0.2.0 release.</message>
  <tree>662855aa39c537d198c2625a48ffe3d963c5520d</tree>
  <committer>
    <name>jeffhodsdon</name>
    <email>jeffhodsdon@e4a961c0-893e-0410-870e-adc8fef1e38a</email>
  </committer>
</commit>
