1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-06-25 22:53:17 +00:00

Generate identifiers in opf metadata file

This commit is contained in:
GONCALVES Nelson (T0025615) 2023-12-21 11:02:45 +01:00
parent d353c9b6d3
commit f08c8faaff

View File

@ -137,6 +137,10 @@ class TaskBackupMetadata(CalibreTask):
identifier2 = etree.SubElement(metadata, PURL + "identifier", id="uuid_id", nsmap=NSMAP)
identifier2.set(OPF + "scheme", "uuid")
identifier2.text = book.uuid
for i in book.identifiers:
identifier = etree.SubElement(metadata, PURL + "identifier", nsmap=NSMAP)
identifier.set(OPF + "scheme", i.format_type())
identifier.text = str(i.val)
title = etree.SubElement(metadata, PURL + "title", nsmap=NSMAP)
title.text = book.title
for author in book.authors: