Author: chabotc
Date: Mon Feb 23 14:57:30 2009
New Revision: 747041
URL: http://svn.apache.org/viewvc?rev=747041&view=rev
Log:
SHINDIG-929 by Jakub Vrána - Invalid example configuration
Modified:
incubator/shindig/trunk/php/README
incubator/shindig/trunk/php/config/container.php
Modified: incubator/shindig/trunk/php/README
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/php/README?rev=747041&r1=747040&r2=747041&view=diff
==============================================================================
--- incubator/shindig/trunk/php/README (original)
+++ incubator/shindig/trunk/php/README Mon Feb 23 14:57:30 2009
@@ -76,17 +76,18 @@
fields you want to overwrite with other values, for example on a production
system you
would probably want to have something like:
$shindigConfig = array(
- 'debug' => false,
+ 'debug' => false,
'allow_plaintext_token' => false,
'token_cipher_key' => 'MySecretKey',
'token_hmac_key' => 'MyOtherSecret',
'private_key_phrase' => 'MyCertificatePassword',
- 'people_service' => 'MyPeopleService',
+ 'person_service' => 'MyPeopleService',
'activity_service' => 'MyActivitiesService',
'app_data_service' => 'MyAppDataService',
- 'app_data_service' => 'MyAppDataService',
+ 'messages_service' => 'MyMessagesService',
'oauth_lookup_service' => 'MyOAuthLookupService'
'xrds_location' => 'http://www.mycontainer.com/xrds',
'check_file_exists' => false
+ );
And then implement your own service and oauth lookup classes.
Modified: incubator/shindig/trunk/php/config/container.php
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/php/config/container.php?rev=747041&r1=747040&r2=747041&view=diff
==============================================================================
--- incubator/shindig/trunk/php/config/container.php (original)
+++ incubator/shindig/trunk/php/config/container.php Mon Feb 23 14:57:30 2009
@@ -32,13 +32,13 @@
* 'token_cipher_key' => 'MySecretKey',
* 'token_hmac_key' => 'MyOtherSecret',
* 'private_key_phrase' => 'MyCertificatePassword',
- * 'people_service' => 'MyPeopleService',
+ * 'person_service' => 'MyPeopleService',
* 'activity_service' => 'MyActivitiesService',
* 'app_data_service' => 'MyAppDataService',
- * 'app_data_service' => 'MyAppDataService',
+ * 'messages_service' => 'MyMessagesService',
* 'oauth_lookup_service' => 'MyOAuthLookupService'
* 'xrds_location' => 'http://www.mycontainer.com/xrds',
- * 'check_file_exists' => false
+ * 'check_file_exists' => false
* );
*
*/