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:52:48 UTC

svn commit: r694925 - in /incubator/shindig/trunk/php: index.php test/ShindigAllTests.php test/index.php

Author: chabotc
Date: Sat Sep 13 03:52:47 2008
New Revision: 694925

URL: http://svn.apache.org/viewvc?rev=694925&view=rev
Log:
Adding social oauth path to autoloaders

Modified:
    incubator/shindig/trunk/php/index.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=694925&r1=694924&r2=694925&view=diff
==============================================================================
--- incubator/shindig/trunk/php/index.php (original)
+++ incubator/shindig/trunk/php/index.php Sat Sep 13 03:52:47 2008
@@ -52,6 +52,7 @@
 					'src/social/opensocial',
 					'src/social/model',
 					'src/social/spi',
+					'src/social/oauth',
 					'src/social/sample'
 				);
 	$extension_class_paths = Config::get('extension_class_paths');

Modified: incubator/shindig/trunk/php/test/ShindigAllTests.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/test/ShindigAllTests.php?rev=694925&r1=694924&r2=694925&view=diff
==============================================================================
--- incubator/shindig/trunk/php/test/ShindigAllTests.php (original)
+++ incubator/shindig/trunk/php/test/ShindigAllTests.php Sat Sep 13 03:52:47 2008
@@ -31,7 +31,7 @@
 	$locations = array('src/common', 'src/common/sample', 'src/gadgets', 'src/gadgets/http', 
 			'src/gadgets/oauth', 'src/gadgets/sample', 'src/social', 'src/social/http', 
 			'src/social/service', 'src/social/converters', 'src/social/opensocial', 
-			'src/social/spi', 'src/social/model', 'src/social/sample');
+			'src/social/spi', 'src/social/model', 'src/social/sample', 'src/social/oauth');
 	$extension_class_paths = Config::get('extension_class_paths');
 	if (! empty($extension_class_paths)) {
 		$locations = array_merge(explode(',', $extension_class_paths), $locations);

Modified: incubator/shindig/trunk/php/test/index.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/test/index.php?rev=694925&r1=694924&r2=694925&view=diff
==============================================================================
--- incubator/shindig/trunk/php/test/index.php (original)
+++ incubator/shindig/trunk/php/test/index.php Sat Sep 13 03:52:47 2008
@@ -31,7 +31,7 @@
 	$locations = array('src/common', 'src/common/sample', 'src/gadgets', 'src/gadgets/http', 
 			'src/gadgets/oauth', 'src/gadgets/sample', 'src/social', 'src/social/http', 
 			'src/social/service', 'src/social/converters', 'src/social/opensocial', 
-			'src/social/spi', 'src/social/model', 'src/social/sample');
+			'src/social/spi', 'src/social/model', 'src/social/sample', 'src/social/oauth');
 	$extension_class_paths = Config::get('extension_class_paths');
 	if (! empty($extension_class_paths)) {
 		$locations = array_merge(explode(',', $extension_class_paths), $locations);