![]() |
#1 |
Junior Member
![]() Posts: 6
Karma: 10
Join Date: Jun 2012
Device: ipad
|
![]()
Hi everybody,
Please i really need your help, I have created an epub with sigil and the book works great in my Ipad. Sigil validates the book (no errors) but when i submit it to the Applestore the validation process founds some errors in the book : ERROR ITMS-9000: "OEBPS/Text/Section0001.xhtml(6): element "head" incomplete; missing required element "title". This error occurs 6 times." at Book (MZItmspBookPackage) ERROR ITMS-9000: "OEBPS/Text/Section0003.xhtml(16): element "blockquote" incomplete; expected element "address", "blockquote", "del", "div", "dl", "h1", "h2", "h3", "h4", "h5", "h6", "hr", "ins", "noscript", "ns:svg", "ol", "p", "pre", "script", "table" or "ul" (with xmlns:ns="http://www.w3.org/2000/svg"). This error occurs 2 times." at Book (MZItmspBookPackage) Itunesproducer (the apple tool to submit ebooks) proposes to repair the e-pub i submit but i don't know if it repairs it correctly. I prefer to do it myself. Thank you very much for your help, Ibn |
![]() |
![]() |
![]() |
#2 |
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 4,520
Karma: 121692313
Join Date: Oct 2009
Location: Heemskerk, NL
Device: PRS-T1, Kobo Touch, Kobo Aura
|
The first one is simple. You miss the <title></title> in your files. It does not do anything, but it must be there.
The second can be various. I think you are misusing the blockquote. If you can post the lines 13 to 19 we should be able to tell you more. |
![]() |
![]() |
Advert | |
|
![]() |
#3 |
Junior Member
![]() Posts: 6
Karma: 10
Join Date: Jun 2012
Device: ipad
|
Thank you very much Toxaris, i managed to solve the first title error with your help.
For the blockquote error you'll find below the lines of the section0003 in my epub. I replace the copyrighted text by "TEXT" or TEXT : <?xml version="1.0" encoding="utf-8" standalone="no"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <link href="../Styles/stylesheet.css" rel="stylesheet" type="text/css" /> <title>Epigraphes</title> <style type="text/css"> /*<![CDATA[*/ @page { margin-bottom: 5.000000pt; margin-top: 5.000000pt; } /*]]>*/ </style> </head> <body class="calibre"> <p class="sgc">« TEXT »</p> <p class="sgc">TEXT</p> <blockquote class="sgc1"> <p class="sgc2"><br class="calibre2" /></p> </blockquote> <blockquote class="sgc1"></blockquote> <blockquote class="sgc1"></blockquote> <div class="calibre4"> <span class="calibre5">« TEXT »<br class="calibre2" /></span> </div> <blockquote class="sgc1"> <div class="calibre6"> <span class="calibre5">TEXT</span> </div> </blockquote> </body> </html> Many thanks, Ibn |
![]() |
![]() |
![]() |
#4 |
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 4,520
Karma: 121692313
Join Date: Oct 2009
Location: Heemskerk, NL
Device: PRS-T1, Kobo Touch, Kobo Aura
|
If I remember correctly, a blockquotes is not allowed to contain <p></p> tags.
|
![]() |
![]() |
![]() |
#5 |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 28,341
Karma: 203719646
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
|
Actually, for XHTML, the contents of blockquotes are supposed to be wrapped in other block elements (p, div, h, ul, ol, dl, etc..), but I have no idea about the ePub or iBooks specifications.
|
![]() |
![]() |
Advert | |
|
![]() |
#6 |
Resident Curmudgeon
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 78,986
Karma: 144284074
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
|
Code:
<blockquote class="sgc1"> <div class="calibre6"> <span class="calibre5">TEXT</span> </div> </blockquote> Code:
<blockquote class="sgc1"> <p class="calibre6"><span class="calibre5">TEXT</span></p> </blockquote> |
![]() |
![]() |
![]() |
#7 |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 28,341
Karma: 203719646
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
|
Is that an iBooks thing Jon? I only ask because:
Code:
<blockquote class="sgc1"> <div class="calibre6"> <span class="calibre5">TEXT</span> </div> </blockquote> |
![]() |
![]() |
![]() |
#8 |
Resident Curmudgeon
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 78,986
Karma: 144284074
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
|
The div is the only thing I can see that could maybe cause a problem. Besides, can't hurt to try converting it into a p and see if it fixes things.
Well, maybe the BR is an issue. Dunno for sure. |
![]() |
![]() |
![]() |
#9 |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 28,341
Karma: 203719646
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
|
|
![]() |
![]() |
![]() |
#10 |
Resident Curmudgeon
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 78,986
Karma: 144284074
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
|
|
![]() |
![]() |
![]() |
#11 | |
Berti
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 1,197
Karma: 4985964
Join Date: Jan 2012
Location: Zischebattem
Device: Acer Lumiread
|
Quote:
Code:
<blockquote class="sgc1"></blockquote> |
|
![]() |
![]() |
![]() |
#12 |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 28,341
Karma: 203719646
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
|
Well that was easy enough. Really no sense in having empty blockquotes anyway.
![]() |
![]() |
![]() |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Apple:180 million books downloaded from iBookStore | kjk | Apple Devices | 13 | 10-20-2011 10:27 PM |
how to transfer epub to ibookstore(apple) | chengyibo | ePub | 3 | 05-08-2011 12:10 PM |
Apple iBookstore links | Zenoah | Apple Devices | 1 | 09-20-2010 05:38 PM |
NOW I can post my ebook directly to Apple iBookStore! | delphidb96 | General Discussions | 13 | 07-12-2010 11:28 PM |