15ba4de7e6
Actually test the gzip path, and correct a bytes/str issue under python3 (the file should be opened as text). Change-Id: Icc5362d3d020761e07e60fb8ee296c98a8fe3ac4
140 lines
3.4 KiB
Python
140 lines
3.4 KiB
Python
#!/usr/bin/env python3
|
|
# Copyright 2018 Red Hat, Inc
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import cgi
|
|
import argparse
|
|
import gzip
|
|
import sys
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
HEADER = '''<html>
|
|
<head>
|
|
<style>
|
|
a {color: #000; text-decoration: none}
|
|
a:hover {text-decoration: underline}
|
|
#selector, #selector a {color: #888}
|
|
#selector a:hover {color: #c00}
|
|
.highlight {
|
|
background-color: rgb(255, 255, 204);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<pre>
|
|
'''
|
|
|
|
FOOTER = '''</pre>
|
|
</body>
|
|
<script>
|
|
var old_highlight;
|
|
|
|
function remove_highlight() {
|
|
if (old_highlight) {
|
|
items = document.getElementsByClassName(old_highlight);
|
|
for (var i = 0; i < items.length; i++) {
|
|
items[i].className = items[i].className.replace('highlight','');
|
|
}
|
|
}
|
|
}
|
|
|
|
function update_selector(highlight) {
|
|
var selector = document.getElementById('selector');
|
|
if (selector) {
|
|
var links = selector.getElementsByTagName('a');
|
|
for (var i = 0; i < links.length; i++) {
|
|
links[i].hash = "#" + highlight;
|
|
}
|
|
}
|
|
}
|
|
|
|
function highlight_by_hash(event) {
|
|
var highlight = window.location.hash.substr(1);
|
|
// handle changes to highlighting separate from reload
|
|
if (event) {
|
|
highlight = event.target.hash.substr(1);
|
|
}
|
|
remove_highlight();
|
|
if (highlight) {
|
|
elements = document.getElementsByClassName(highlight);
|
|
for (var i = 0; i < elements.length; i++) {
|
|
elements[i].className += " highlight";
|
|
}
|
|
update_selector(highlight);
|
|
old_highlight = highlight;
|
|
}
|
|
}
|
|
document.onclick = highlight_by_hash;
|
|
highlight_by_hash();
|
|
</script>
|
|
</html>
|
|
'''
|
|
|
|
|
|
def run(inpath, outpath):
|
|
if inpath.endswith('.gz'):
|
|
infile = gzip.open(inpath, 'rt')
|
|
outfile = gzip.open(outpath, 'wt')
|
|
else:
|
|
infile = open(inpath, 'r')
|
|
outfile = open(outpath, 'w')
|
|
|
|
outfile.write(HEADER)
|
|
|
|
for i, line in enumerate(infile):
|
|
i = i + 1
|
|
line = cgi.escape(line.rstrip('\n'))
|
|
outfile.write('<a name="l%s" class="l%s" href="#l%s">' % (i, i, i))
|
|
outfile.write(line.rstrip('\n'))
|
|
outfile.write("</a>\n")
|
|
|
|
outfile.write(FOOTER)
|
|
|
|
|
|
def ansible_main():
|
|
module = AnsibleModule(
|
|
argument_spec=dict(
|
|
input=dict(required=True, type='path'),
|
|
output=dict(required=True, type='path'),
|
|
)
|
|
)
|
|
|
|
p = module.params
|
|
run(p.get('input'), p.get('output'))
|
|
|
|
module.exit_json(changed=True)
|
|
|
|
|
|
def cli_main():
|
|
parser = argparse.ArgumentParser(
|
|
description="HTMLify text files"
|
|
)
|
|
parser.add_argument('input',
|
|
help='Input path')
|
|
parser.add_argument('output',
|
|
help='Output path')
|
|
|
|
args = parser.parse_args()
|
|
|
|
run(args.input, args.output)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
if sys.stdin.isatty():
|
|
cli_main()
|
|
else:
|
|
ansible_main()
|