2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
|
2007-09-15 02:08:23 +02:00
|
|
|
/**
|
|
|
|
* Sapphire configuration file
|
|
|
|
*
|
|
|
|
* Here you can make different settings for the Sapphire module (the core
|
|
|
|
* module).
|
|
|
|
*
|
|
|
|
* For example you can register the authentication methods you wish to use
|
|
|
|
* on your site, e.g. to register the OpenID authentication method type
|
|
|
|
*
|
|
|
|
* <code>
|
2007-09-16 02:44:30 +02:00
|
|
|
* Authenticator::register_authenticator('OpenIDAuthenticator');
|
2007-09-15 02:08:23 +02:00
|
|
|
* </code>
|
2008-02-25 03:10:37 +01:00
|
|
|
*
|
|
|
|
* @package sapphire
|
|
|
|
* @subpackage core
|
2007-09-15 02:08:23 +02:00
|
|
|
*/
|
|
|
|
|
2008-08-09 05:19:54 +02:00
|
|
|
// Default director
|
|
|
|
Director::addRules(10, array(
|
2008-08-09 05:29:30 +02:00
|
|
|
'Security//$Action/$ID/$OtherID' => 'Security',
|
2008-08-09 05:19:54 +02:00
|
|
|
//'Security/$Action/$ID' => 'Security',
|
2008-08-11 05:56:09 +02:00
|
|
|
'db//$Action' => 'DatabaseAdmin',
|
|
|
|
'$Controller//$Action/$ID/$OtherID' => '*',
|
2008-08-09 05:19:54 +02:00
|
|
|
'' => 'RootURLController',
|
2009-03-10 23:08:52 +01:00
|
|
|
'api/v1/live' => 'VersionedRestfulServer',
|
2008-08-09 05:19:54 +02:00
|
|
|
'api/v1' => 'RestfulServer',
|
2008-08-11 05:03:52 +02:00
|
|
|
'soap/v1' => 'SOAPModelAccess',
|
2008-12-02 05:33:14 +01:00
|
|
|
'dev' => 'DevelopmentAdmin',
|
|
|
|
'interactive' => 'SapphireREPL',
|
2008-08-09 05:19:54 +02:00
|
|
|
));
|
|
|
|
|
|
|
|
Director::addRules(1, array(
|
2008-08-09 06:38:44 +02:00
|
|
|
'$URLSegment//$Action/$ID/$OtherID' => 'ModelAsController',
|
2008-08-09 05:19:54 +02:00
|
|
|
));
|
|
|
|
|
API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
MINOR: Replaced usage of renamed classes with the new namespaced name.
From: Andrew Short <andrewjshort@gmail.com>
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90075 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-10-26 04:06:31 +01:00
|
|
|
/**
|
|
|
|
* Register the default internal shortcodes.
|
|
|
|
*/
|
2009-10-11 02:07:04 +02:00
|
|
|
ShortcodeParser::get('default')->register('sitetree_link', array('SiteTree', 'link_shortcode_handler'));
|
|
|
|
|
2008-04-05 05:43:58 +02:00
|
|
|
/**
|
API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
MINOR: Replaced usage of renamed classes with the new namespaced name.
From: Andrew Short <andrewjshort@gmail.com>
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90075 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-10-26 04:06:31 +01:00
|
|
|
* PHP 5.2 introduced a conflict with the Datetime field type, which was renamed to SSDatetime. This was later renamed
|
|
|
|
* to SS_Datetime to be consistent with other namespaced classes.
|
|
|
|
*
|
|
|
|
* Overload both of these to support legacy code.
|
2008-04-05 05:43:58 +02:00
|
|
|
*/
|
API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
MINOR: Replaced usage of renamed classes with the new namespaced name.
From: Andrew Short <andrewjshort@gmail.com>
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90075 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-10-26 04:06:31 +01:00
|
|
|
Object::useCustomClass('SSDatetime', 'SS_Datetime', true);
|
|
|
|
Object::useCustomClass('Datetime', 'SS_Datetime', true);
|
2008-04-05 05:43:58 +02:00
|
|
|
|
2007-09-16 02:46:51 +02:00
|
|
|
|
2007-09-16 02:44:30 +02:00
|
|
|
/**
|
|
|
|
* The root directory of TinyMCE
|
|
|
|
*/
|
2009-11-26 06:08:08 +01:00
|
|
|
define('MCE_ROOT', 'sapphire/thirdparty/tinymce/');
|
2007-09-15 04:12:52 +02:00
|
|
|
|
2007-09-16 02:35:09 +02:00
|
|
|
/**
|
2007-09-16 02:44:30 +02:00
|
|
|
* The secret key that needs to be sent along with pings to /Email_BounceHandler
|
|
|
|
*
|
|
|
|
* Change this to something different for increase security (you can
|
|
|
|
* override it in mysite/_config.php to ease upgrades).
|
|
|
|
* For more information see:
|
2009-11-05 04:07:17 +01:00
|
|
|
* {@link http://doc.silverstripe.org/doku.php?id=email_bouncehandler}
|
2007-09-16 02:35:09 +02:00
|
|
|
*/
|
|
|
|
define('EMAIL_BOUNCEHANDLER_KEY', '1aaaf8fb60ea253dbf6efa71baaacbb3');
|
2007-09-15 23:51:37 +02:00
|
|
|
|
2009-11-14 02:14:32 +01:00
|
|
|
PasswordEncryptor::register('none', 'PasswordEncryptor_None');
|
|
|
|
PasswordEncryptor::register('md5', 'PasswordEncryptor_LegacyPHPHash("md5")');
|
|
|
|
PasswordEncryptor::register('sha1','PasswordEncryptor_LegacyPHPHash("sha1")');
|
|
|
|
PasswordEncryptor::register('md5_v2.4', 'PasswordEncryptor_PHPHash("md5")');
|
2010-03-05 02:36:34 +01:00
|
|
|
PasswordEncryptor::register('sha1_v2.4','PasswordEncryptor_PHPHash("sha1")');
|