60 lines
1.8 KiB
Python
60 lines
1.8 KiB
Python
#! /usr/bin/env python
|
|
# Copyright (C) 2014 Bitergia
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import argparse
|
|
|
|
def get_arguments():
|
|
parser = argparse.ArgumentParser(description='Parse HTML generator arguments')
|
|
parser.add_argument('--template', dest='template_file', help='Template file name')
|
|
parser.add_argument('--content', dest='content_file', help='Content file name')
|
|
|
|
args = parser.parse_args()
|
|
#print args.accumulate(args.integers)
|
|
return args
|
|
|
|
|
|
def include_webstats(html_body):
|
|
"""
|
|
Replace string "REPLACE_WEBSTATS" in html_body with JS code from file
|
|
webstats.tmpl if present. If not, it just include and empty string
|
|
"""
|
|
text = "REPLACE_WEBSTATS"
|
|
try:
|
|
fd = open("webstats.tmpl","r")
|
|
jscode = fd.read()
|
|
fd.close()
|
|
except:
|
|
jscode = ""
|
|
html_body = html_body.replace(text, jscode)
|
|
return html_body
|
|
|
|
if __name__ == "__main__":
|
|
|
|
text = "REPLACE_HERE"
|
|
|
|
arg = get_arguments()
|
|
fd = open(arg.template_file, "r")
|
|
template = fd.read()
|
|
fd.close()
|
|
|
|
fd2 = open(arg.content_file, "r")
|
|
body = fd2.read()
|
|
fd2.close()
|
|
|
|
template = include_webstats(template)
|
|
template = template.replace(text, body)
|
|
print template
|