Author: chabotc
Date: Sat Sep 13 03:40:06 2008
New Revision: 694920
URL: http://svn.apache.org/viewvc?rev=694920&view=rev
Log:
Step 5: samplecontainer -> sample
Added:
incubator/shindig/trunk/php/src/common/sample/
- copied from r694919,
incubator/shindig/trunk/php/src/common/samplecontainer/
incubator/shindig/trunk/php/src/gadgets/sample/
- copied from r694919,
incubator/shindig/trunk/php/src/gadgets/samplecontainer/
incubator/shindig/trunk/php/src/social/sample/
- copied from r694919,
incubator/shindig/trunk/php/src/social/samplecontainer/
Removed:
incubator/shindig/trunk/php/src/common/samplecontainer/
incubator/shindig/trunk/php/src/gadgets/samplecontainer/
incubator/shindig/trunk/php/src/social/samplecontainer/
Modified:
incubator/shindig/trunk/php/index.php
incubator/shindig/trunk/php/test/ShindigAllTests.php
incubator/shindig/trunk/php/test/common/BasicRemoteContentTest.php
incubator/shindig/trunk/php/test/common/BasicSecurityTokenTest.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=694920&r1=694919&r2=694920&view=diff
==============================================================================
--- incubator/shindig/trunk/php/index.php (original)
+++ incubator/shindig/trunk/php/index.php Sat Sep 13 03:40:06 2008
@@ -41,18 +41,18 @@
{
$locations = array(
'src/common',
- 'src/common/samplecontainer',
+ 'src/common/sample',
'src/gadgets',
'src/gadgets/http',
'src/gadgets/oauth',
- 'src/gadgets/samplecontainer',
+ 'src/gadgets/sample',
'src/social',
'src/social/http',
'src/social/service',
'src/social/opensocial',
'src/social/model',
'src/social/spi',
- 'src/social/samplecontainer'
+ 'src/social/sample'
);
$extension_class_paths = Config::get('extension_class_paths');
if (!empty($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=694920&r1=694919&r2=694920&view=diff
==============================================================================
--- incubator/shindig/trunk/php/test/ShindigAllTests.php (original)
+++ incubator/shindig/trunk/php/test/ShindigAllTests.php Sat Sep 13 03:40:06
2008
@@ -28,12 +28,12 @@
function __autoload($className)
{
$basePath = realpath('./php');
- $locations = array('src/common', 'src/common/samplecontainer',
'src/gadgets',
- 'src/gadgets/http', 'src/gadgets/oauth',
'src/gadgets/samplecontainer',
+ $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/canonical',
'src/social/service', 'src/social/converters',
'src/social/opensocial', 'src/social/spi',
'src/social/model',
- 'src/social/samplecontainer');
+ 'src/social/sample');
$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/common/BasicRemoteContentTest.php
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/php/test/common/BasicRemoteContentTest.php?rev=694920&r1=694919&r2=694920&view=diff
==============================================================================
--- incubator/shindig/trunk/php/test/common/BasicRemoteContentTest.php
(original)
+++ incubator/shindig/trunk/php/test/common/BasicRemoteContentTest.php Sat Sep
13 03:40:06 2008
@@ -1,6 +1,6 @@
<?php
-require_once 'src/common/samplecontainer/BasicRemoteContent.php';
+require_once 'src/common/sample/BasicRemoteContent.php';
require_once 'external/PHPUnit/Framework/TestCase.php';
Modified: incubator/shindig/trunk/php/test/common/BasicSecurityTokenTest.php
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/php/test/common/BasicSecurityTokenTest.php?rev=694920&r1=694919&r2=694920&view=diff
==============================================================================
--- incubator/shindig/trunk/php/test/common/BasicSecurityTokenTest.php
(original)
+++ incubator/shindig/trunk/php/test/common/BasicSecurityTokenTest.php Sat Sep
13 03:40:06 2008
@@ -1,6 +1,6 @@
<?php
-require_once 'src/common/samplecontainer/BasicSecurityToken.php';
+require_once 'src/common/sample/BasicSecurityToken.php';
require_once 'external/PHPUnit/Framework/TestCase.php';
Modified: incubator/shindig/trunk/php/test/index.php
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/php/test/index.php?rev=694920&r1=694919&r2=694920&view=diff
==============================================================================
--- incubator/shindig/trunk/php/test/index.php (original)
+++ incubator/shindig/trunk/php/test/index.php Sat Sep 13 03:40:06 2008
@@ -28,12 +28,12 @@
function __autoload($className)
{
$basePath = realpath('../');
- $locations = array('src/common', 'src/common/samplecontainer',
'src/gadgets',
- 'src/gadgets/http', 'src/gadgets/oauth',
'src/gadgets/samplecontainer',
+ $locations = array('src/common', 'src/common/sample', 'src/gadgets',
+ 'src/gadgets/http', 'src/gadgets/oauth',
'src/gadgets/sample',
'src/social', 'src/social/canonical',
'src/social/http',
'src/social/service', 'src/social/converters',
'src/social/opensocial', 'src/social/spi',
'src/social/model',
- 'src/social/samplecontainer');
+ 'src/social/sample');
$extension_class_paths = Config::get('extension_class_paths');
if (! empty($extension_class_paths)) {
$locations = array_merge(explode(',', $extension_class_paths),
$locations);