01-29-2018, 08:25 AM | #1 |
Grand Sorcerer
Posts: 5,651
Karma: 23456789
Join Date: Dec 2010
Device: Kindle PW2
|
[Plugin] Epub2LegacyMetaData - legacy epub2 metadata editor
Last updated: August 8, 2023
Current Version: "0.2.3" This plugin recreates the table-based epub2 metadata editor that was used in older Sigil versions. There are some minor differences, though:
There are also some new features:
Credits: The plugin uses code originally written by Florian Strzelecki for the Python-Epub 0.5.2 package. It also uses the original Sigil .ui files and metadata descriptions. The plugin icon for Sigil 0.9.9.1 and higher was created by BeckyEbook. DiapDealer created the Darkmode support code and provided a custom library for PySide6/PyQt5 support. System requirements: This plugin requires Sigil 0.9.8 or higher and only works with epub2 books. Installation: 1. Select Manage Plugins from the Plugins menu and select Use Bundled Python, if it isn't already selected. 2. Click Add Plugin and select Epub2LegacyMetaData_v0.2.3.zip. This will install the Epub2LegacyMetaData plugin, which you can select via Plugins > Edit > Epub2LegacyMetaData. Known issues: Very long metadata entries are sometimes not correctly resized or shown as blank cells. To fix this issue simply resize the Epub2LegacyMetaData dialog box. You might get a "The metadata might have been modified..." message, when you click the Cancel button, even if you didn't change anything. This message is usually displayed, if the ebook didn't contain a language metadata entry or the existing language metadata entry is wrong. If this happens, move the Epub2LegacyMetaData dialog box to the side, click Details to open the Plugin Runner dialog box and check the original metadata section in the Plugin Runner dialog box. (Advanced users could also change the plugin.xml <autoclose>true</autoclose> entry to <autoclose>false</autoclose>.) License: GNU General Public License v3 (GPL-3) Last edited by Doitsu; 08-05-2023 at 03:29 AM. Reason: Updated for Qt 6.5.2 and Python 3.11.3 |
01-29-2018, 06:25 PM | #2 |
Grand Sorcerer
Posts: 28,082
Karma: 199770456
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
|
Very nice! It has the added benefit of showing people how to get translations working for Qt plugins.
I've added it to the plugin index. Thanks for the contribution to Sigil! |
Advert | |
|
01-30-2018, 10:24 AM | #3 |
Connoisseur
Posts: 57
Karma: 600000
Join Date: Jan 2018
Device: Galaxy Tab S2
|
Cool!
What about inserting a button "Series" adding <meta content="..." name="calibre:series" /> <meta content="1" name="calibre:series_index" /> to the metadata? They are not official, but there is at least no replacement for them and some e-readers/softreaders are interpreting them. M |
01-30-2018, 11:10 AM | #4 |
Sigil Developer
Posts: 8,258
Karma: 5568412
Join Date: Nov 2009
Device: many
|
If you do, please do not forget to add the calibre xml namespace info to the metadata tag itself.
Last edited by KevinH; 01-30-2018 at 11:26 AM. |
01-30-2018, 11:27 AM | #5 |
Connoisseur
Posts: 57
Karma: 600000
Join Date: Jan 2018
Device: Galaxy Tab S2
|
Practically seen neither FlightCrew nor Epubcheck are complaining if the name space is missing. At least mantano reader is accepting them without namespace as well.
Theoretically you're right, no question. |
Advert | |
|
01-30-2018, 12:08 PM | #6 |
Grand Sorcerer
Posts: 5,651
Karma: 23456789
Join Date: Dec 2010
Device: Kindle PW2
|
Added in version 0.1.1.
Last edited by Doitsu; 02-04-2018 at 05:11 AM. |
01-31-2018, 10:16 AM | #7 | |
A Hairy Wizard
Posts: 3,245
Karma: 19222221
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
|
Quote:
It would be nice though, if TPTB ever agree on a standard meta for series/# for that to be added to the meta editor in Sigil. |
|
01-31-2018, 10:27 AM | #8 |
Sigil Developer
Posts: 8,258
Karma: 5568412
Join Date: Nov 2009
Device: many
|
Currently, Sigil meets the 3.01 spec. The IDPF has disolved and merged with W3C. They have no spec. They are planning a completely new packaged web content spec for epub4 which does not even use an opf, or zip, or ...
An epub community within w3c has decided epub 3.1 is dead on arrival. They are trying to salvage an epub 3.2 or epub 3.0.2 that does not support any series meta either. Once the calibre namespace prefix is added to the metadata tag, using calibre: metadata is completely legal for xml and use in an opf. The issue is adoption by readers but since there is no other viable solution .... So do not hold your breath. Simply add the calibre namespace to the metadata tag in the opf and use your clip as the epub format is in for a very rocky future. ie. Inside the metadata tag, my guess is adding the following attribute will do the trick, unless calibre has a more specific url that describes its metadata. Code:
xmlns:calibre="http://calibre-ebook.com" KevinH Last edited by KevinH; 01-31-2018 at 12:53 PM. Reason: updating to make things clearer |
02-01-2018, 03:45 AM | #9 |
creator of calibre
Posts: 44,690
Karma: 24967300
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
|
The XML namespace calibre uses is
xmlns:calibre="http://calibre.kovidgoyal.net/2009/metadata" However, this is not actually needed for <meta> tags. That is because the calibre: prefix in the meta tag is *inside* an attribute value and as such is not an actual XML namespace. |
02-01-2018, 08:33 AM | #10 |
Sigil Developer
Posts: 8,258
Karma: 5568412
Join Date: Nov 2009
Device: many
|
I thought attributes could have namespaces as well. Don’t they need to be defined as well?
|
02-01-2018, 11:01 AM | #11 |
creator of calibre
Posts: 44,690
Karma: 24967300
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
|
This is a namespace isnide the attribute value not the attribute name.
So calibre:name="series" is a namespaced attribute name="calibre:series" is not. |
02-01-2018, 11:06 AM | #12 |
Sigil Developer
Posts: 8,258
Karma: 5568412
Join Date: Nov 2009
Device: many
|
Well you do learn something every day! So if a user just wanted to only use calibre series metadata, they would not need to do anything other than use the epub2 meta tag with the appropriate name and content. No namespace additions needed at all.
The equivalent in epub3 would then be: <meta property="calibre:series">Series Name here</meta> <meta property="calibre:series_index">1</meta> So you would then not need any refines or use dcterms isPartOf. Is that correct? |
02-01-2018, 11:11 AM | #13 |
creator of calibre
Posts: 44,690
Karma: 24967300
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
|
That is correct. However, for epub 3 calibre uses the technique defined in the spec for series (belongs-to-collection). It also supports the meta tag approach so you can use either as far as calibre is concerned, but for wider interoperability better to use the standard approach despite it being far less elegant.
|
02-01-2018, 11:16 AM | #14 |
Sigil Developer
Posts: 8,258
Karma: 5568412
Join Date: Nov 2009
Device: many
|
Okay so to be most correct when converting an epub2 to an epub3, ePub3-itizer should then recognize and convert calibre:series and calibre:series_index inside epub2 style meta entries to:
Code:
<meta id="num" property="belongs-to-collection">Series Name Here</meta> <meta refines="#num" property="collection-type">series</meta> <meta refines="#num" property="group-position">1</meta> ps: I have now created fixes for this which I will push tomorrow to support recognition of calibre:series and calibre:series_index in both the ePub3-itizer plugin and inside Sigil itself inside Sigil's Metadata Editor GUI when used on an epub2. pps: Sigil master now has support for calibre:series and calibre:series_index in the epub2 Metadata Editor. Last edited by KevinH; 02-02-2018 at 09:54 AM. Reason: fixes for both ePub3-itizer and Sigil Metadata Editor made |
02-01-2018, 02:17 PM | #15 | |
Zealot
Posts: 100
Karma: 1204
Join Date: Jun 2012
Device: Bookari (née Mantano Reader) on Android; Kindle Fire HD
|
Quote:
I’m not sure that’s right. My reading was, it was 3.1 which removed series metadata, and since 3.2 (AKA 3.0.2) is returning to 3.0.1-compatibility (warts and all) it’ll have the series metadata from 3.0.1 too. (It’ll be “deprecated”, but since there won’t be another 3.x version, and since EPUB4 will have a completely different model anyway, I don’t see that deprecation will have any effect at all.) |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
[Plugin] epub2 output | Doitsu | Plugins | 11 | 12-01-2021 05:17 PM |
Open Metadata Editor from plugin | notbuu | Development | 5 | 10-05-2016 01:10 AM |
Regarding using metadata objects in identify method of metadata download plugin api | aprekates | Development | 1 | 07-06-2014 04:35 AM |
refined metadata in epub2? | mzmm | ePub | 2 | 11-14-2012 02:52 PM |
[Metadata Download Plugin] Goodreads Metadata **Deprecated** | kiwidude | Plugins | 30 | 04-23-2011 03:10 PM |