You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by ch...@apache.org on 2008/07/10 14:49:15 UTC

svn commit: r675553 - in /incubator/shindig/trunk/php/src: socialdata/http/ socialdata/opensocial/model/ socialdata/samplecontainer/ socialrest/http/

Author: chabotc
Date: Thu Jul 10 05:49:14 2008
New Revision: 675553

URL: http://svn.apache.org/viewvc?rev=675553&view=rev
Log:
Fixed the inconsitency with idSpec vs IdSpec

Added:
    incubator/shindig/trunk/php/src/socialdata/opensocial/model/IdSpec.php
      - copied unchanged from r675552, incubator/shindig/trunk/php/src/socialdata/opensocial/model/idSpec.php
Removed:
    incubator/shindig/trunk/php/src/socialdata/opensocial/model/idSpec.php
Modified:
    incubator/shindig/trunk/php/src/socialdata/http/GadgetDataServlet.php
    incubator/shindig/trunk/php/src/socialdata/samplecontainer/OpenSocialDataHandler.php
    incubator/shindig/trunk/php/src/socialrest/http/RestServlet.php

Modified: incubator/shindig/trunk/php/src/socialdata/http/GadgetDataServlet.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/socialdata/http/GadgetDataServlet.php?rev=675553&r1=675552&r2=675553&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/socialdata/http/GadgetDataServlet.php (original)
+++ incubator/shindig/trunk/php/src/socialdata/http/GadgetDataServlet.php Thu Jul 10 05:49:14 2008
@@ -32,7 +32,7 @@
 require 'src/socialdata/opensocial/model/BodyType.php';
 require 'src/socialdata/opensocial/model/Email.php';
 require 'src/socialdata/opensocial/model/Enum.php';
-require 'src/socialdata/opensocial/model/idSpec.php';
+require 'src/socialdata/opensocial/model/IdSpec.php';
 require 'src/socialdata/opensocial/model/MediaItem.php';
 require 'src/socialdata/opensocial/model/Message.php';
 require 'src/socialdata/opensocial/model/Name.php';

Modified: incubator/shindig/trunk/php/src/socialdata/samplecontainer/OpenSocialDataHandler.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/socialdata/samplecontainer/OpenSocialDataHandler.php?rev=675553&r1=675552&r2=675553&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/socialdata/samplecontainer/OpenSocialDataHandler.php (original)
+++ incubator/shindig/trunk/php/src/socialdata/samplecontainer/OpenSocialDataHandler.php Thu Jul 10 05:49:14 2008
@@ -47,7 +47,7 @@
 			$params = $request->getParams();
 			$type = $params['type'];
 			$response = new ResponseItem(NOT_IMPLEMENTED, $type . " has not been implemented yet.", array());
-			$idSpec = idSpec::fromJson($params['idSpec']);
+			$idSpec = IdSpec::fromJson($params['idSpec']);
 			$peopleIds = $this->peopleHandler->getIds($idSpec, $request->getToken());
 			if ($peopleIds !== false) {
 				switch ( $type) {

Modified: incubator/shindig/trunk/php/src/socialrest/http/RestServlet.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/socialrest/http/RestServlet.php?rev=675553&r1=675552&r2=675553&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/socialrest/http/RestServlet.php (original)
+++ incubator/shindig/trunk/php/src/socialrest/http/RestServlet.php Thu Jul 10 05:49:14 2008
@@ -28,7 +28,7 @@
 require 'src/socialdata/opensocial/model/BodyType.php';
 require 'src/socialdata/opensocial/model/Email.php';
 require 'src/socialdata/opensocial/model/Enum.php';
-require 'src/socialdata/opensocial/model/idSpec.php';
+require 'src/socialdata/opensocial/model/IdSpec.php';
 require 'src/socialdata/opensocial/model/MediaItem.php';
 require 'src/socialdata/opensocial/model/Message.php';
 require 'src/socialdata/opensocial/model/Name.php';