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/09/13 12:21:30 UTC

svn commit: r694915 - in /incubator/shindig/trunk/php: index.php src/social/http/RestServlet.php src/social/model/ src/social/opensocial/ test/ShindigAllTests.php test/index.php

Author: chabotc
Date: Sat Sep 13 03:21:27 2008
New Revision: 694915

URL: http://svn.apache.org/viewvc?rev=694915&view=rev
Log:
Step2: Move model up a level

Added:
    incubator/shindig/trunk/php/src/social/model/
      - copied from r694914, incubator/shindig/trunk/php/src/social/opensocial/model/
Removed:
    incubator/shindig/trunk/php/src/social/opensocial/
Modified:
    incubator/shindig/trunk/php/index.php
    incubator/shindig/trunk/php/src/social/http/RestServlet.php
    incubator/shindig/trunk/php/test/ShindigAllTests.php
    incubator/shindig/trunk/php/test/index.php

Modified: incubator/shindig/trunk/php/index.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/index.php?rev=694915&r1=694914&r2=694915&view=diff
==============================================================================
--- incubator/shindig/trunk/php/index.php (original)
+++ incubator/shindig/trunk/php/index.php Sat Sep 13 03:21:27 2008
@@ -50,7 +50,7 @@
 					'src/social/http',
 					'src/social/dataservice',
 					'src/social/opensocial',
-					'src/social/opensocial/model',
+					'src/social/model',
 					'src/social/samplecontainer'
 				);
 	$extension_class_paths = Config::get('extension_class_paths');

Modified: incubator/shindig/trunk/php/src/social/http/RestServlet.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/social/http/RestServlet.php?rev=694915&r1=694914&r2=694915&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/social/http/RestServlet.php (original)
+++ incubator/shindig/trunk/php/src/social/http/RestServlet.php Sat Sep 13 03:21:27 2008
@@ -21,20 +21,20 @@
 require 'src/common/SecurityTokenDecoder.php';
 require 'src/common/SecurityToken.php';
 require 'src/common/BlobCrypter.php';
-require 'src/social/opensocial/model/Activity.php';
-require 'src/social/opensocial/model/Address.php';
-require 'src/social/opensocial/model/ApiCollection.php';
-require 'src/social/opensocial/model/BodyType.php';
-require 'src/social/opensocial/model/Email.php';
-require 'src/social/opensocial/model/Enum.php';
-require 'src/social/opensocial/model/IdSpec.php';
-require 'src/social/opensocial/model/MediaItem.php';
-require 'src/social/opensocial/model/Message.php';
-require 'src/social/opensocial/model/Name.php';
-require 'src/social/opensocial/model/Organization.php';
-require 'src/social/opensocial/model/Person.php';
-require 'src/social/opensocial/model/Phone.php';
-require 'src/social/opensocial/model/Url.php';
+require 'src/social/model/Activity.php';
+require 'src/social/model/Address.php';
+require 'src/social/model/ApiCollection.php';
+require 'src/social/model/BodyType.php';
+require 'src/social/model/Email.php';
+require 'src/social/model/Enum.php';
+require 'src/social/model/IdSpec.php';
+require 'src/social/model/MediaItem.php';
+require 'src/social/model/Message.php';
+require 'src/social/model/Name.php';
+require 'src/social/model/Organization.php';
+require 'src/social/model/Person.php';
+require 'src/social/model/Phone.php';
+require 'src/social/model/Url.php';
 require 'src/social/dataservice/GroupId.php';
 require 'src/social/dataservice/UserId.php';
 require 'src/social/dataservice/RestRequestItem.php';

Modified: incubator/shindig/trunk/php/test/ShindigAllTests.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/test/ShindigAllTests.php?rev=694915&r1=694914&r2=694915&view=diff
==============================================================================
--- incubator/shindig/trunk/php/test/ShindigAllTests.php (original)
+++ incubator/shindig/trunk/php/test/ShindigAllTests.php Sat Sep 13 03:21:27 2008
@@ -32,7 +32,7 @@
 			'src/gadgets/http', 'src/gadgets/oauth', 'src/gadgets/samplecontainer', 
 			'src/social', 'src/social/http', 'src/social/canonical', 
 			'src/social/dataservice', 'src/social/converters', 
-			'src/social/opensocial', 'src/social/opensocial/model', 
+			'src/social/opensocial', 'src/social/model', 
 			'src/social/samplecontainer');
 	$extension_class_paths = Config::get('extension_class_paths');
 	if (! empty($extension_class_paths)) {

Modified: incubator/shindig/trunk/php/test/index.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/test/index.php?rev=694915&r1=694914&r2=694915&view=diff
==============================================================================
--- incubator/shindig/trunk/php/test/index.php (original)
+++ incubator/shindig/trunk/php/test/index.php Sat Sep 13 03:21:27 2008
@@ -32,7 +32,7 @@
 			'src/gadgets/http', 'src/gadgets/oauth', 'src/gadgets/samplecontainer', 
 			'src/social', 'src/social/canonical', 'src/social/http', 
 			'src/social/dataservice', 'src/social/converters', 
-			'src/social/opensocial', 'src/social/opensocial/model', 
+			'src/social/opensocial', 'src/social/model', 
 			'src/social/samplecontainer');
 	$extension_class_paths = Config::get('extension_class_paths');
 	if (! empty($extension_class_paths)) {