summaryrefslogtreecommitdiff
path: root/scripts/meson-html-gen.py
blob: dcc11f37cfdacd904399947841a6961fa20e7728 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python3

import argparse
import subprocess

parser = argparse.ArgumentParser()
parser.add_argument("xsltproc", type=str, help="path to xsltproc bin")
parser.add_argument("xmllint", type=str, help="path to xmllint bin")
parser.add_argument("builddir", type=str, help="build root dir path")
parser.add_argument("timestamp", type=str, help="docs timestamp")
parser.add_argument("style", type=str, help="XSL stile file")
parser.add_argument("infile", type=str, help="path to source HTML file")
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 = subprocess.run(
    [
        args.xsltproc,
        '--stringparam', 'pagesrc', args.pagesrc,
        '--stringparam', 'builddir', args.builddir,
        '--stringparam', 'timestamp', args.timestamp,
        '--nonet', args.style, args.infile,
    ],
    stdout=subprocess.PIPE,
    stderr=subprocess.PIPE,
)

with open(args.htmlfile, 'wb') as outfile:
    outfile.write(html.stdout)