An error occurred while loading the file. Please try again.
-
Laurent authorede5805fd9
router.php 1.46 KiB
<?php
/**
* Copyright (c) 2012, Agence Française Informatique (AFI). All rights reserved.
*
* BOKEH is free software; you can redistribute it and/or modify
* it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
* the Free Software Foundation.
*
* There are special exceptions to the terms and conditions of the AGPL as it
* is applied to this software (see README file).
*
* BOKEH is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
* along with BOKEH; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* Used to run Bokeh using php built-in web server:
* php -S localhost:8080 router.php
*/
$path = pathinfo($_SERVER["SCRIPT_FILENAME"]);
if ($path["extension"] && in_array(strtolower($path["extension"]),
['js','ico','txt','gif','jpg','jpeg','png','css','xml','swf','mov','pdf','doc','docx','woff','eot','svg','ttf','xls','wsdl','mp3','m4v','ogg','ogv','epub','html','xhtml','asmx','zip','sql','bro'])) {
require_once('library/Class/File/Mime.php');
header('Content-Type: '.Class_File_Mime::getType($path['extension']));
readfile($_SERVER["SCRIPT_FILENAME"]);
exit;
}
require_once 'index.php';
?>