Author: chabotc
Date: Sat Sep 13 03:30:50 2008
New Revision: 694917

URL: http://svn.apache.org/viewvc?rev=694917&view=rev
Log:
Step 3: move service provider interfaces to spi directory

Added:
    incubator/shindig/trunk/php/src/social/spi/
    incubator/shindig/trunk/php/src/social/spi/ActivitiesService.php
      - copied unchanged from r694914, 
incubator/shindig/trunk/php/src/social/dataservice/ActivitiesService.php
    incubator/shindig/trunk/php/src/social/spi/AppDataService.php
      - copied unchanged from r694914, 
incubator/shindig/trunk/php/src/social/dataservice/AppDataService.php
    incubator/shindig/trunk/php/src/social/spi/CollectionOptions.php
      - copied unchanged from r694914, 
incubator/shindig/trunk/php/src/social/dataservice/CollectionOptions.php
    incubator/shindig/trunk/php/src/social/spi/GroupId.php
      - copied unchanged from r694914, 
incubator/shindig/trunk/php/src/social/dataservice/GroupId.php
    incubator/shindig/trunk/php/src/social/spi/MessagesService.php
      - copied unchanged from r694914, 
incubator/shindig/trunk/php/src/social/dataservice/MessagesService.php
    incubator/shindig/trunk/php/src/social/spi/PeopleService.php
      - copied unchanged from r694914, 
incubator/shindig/trunk/php/src/social/dataservice/PeopleService.php
    incubator/shindig/trunk/php/src/social/spi/RestfulCollection.php
      - copied unchanged from r694914, 
incubator/shindig/trunk/php/src/social/dataservice/RestfulCollection.php
    incubator/shindig/trunk/php/src/social/spi/UserId.php
      - copied unchanged from r694914, 
incubator/shindig/trunk/php/src/social/dataservice/UserId.php
Removed:
    incubator/shindig/trunk/php/src/social/dataservice/ActivitiesService.php
    incubator/shindig/trunk/php/src/social/dataservice/AppDataService.php
    incubator/shindig/trunk/php/src/social/dataservice/CollectionOptions.php
    incubator/shindig/trunk/php/src/social/dataservice/GroupId.php
    incubator/shindig/trunk/php/src/social/dataservice/MessagesService.php
    incubator/shindig/trunk/php/src/social/dataservice/PeopleService.php
    incubator/shindig/trunk/php/src/social/dataservice/RestfulCollection.php
    incubator/shindig/trunk/php/src/social/dataservice/UserId.php
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=694917&r1=694916&r2=694917&view=diff
==============================================================================
--- incubator/shindig/trunk/php/index.php (original)
+++ incubator/shindig/trunk/php/index.php Sat Sep 13 03:30:50 2008
@@ -51,6 +51,7 @@
                                        'src/social/dataservice',
                                        'src/social/opensocial',
                                        'src/social/model',
+                                       'src/social/spi',
                                        '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=694917&r1=694916&r2=694917&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:30:50 2008
@@ -35,17 +35,17 @@
 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/spi/GroupId.php';
+require 'src/social/spi/UserId.php';
+require 'src/social/spi/RestfulCollection.php';
+require 'src/social/spi/ActivitiesService.php';
+require 'src/social/spi/AppDataService.php';
+require 'src/social/spi/PeopleService.php';
 require 'src/social/dataservice/RestRequestItem.php';
-require 'src/social/dataservice/RestfulCollection.php';
 require 'src/social/dataservice/DataRequestHandler.php';
 require 'src/social/dataservice/ActivitiesHandler.php';
 require 'src/social/dataservice/AppDataHandler.php';
 require 'src/social/dataservice/PeopleHandler.php';
-require 'src/social/dataservice/ActivitiesService.php';
-require 'src/social/dataservice/AppDataService.php';
-require 'src/social/dataservice/PeopleService.php';
 require 'src/social/dataservice/ResponseItem.php';
 require 'src/social/converters/OutputConverter.php';
 require 'src/social/converters/OutputAtomConverter.php';

Modified: incubator/shindig/trunk/php/test/ShindigAllTests.php
URL: 
http://svn.apache.org/viewvc/incubator/shindig/trunk/php/test/ShindigAllTests.php?rev=694917&r1=694916&r2=694917&view=diff
==============================================================================
--- incubator/shindig/trunk/php/test/ShindigAllTests.php (original)
+++ incubator/shindig/trunk/php/test/ShindigAllTests.php Sat Sep 13 03:30:50 
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/model', 
+                       'src/social/opensocial', 'src/social/spi', 
'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=694917&r1=694916&r2=694917&view=diff
==============================================================================
--- incubator/shindig/trunk/php/test/index.php (original)
+++ incubator/shindig/trunk/php/test/index.php Sat Sep 13 03:30:50 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/model', 
+                       'src/social/opensocial', 'src/social/spi', 
'src/social/model', 
                        'src/social/samplecontainer');
        $extension_class_paths = Config::get('extension_class_paths');
        if (! empty($extension_class_paths)) {


Reply via email to