summaryrefslogtreecommitdiff
path: root/source/html/epub-doc.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2015-09-24 13:17:24 +0200
committerTor Andersson <tor.andersson@artifex.com>2015-09-24 15:18:49 +0200
commit4d1dcf7649bc37535870ac38e958b27c44576fb3 (patch)
treeccfeecb9fb9d3b357a42fd179eb29084888f2303 /source/html/epub-doc.c
parentc97ba05ef627bfdea79bf925e5728ae27270d25e (diff)
downloadmupdf-4d1dcf7649bc37535870ac38e958b27c44576fb3.tar.xz
epub: Add metadata function.
Still a no-op except for returning the document format.
Diffstat (limited to 'source/html/epub-doc.c')
-rw-r--r--source/html/epub-doc.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/html/epub-doc.c b/source/html/epub-doc.c
index a2871889..4610c64a 100644
--- a/source/html/epub-doc.c
+++ b/source/html/epub-doc.c
@@ -284,6 +284,14 @@ epub_parse_header(fz_context *ctx, epub_document *doc)
fz_drop_xml(ctx, content_opf);
}
+int
+epub_lookup_metadata(fz_context *ctx, fz_document *doc_, const char *key, char *buf, int size)
+{
+ if (!strcmp(key, "format"))
+ return fz_strlcpy(buf, "EPUB", size);
+ return -1;
+}
+
static fz_document *
epub_init(fz_context *ctx, fz_archive *zip)
{
@@ -297,6 +305,7 @@ epub_init(fz_context *ctx, fz_archive *zip)
doc->super.layout = epub_layout;
doc->super.count_pages = epub_count_pages;
doc->super.load_page = epub_load_page;
+ doc->super.lookup_metadata = epub_lookup_metadata;
fz_try(ctx)
{