Add an about box to the catalog. fix #20

This commit is contained in:
Sébastien Lucas 2012-10-20 06:54:13 +02:00
parent 892b6dd624
commit ddb7442c4a
4 changed files with 41 additions and 2 deletions

20
about.xml Normal file
View File

@ -0,0 +1,20 @@
<div class="entryTitle">Authors</div>
<div class="content" style="max-width:700px;">
<p>COPS is developped and maintained by Sébastien Lucas.</p>
<p>See full history on <a href="https://github.com/seblucas">Github</a> to check all authors.</p>
<p>COPS use some external librairies, check README for the details.</p>
</div>
<div class="entryTitle">Copyright</div>
<div class="content" style="max-width:700px;">
<p>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation.</p>
<p>The complete content of license is provided in file COPYING within distribution and also available <a href="http://www.gnu.org/licenses/gpl-2.0.html">online</a>.</p>
</div>
<div class="entryTitle">Contact</div>
<div class="content" style="max-width:700px;">
<p>For more info please visit <a href="http://blog.slucas.fr/en/oss/calibre-opds-php-server">COPS Home Page</a></p>
<p>You can also check <a href="http://www.mobileread.com/forums/showthread.php?t=170903">COPS's topic on MobileRead forum</a>.</p>
</div>

BIN
images/info.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 734 B

View File

@ -83,6 +83,14 @@
<?php if ($isEink) echo ", openEffect : 'none', closeEffect : 'none', helpers : {overlay : null}"; ?>
});
$(".fancyabout").fancybox({
'type' : 'ajax',
title : 'COPS <?php echo VERSION ?>',
prevEffect : 'none',
nextEffect : 'none'
<?php if ($isEink) echo ", openEffect : 'none', closeEffect : 'none', helpers : {overlay : null}"; ?>
});
$("#searchImage").click(function(){
if ($("#search").is(":hidden")) {
$("#search").slideDown("slow");
@ -238,10 +246,14 @@
}
?>
</div>
<div class="foot">
<div class="footright">
<a class="fancyabout" href="about.xml"><img src="<?php echo getUrlWithVersion("images/info.png") ?>" alt="Home" /></a>
</div>
<?php
if ($currentPage->isPaginated ()) {
?>
<div class="foot">
<div class="footcenter">
<?php
if (!is_null ($prevLink)) {
@ -259,10 +271,10 @@
}
?>
</div>
</div>
<?php
}
?>
</div>
</div>
</body>
</html>

View File

@ -50,6 +50,13 @@ float:right;
height:64px;
}
.footright
{
float:right;
height:32px;
}
.headcenter
{
margin:auto;