From db8b6be8cf0e564398a51b8cc9de0c003caf20de Mon Sep 17 00:00:00 2001 From: Philipp Altmann Date: Tue, 10 Jan 2012 22:08:00 +0100 Subject: Fixing asciidoc makefile to include images. With the next release of Gerrit there will be images in the documentation. With the current makefile they are not included. This patch will solve this problem and include them. With the advent of Internet Explorer 8 all major web browsers now support the data URI scheme for embedded images and this patch use this feature. Bug: issue 1231 Change-Id: I4e675ae42105f38c6ef1287621ac7d738930c82e --- Documentation/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Documentation/Makefile b/Documentation/Makefile index f96c6bae0e..e7f4ee0227 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -74,6 +74,8 @@ $(DOC_HTML): %.html : %.txt @echo "FORMAT $@" @rm -f $@+ $@ @$(ASCIIDOC) -a toc \ + -a data-uri \ + -a icons \ -a 'revision=$(REVISION)' \ -b xhtml11 \ -f asciidoc.conf \ -- cgit v1.2.3