From c509f73e31705391fa21432fa724d728cd96f384 Mon Sep 17 00:00:00 2001 From: Kjell Ahlstedt Date: Sat, 8 Jan 2022 12:28:48 +0100 Subject: CI: Test with xsltproc --nonet --- docs/docs/doc-manual.am | 2 +- tools/tutorial-custom-cmd.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/docs/doc-manual.am b/docs/docs/doc-manual.am index a7e64a4..908c926 100644 --- a/docs/docs/doc-manual.am +++ b/docs/docs/doc-manual.am @@ -45,7 +45,7 @@ reference/html/%: | manual/html/index.html manual/html/index.html: $(manual_srcfile) -$(AM_V_at)rm -f manual/html/* $(AM_V_at)$(MKDIR_P) manual/html - $(AM_V_GEN)xsltproc $(xslt_params) -o manual/html/ --catalogs '$(DOCBOOK_STYLESHEET)' $(manual_srcfile) + $(AM_V_GEN)xsltproc $(xslt_params) -o manual/html/ --nonet --catalogs '$(DOCBOOK_STYLESHEET)' $(manual_srcfile) manual/libsigc_manual.dvi: $(manual_srcfile) $(AM_V_GEN)db2dvi -o manual $(manual_srcfile) diff --git a/tools/tutorial-custom-cmd.py b/tools/tutorial-custom-cmd.py index c102968..eda1d8a 100755 --- a/tools/tutorial-custom-cmd.py +++ b/tools/tutorial-custom-cmd.py @@ -42,6 +42,7 @@ def html(): ] + xslt_params + [ '-o', output_html_dir + '/', '--xinclude', + '--nonet', xslt_stylesheet, input_xml_file, ] @@ -149,6 +150,7 @@ def fop(): ] + xslt_params + [ '-o', fo_file, '--xinclude', + '--nonet', xslt_stylesheet, input_xml_file, ] -- cgit v1.2.1