2013-05-15 10:21:59 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once ("config.php");
|
|
|
|
require_once ("base.php");
|
|
|
|
require_once ("resources/php-epub-meta/epub.php");
|
|
|
|
|
|
|
|
header ("Content-Type: text/html;charset=utf-8");
|
|
|
|
|
|
|
|
$book = new EPub ("c:/Temp/Alice.epub");
|
|
|
|
$book->initSpineComponent ();
|
|
|
|
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
|
<meta http-equiv="imagetoolbar" content="no" />
|
|
|
|
<meta name="viewport" content="width=device-width, height=device-height, user-scalable=no" />
|
|
|
|
<title>COPS's Epub Reader</title>
|
|
|
|
<script type="text/javascript" src="<?php echo getUrlWithVersion("js/jquery-1.9.1.min.js") ?>"></script>
|
2013-05-15 13:11:47 +03:00
|
|
|
<script type="text/javascript" src="<?php echo getUrlWithVersion("resources/monocle320/scripts/monocore.js") ?>"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="<?php echo getUrlWithVersion("resources/monocle320/styles/monocore.css") ?>" media="screen" />
|
|
|
|
<style type="text/css">
|
|
|
|
#reader { width: 500px; height: 800px; border: 1px solid #000; }
|
|
|
|
</style>
|
2013-05-15 10:21:59 +03:00
|
|
|
<script type="text/javascript">
|
2013-05-15 13:11:47 +03:00
|
|
|
Monocle.DEBUG = true;
|
2013-05-15 10:21:59 +03:00
|
|
|
var bookData = {
|
|
|
|
getComponents: function () {
|
|
|
|
<?php echo "return [" . implode (", ", array_map (function ($comp) { return "'" . $comp . "'"; }, $book->components ())) . "];"; ?>
|
|
|
|
},
|
|
|
|
getContents: function () {
|
2013-05-15 13:11:47 +03:00
|
|
|
<?php echo "return [" . implode (", ", array_map (function ($content) { return "{title: '" . $content["title"] . "', src: '". $content["src"] . "'}"; }, $book->contents ())) . "];"; ?>
|
2013-05-15 10:21:59 +03:00
|
|
|
},
|
2013-05-15 13:11:47 +03:00
|
|
|
getComponent: function (componentId, callback) {
|
|
|
|
$.ajax({
|
|
|
|
url: "epubfs.php?comp=" + componentId,
|
2013-05-15 14:41:08 +03:00
|
|
|
type: 'get',
|
|
|
|
dataType: 'text',
|
|
|
|
error: function () {alert ("error");},
|
|
|
|
success: callback
|
2013-05-15 13:11:47 +03:00
|
|
|
});
|
2013-05-15 10:21:59 +03:00
|
|
|
},
|
|
|
|
getMetaData: function(key) {
|
|
|
|
return {
|
|
|
|
title: "A book",
|
|
|
|
creator: "Inventive Labs"
|
|
|
|
}[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2013-05-15 13:11:47 +03:00
|
|
|
<div id="reader">
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript">Monocle.Reader('reader', bookData, {});</script>
|
2013-05-15 10:21:59 +03:00
|
|
|
</body>
|
|
|
|
</html>
|