mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-20 21:58:09 +00:00
remove unnecessary lines (again)
This commit is contained in:
parent
00483a1e0e
commit
3b21caa261
1 changed files with 7 additions and 6 deletions
|
@ -120,8 +120,12 @@ class WallabagEpub extends WallabagEBooks
|
||||||
$book->addDublinCoreMetadata(DublinCore::CONTRIBUTOR, "PHP");
|
$book->addDublinCoreMetadata(DublinCore::CONTRIBUTOR, "PHP");
|
||||||
$book->addDublinCoreMetadata(DublinCore::CONTRIBUTOR, "wallabag");
|
$book->addDublinCoreMetadata(DublinCore::CONTRIBUTOR, "wallabag");
|
||||||
|
|
||||||
$cssData = "body {\n margin-left: .5em;\n margin-right: .5em;\n text-align: justify;\n}\n\np {\n font-family: serif;\n font-size: 10pt;\n text-align: justify;\n text-indent: 1em;\n margin-top: 0px;\n margin-bottom: 1ex;\n}\n\nh1, h2 {\n font-family: sans-serif;\n font-style: italic;\n text-align: center;\n background-color: #6b879c;\n color: white;\n width: 100%;\n}\n\nh1 {\n margin-bottom: 2px;\n}\n\nh2 {\n margin-top: -2px;\n margin-bottom: 2px;\n}\n";
|
/*
|
||||||
|
* Line not used but planned to be used
|
||||||
|
*
|
||||||
|
*$cssData = "body {\n margin-left: .5em;\n margin-right: .5em;\n text-align: justify;\n}\n\np {\n font-family: serif;\n font-size: 10pt;\n text-align: justify;\n text-indent: 1em;\n margin-top: 0px;\n margin-bottom: 1ex;\n}\n\nh1, h2 {\n font-family: sans-serif;\n font-style: italic;\n text-align: center;\n background-color: #6b879c;\n color: white;\n width: 100%;\n}\n\nh1 {\n margin-bottom: 2px;\n}\n\nh2 {\n margin-top: -2px;\n margin-bottom: 2px;\n}\n";
|
||||||
|
*/
|
||||||
|
|
||||||
$log->logLine("Add Cover");
|
$log->logLine("Add Cover");
|
||||||
|
|
||||||
$fullTitle = "<h1> " . $this->bookTitle . "</h1>\n";
|
$fullTitle = "<h1> " . $this->bookTitle . "</h1>\n";
|
||||||
|
@ -179,8 +183,6 @@ class WallabagMobi extends WallabagEBooks
|
||||||
$mobi = new MOBI();
|
$mobi = new MOBI();
|
||||||
$content = new MOBIFile();
|
$content = new MOBIFile();
|
||||||
|
|
||||||
$messages = new Messages(); // for later
|
|
||||||
|
|
||||||
Tools::logm('Filling metadata for Mobi...');
|
Tools::logm('Filling metadata for Mobi...');
|
||||||
|
|
||||||
$content->set("title", $this->bookTitle);
|
$content->set("title", $this->bookTitle);
|
||||||
|
@ -242,10 +244,9 @@ class WallabagPDF extends WallabagEbooks
|
||||||
|
|
||||||
$pdf->writeHTMLCell(0, 0, '', '', $intro, 0, 1, 0, true, '', true);
|
$pdf->writeHTMLCell(0, 0, '', '', $intro, 0, 1, 0, true, '', true);
|
||||||
|
|
||||||
$i = 1;
|
|
||||||
Tools::logm('Adding actual content...');
|
Tools::logm('Adding actual content...');
|
||||||
foreach ($this->entries as $item) {
|
foreach ($this->entries as $item) {
|
||||||
$tags = $this->wallabag->store->retrieveTagsByEntry($entry['id']);
|
$tags = $this->wallabag->store->retrieveTagsByEntry($item['id']);
|
||||||
foreach ($tags as $tag) {
|
foreach ($tags as $tag) {
|
||||||
$pdf->SetKeywords($tag['value']);
|
$pdf->SetKeywords($tag['value']);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue