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/12 17:50:54 UTC

svn commit: r676194 - in /incubator/shindig/trunk/php/src: common/samplecontainer/ gadgets/ gadgets/http/ gadgets/samplecontainer/

Author: chabotc
Date: Sat Jul 12 08:50:54 2008
New Revision: 676194

URL: http://svn.apache.org/viewvc?rev=676194&view=rev
Log:
Cleanup of file locations, the http path should only be used for servlets, and the blob crypter is used by the social interface too so should be in common

Added:
    incubator/shindig/trunk/php/src/common/samplecontainer/BasicBlobCrypter.php
      - copied unchanged from r676180, incubator/shindig/trunk/php/src/gadgets/samplecontainer/BasicBlobCrypter.php
    incubator/shindig/trunk/php/src/gadgets/HttpUtil.php
      - copied unchanged from r676180, incubator/shindig/trunk/php/src/gadgets/http/HttpUtil.php
    incubator/shindig/trunk/php/src/gadgets/SigningFetcher.php
      - copied unchanged from r676180, incubator/shindig/trunk/php/src/gadgets/http/SigningFetcher.php
    incubator/shindig/trunk/php/src/gadgets/SigningFetcherFactory.php
      - copied unchanged from r676180, incubator/shindig/trunk/php/src/gadgets/http/SigningFetcherFactory.php
Removed:
    incubator/shindig/trunk/php/src/gadgets/http/HttpUtil.php
    incubator/shindig/trunk/php/src/gadgets/http/SigningFetcher.php
    incubator/shindig/trunk/php/src/gadgets/http/SigningFetcherFactory.php
    incubator/shindig/trunk/php/src/gadgets/samplecontainer/BasicBlobCrypter.php
Modified:
    incubator/shindig/trunk/php/src/gadgets/http/GadgetRenderingServlet.php
    incubator/shindig/trunk/php/src/gadgets/http/JsonRpcServlet.php

Modified: incubator/shindig/trunk/php/src/gadgets/http/GadgetRenderingServlet.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/gadgets/http/GadgetRenderingServlet.php?rev=676194&r1=676193&r2=676194&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/gadgets/http/GadgetRenderingServlet.php (original)
+++ incubator/shindig/trunk/php/src/gadgets/http/GadgetRenderingServlet.php Sat Jul 12 08:50:54 2008
@@ -42,7 +42,7 @@
 require 'src/gadgets/GadgetFeature.php';
 require 'src/gadgets/JsLibraryFeatureFactory.php';
 require 'src/gadgets/JsLibrary.php';
-require 'src/gadgets/http/HttpUtil.php';
+require 'src/gadgets/HttpUtil.php';
 require 'src/gadgets/ContainerConfig.php';
 require 'src/gadgets/rewrite/ContentRewriter.php';
 require 'src/gadgets/rewrite/ContentRewriteFeature.php';

Modified: incubator/shindig/trunk/php/src/gadgets/http/JsonRpcServlet.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/gadgets/http/JsonRpcServlet.php?rev=676194&r1=676193&r2=676194&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/gadgets/http/JsonRpcServlet.php (original)
+++ incubator/shindig/trunk/php/src/gadgets/http/JsonRpcServlet.php Sat Jul 12 08:50:54 2008
@@ -39,7 +39,7 @@
 require 'src/gadgets/JsLibraryFeatureFactory.php';
 require 'src/gadgets/JsLibrary.php';
 require 'src/common/UrlGenerator.php';
-require 'src/gadgets/http/HttpUtil.php';
+require 'src/gadgets/HttpUtil.php';
 require 'src/gadgets/LocaleSpec.php';
 require 'src/gadgets/LocaleMessageBundle.php';
 require 'src/gadgets/UserPref.php';