Author: chabotc
Date: Sun Nov 23 12:44:29 2008
New Revision: 720037
URL: http://svn.apache.org/viewvc?rev=720037&view=rev
Log:
Debugging statement snuk in & added converters to the autload search paths
Modified:
incubator/shindig/trunk/php/index.php
incubator/shindig/trunk/php/src/common/sample/BasicRemoteContent.php
Modified: incubator/shindig/trunk/php/index.php
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/php/index.php?rev=720037&r1=720036&r2=720037&view=diff
==============================================================================
--- incubator/shindig/trunk/php/index.php (original)
+++ incubator/shindig/trunk/php/index.php Sun Nov 23 12:44:29 2008
@@ -53,6 +53,7 @@
'src/social/opensocial',
'src/social/model',
'src/social/spi',
+ 'src/social/converters',
'src/social/oauth',
'src/social/sample'
);
Modified: incubator/shindig/trunk/php/src/common/sample/BasicRemoteContent.php
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/sample/BasicRemoteContent.php?rev=720037&r1=720036&r2=720037&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/common/sample/BasicRemoteContent.php
(original)
+++ incubator/shindig/trunk/php/src/common/sample/BasicRemoteContent.php Sun
Nov 23 12:44:29 2008
@@ -32,7 +32,6 @@
if (! $context->getIgnoreCache() && ! $request->isPost() &&
($cachedRequest = $cache->get($request->toHash(),
$context->getRefreshInterval())) !== false) {
$ret = $cachedRequest;
} else {
- syslog(5," fetching: ".print_r($request, true));
$ret = $remoteContentFetcher->fetchRequest($request);
// only cache requests that returned a 200 OK and is not a POST
if ($request->getHttpCode() == '200' && ! $request->isPost()) {
@@ -75,4 +74,4 @@
return $rets;
}
-}
\ No newline at end of file
+}