1
0
Fork 0
--HG--
extra : rebase_source : d6fd95a2c138efdb1901d7b09af47e20e6bf993e
Dieser Commit ist enthalten in:
Sébastien Lucas 2013-08-29 08:43:11 +02:00
Ursprung a51a276805
Commit 881f76d87a
2 geänderte Dateien mit 9 neuen und 5 gelöschten Zeilen

Datei anzeigen

@ -9,21 +9,25 @@ function notFound () {
$_SERVER['REDIRECT_STATUS'] = 404;
}
$book = new EPub ("c:/Temp/Alice.epub");
$book = new EPub ("c:/Temp/Phare.epub");
$book->initSpineComponent ();
$component = $_GET["comp"];
$elementPath = NULL;
if (!empty ($_GET) && isset($_GET["path"]) && $_GET["path"] != "") {
$elementPath = $_GET["path"];
}
if (empty ($component)) {
notFound ();
}
try {
$data = $book->component ($component);
$data = $book->component ($component, $elementPath);
$directory = dirname ($component);
$data = preg_replace ("/src=[\"']([^:]*?)[\"']/", "src='epubfs.php?comp=$1'", $data);
$data = preg_replace ("/href=[\"']([^:]*?)[\"']/", "href='epubfs.php?comp=$1'", $data);
$data = preg_replace ("/src=[\"']([^:]*?)[\"']/", "src='epubfs.php?path=$1&comp=$component'", $data);
$data = preg_replace ("/href=[\"']([^:]*?)[\"']/", "href='epubfs.php?path=$1&comp=$component'", $data);
$data = preg_replace ("/\@import\s+[\"'](.*?)[\"'];/", "@import 'epubfs.php?comp={$directory}/$1';", $data);
header ("Content-Type: " . $book->componentContentType($component));

Datei anzeigen

@ -6,7 +6,7 @@ require_once ("resources/php-epub-meta/epub.php");
header ("Content-Type: text/html;charset=utf-8");
$book = new EPub ("c:/Temp/Alice.epub");
$book = new EPub ("c:/Temp/Phare.epub");
$book->initSpineComponent ();
?>