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:34:00 UTC

svn commit: r694918 - in /incubator/shindig/trunk/php/src/social: dataservice/ http/ service/

Author: chabotc
Date: Sat Sep 13 03:33:59 2008
New Revision: 694918

URL: http://svn.apache.org/viewvc?rev=694918&view=rev
Log:
Step 4: dataservice -> service

Added:
    incubator/shindig/trunk/php/src/social/service/
      - copied from r694914, incubator/shindig/trunk/php/src/social/dataservice/
Removed:
    incubator/shindig/trunk/php/src/social/dataservice/
    incubator/shindig/trunk/php/src/social/service/ActivitiesService.php
    incubator/shindig/trunk/php/src/social/service/AppDataService.php
    incubator/shindig/trunk/php/src/social/service/CollectionOptions.php
    incubator/shindig/trunk/php/src/social/service/GroupId.php
    incubator/shindig/trunk/php/src/social/service/MessagesService.php
    incubator/shindig/trunk/php/src/social/service/PeopleService.php
    incubator/shindig/trunk/php/src/social/service/RestfulCollection.php
    incubator/shindig/trunk/php/src/social/service/UserId.php
Modified:
    incubator/shindig/trunk/php/src/social/http/RestServlet.php

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=694918&r1=694917&r2=694918&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:33:59 2008
@@ -41,12 +41,12 @@
 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/DataRequestHandler.php';
-require 'src/social/dataservice/ActivitiesHandler.php';
-require 'src/social/dataservice/AppDataHandler.php';
-require 'src/social/dataservice/PeopleHandler.php';
-require 'src/social/dataservice/ResponseItem.php';
+require 'src/social/service/RestRequestItem.php';
+require 'src/social/service/DataRequestHandler.php';
+require 'src/social/service/ActivitiesHandler.php';
+require 'src/social/service/AppDataHandler.php';
+require 'src/social/service/PeopleHandler.php';
+require 'src/social/service/ResponseItem.php';
 require 'src/social/converters/OutputConverter.php';
 require 'src/social/converters/OutputAtomConverter.php';
 require 'src/social/converters/OutputJsonConverter.php';