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/16 01:30:01 UTC

svn commit: r677092 - in /incubator/shindig/trunk/php/src: common/samplecontainer/BasicBlobCrypter.php socialdata/http/GadgetDataServlet.php socialrest/http/RestServlet.php

Author: chabotc
Date: Tue Jul 15 16:30:00 2008
New Revision: 677092

URL: http://svn.apache.org/viewvc?rev=677092&view=rev
Log:
Moved Crypto.php to common/samplecontainer since it's tied to it's implementation and not a generic component

Modified:
    incubator/shindig/trunk/php/src/common/samplecontainer/BasicBlobCrypter.php
    incubator/shindig/trunk/php/src/socialdata/http/GadgetDataServlet.php
    incubator/shindig/trunk/php/src/socialrest/http/RestServlet.php

Modified: incubator/shindig/trunk/php/src/common/samplecontainer/BasicBlobCrypter.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/samplecontainer/BasicBlobCrypter.php?rev=677092&r1=677091&r2=677092&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/common/samplecontainer/BasicBlobCrypter.php (original)
+++ incubator/shindig/trunk/php/src/common/samplecontainer/BasicBlobCrypter.php Tue Jul 15 16:30:00 2008
@@ -18,6 +18,8 @@
  * 
  */
 
+require 'src/common/samplecontainer/Crypto.php';
+
 class BlobExpiredException extends Exception {}
 
 /**

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=677092&r1=677091&r2=677092&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/socialdata/http/GadgetDataServlet.php (original)
+++ incubator/shindig/trunk/php/src/socialdata/http/GadgetDataServlet.php Tue Jul 15 16:30:00 2008
@@ -23,7 +23,6 @@
 require 'src/common/SecurityTokenDecoder.php';
 require 'src/common/SecurityToken.php';
 require 'src/common/BlobCrypter.php';
-require 'src/common/Crypto.php';
 require 'src/socialdata/RequestItem.php';
 require 'src/socialdata/ResponseItem.php';
 require 'src/socialdata/opensocial/model/Activity.php';

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=677092&r1=677091&r2=677092&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/socialrest/http/RestServlet.php (original)
+++ incubator/shindig/trunk/php/src/socialrest/http/RestServlet.php Tue Jul 15 16:30:00 2008
@@ -21,7 +21,6 @@
 require 'src/common/SecurityTokenDecoder.php';
 require 'src/common/SecurityToken.php';
 require 'src/common/BlobCrypter.php';
-require 'src/common/Crypto.php';
 require 'src/socialdata/opensocial/model/Activity.php';
 require 'src/socialdata/opensocial/model/Address.php';
 require 'src/socialdata/opensocial/model/ApiCollection.php';