mirror of
https://github.com/silverstripe/doc.silverstripe.org
synced 2024-10-22 17:05:50 +02:00
8b788048e8
git-svn-id: http://svn.silverstripe.com/projects/ss2doc/branches/v2@118308 467b73ca-7a2a-4603-9d3b-597d59a354a9
71 lines
2.2 KiB
PHP
71 lines
2.2 KiB
PHP
<?php
|
|
|
|
global $project;
|
|
$project = 'mysite';
|
|
|
|
global $database;
|
|
$database = 'SS_ssnewdocstest';
|
|
|
|
require_once('conf/ConfigureFromEnv.php');
|
|
|
|
MySQLDatabase::set_connection_charset('utf8');
|
|
|
|
// This line set's the current theme. More themes can be
|
|
// downloaded from http://www.silverstripe.org/themes/
|
|
SSViewer::set_theme('docs');
|
|
|
|
// enable nested URLs for this site (e.g. page/sub-page/)
|
|
SiteTree::enable_nested_urls();
|
|
|
|
// render the user documentation first
|
|
Director::addRules(20, array(
|
|
'Security//$Action/$ID/$OtherID' => 'Security',
|
|
));
|
|
DocumentationViewer::set_link_base('');
|
|
DocumentationViewer::$check_permission = false;
|
|
|
|
// Hacky, but does the job. Without checking for this,
|
|
// all tests relying on standard URL routing will fail (e.g. ContentControllerTest)
|
|
$isRunningTest = (
|
|
(isset($_SERVER['argv'][1]) && strpos($_SERVER['argv'][1], 'dev/tests') !== FALSE)
|
|
|| (isset($_SERVER['REQUEST_URI']) && strpos($_SERVER['REQUEST_URI'], 'dev/tests') !== FALSE)
|
|
);
|
|
if(!$isRunningTest) {
|
|
Director::addRules(10, array(
|
|
'$Action' => 'DocumentationViewer',
|
|
'' => '->sapphire/en/'
|
|
));
|
|
}
|
|
|
|
DocumentationService::set_automatic_registration(false);
|
|
DocumentationSearch::enable();
|
|
|
|
try{
|
|
DocumentationService::register("sapphire", BASE_PATH ."/src/sapphire_master/docs/", 'trunk');
|
|
DocumentationService::register("sapphire", BASE_PATH ."/src/sapphire_2.4/docs/", '2.4');
|
|
//DocumentationService::register("sapphire", BASE_PATH ."/src/sapphire_2.3/docs/", '2.3');
|
|
} catch(InvalidArgumentException $e) {
|
|
} // Silence if path is not found (for CI environment)
|
|
|
|
|
|
// We want this to be reviewed by the whole community
|
|
BasicAuth::protect_entire_site(false);
|
|
|
|
Object::add_extension('DocumentationViewer', 'DocumentationViewerExtension');
|
|
if(Director::isLive()) {
|
|
DocumentationViewerExtension::$google_analytics_code = 'UA-84547-8';
|
|
}
|
|
|
|
Validator::set_javascript_validation_handler('none');
|
|
|
|
DocumentationSearch::set_meta_data(array(
|
|
'ShortName' => 'SilverStripe Documentation',
|
|
'Description' => 'Documentation for SilverStripe CMS and the Sapphire Framework',
|
|
'Tags' => 'silverstripe sapphire php framework cms content management system'
|
|
));
|
|
|
|
DocumentationSearch::$boost_by_path = array(
|
|
// Changelogs have heaps of phrases, but are rarely relevant for content searches
|
|
'/^changelog/' => 0.05
|
|
);
|