[PATCH v2 2/9] scripts/meson-html-gen.py: Don't rereformat output files

Peter Krempa pkrempa at redhat.com
Tue Oct 13 16:18:06 UTC 2020


The output HTML files (especially those generated from rST files) don't
look good even after reformatting. Skip the extra step and accept that
no matter what we do HTMLs will not look great.

This additionally makes it way simpler to remove meson-html-gen.py in
the future (thus I've neglected to remove passing of xmllint).

Signed-off-by: Peter Krempa <pkrempa at redhat.com>
---
 scripts/meson-html-gen.py | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/scripts/meson-html-gen.py b/scripts/meson-html-gen.py
index 2731d734a7..dcc11f37cf 100755
--- a/scripts/meson-html-gen.py
+++ b/scripts/meson-html-gen.py
@@ -14,7 +14,7 @@ parser.add_argument("htmlfile", type=str, help="path to generated HTML file")
 parser.add_argument("pagesrc", type=str, default="", nargs='?', help="(optional) path to source file used for edit this page")
 args = parser.parse_args()

-html_tmp = subprocess.run(
+html = subprocess.run(
     [
         args.xsltproc,
         '--stringparam', 'pagesrc', args.pagesrc,
@@ -26,12 +26,5 @@ html_tmp = subprocess.run(
     stderr=subprocess.PIPE,
 )

-html = subprocess.run(
-    [args.xmllint, '--nonet', '--format', '-'],
-    input=html_tmp.stdout,
-    stdout=subprocess.PIPE,
-    stderr=subprocess.PIPE,
-)
-
 with open(args.htmlfile, 'wb') as outfile:
     outfile.write(html.stdout)
-- 
2.26.2




More information about the libvir-list mailing list