summaryrefslogtreecommitdiff
path: root/source/html
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2015-05-19 17:22:01 +0200
committerTor Andersson <tor.andersson@artifex.com>2015-05-19 17:22:53 +0200
commit0dc2cbf8fedd5615898b09314d0c899c6e911baa (patch)
tree7dd23ead25bcf9c7419700ffd27c68d95cbd6524 /source/html
parent9adccf1e2697cc103715d3c2f916c04bdbcd516a (diff)
downloadmupdf-0dc2cbf8fedd5615898b09314d0c899c6e911baa.tar.xz
epub: User stylesheets.
Add -U option to mupdf and mudraw to set a user stylesheet. Uses a context to store user the stylesheet, just like the AA level.
Diffstat (limited to 'source/html')
-rw-r--r--source/html/epub-doc.c2
-rw-r--r--source/html/html-doc.c4
-rw-r--r--source/html/html-layout.c4
3 files changed, 5 insertions, 5 deletions
diff --git a/source/html/epub-doc.c b/source/html/epub-doc.c
index 712d5804..a2871889 100644
--- a/source/html/epub-doc.c
+++ b/source/html/epub-doc.c
@@ -195,7 +195,7 @@ epub_parse_chapter(fz_context *ctx, epub_document *doc, const char *path)
fz_write_buffer_byte(ctx, buf, 0);
ch = fz_malloc_struct(ctx, epub_chapter);
- ch->box = fz_parse_html(ctx, doc->set, zip, base_uri, buf, NULL);
+ ch->box = fz_parse_html(ctx, doc->set, zip, base_uri, buf, fz_user_css(ctx));
ch->next = NULL;
fz_drop_buffer(ctx, buf);
diff --git a/source/html/html-doc.c b/source/html/html-doc.c
index 04286f7c..366a7378 100644
--- a/source/html/html-doc.c
+++ b/source/html/html-doc.c
@@ -120,7 +120,7 @@ htdoc_open_document_with_stream(fz_context *ctx, fz_stream *file)
buf = fz_read_all(ctx, file, 0);
fz_write_buffer_byte(ctx, buf, 0);
- doc->box = fz_parse_html(ctx, doc->set, doc->zip, ".", buf, NULL);
+ doc->box = fz_parse_html(ctx, doc->set, doc->zip, ".", buf, fz_user_css(ctx));
fz_drop_buffer(ctx, buf);
return (fz_document*)doc;
@@ -146,7 +146,7 @@ htdoc_open_document(fz_context *ctx, const char *filename)
buf = fz_read_file(ctx, filename);
fz_write_buffer_byte(ctx, buf, 0);
- doc->box = fz_parse_html(ctx, doc->set, doc->zip, ".", buf, NULL);
+ doc->box = fz_parse_html(ctx, doc->set, doc->zip, ".", buf, fz_user_css(ctx));
fz_drop_buffer(ctx, buf);
return (fz_document*)doc;
diff --git a/source/html/html-layout.c b/source/html/html-layout.c
index dd48485b..3bb1789c 100644
--- a/source/html/html-layout.c
+++ b/source/html/html-layout.c
@@ -1241,9 +1241,9 @@ fz_parse_html(fz_context *ctx, fz_html_font_set *set, fz_archive *zip, const cha
xml = fz_parse_xml(ctx, buf->data, buf->len, 1);
css = fz_parse_css(ctx, NULL, default_css, "<default>");
- if (user_css)
- css = fz_parse_css(ctx, NULL, user_css, "<user>");
css = html_load_css(ctx, zip, base_uri, css, xml);
+ if (user_css)
+ css = fz_parse_css(ctx, css, user_css, "<user>");
// print_rules(css);