#!/usr/bin/python
# $Id: htmlhelp-qthelp.py 86680 2020-10-22 23:24:03Z vboxsync $
## @file
# A python 2.x script to create a .qhp file outof a given htmlhelp
# folder. Lots of things about the said folder is assumed. Please
# read the code and inlined comments.
import sys, getopt
import os.path
import re
import codecs
import logging
__copyright__ = \
"""
Copyright (C) 2006-2020 Oracle Corporation
This file is part of VirtualBox Open Source Edition (OSE), as
available from http://www.virtualbox.org. This file is free software;
you can redistribute it and/or modify it under the terms of the GNU
General Public License (GPL) as published by the Free Software
Foundation, in version 2 as it comes in the "COPYING" file of the
VirtualBox OSE distribution. VirtualBox OSE is distributed in the
hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
"""
# number of opened and not yet closed section tags of toc section
open_section_tags = 0
# find the png files under /images folder and create a part of the
# qhelp project file with tags
def create_image_list(folder):
image_folder_name = 'images'
image_files_list = []
# Look for 'images' sub folder
subdirs = [x[0] for x in os.walk(folder)]
full_folder_path = os.path.join(folder, image_folder_name)
if full_folder_path not in subdirs:
logging.error('Image subfolder "%s" is not found under "%s".', image_folder_name, folder)
return image_files_list;
png_files = []
for f in os.listdir(full_folder_path):
png_files.append(image_folder_name + '/' + f)
image_files_list.append('images/' + f + '')
return image_files_list
# open htmlhelp.hhp files and read the list of html files from there
def create_html_list(folder):
file_name = 'htmlhelp.hhp'
html_files_list = []
if not file_name in os.listdir(folder):
logging.error('Could not find the file "%s" in "%s"', file_name, folder)
return html_files_list
full_path = os.path.join(folder, 'htmlhelp.hhp')
file = open(full_path, "r")
lines = file.readlines()
file.close()
# first search for the [FILES] marker then collect .html lines
marker_found = 0
for line in lines:
if '[FILES]' in line:
marker_found = 1
continue
if marker_found == 0:
continue
if '.html' in line:
html_files_list.append('' + line.strip('\n') + '')
return html_files_list
def create_files_section(folder):
files_section_lines = ['']
files_section_lines += create_image_list(folder)
files_section_lines += create_html_list(folder)
files_section_lines.append('')
return files_section_lines
def parse_param_tag(line):
label = 'value="'
start = line.find(label);
if start == -1:
return ''
start += len(label)
end = line.find('"', start)
if end == -1:
return '';
return line[start:end]
# look at next two lines. they are supposed to look like the following
#
#
# parse out value fields and return
# title="Oracle VM VirtualBox" ref="index.html
def parse_object_tag(lines, index):
result=''
if index + 2 > len(lines):
logging.warning('Not enough tags after this one "%s"',lines[index])
return result
if not re.match(r'^\s*'
else:
logging.warning('Title or ref part is empty for the tag "%s"', lines[index])
return result
# parse any string other than staring with '
elif re.match(r'^\s*'
return ''
def parse_line(lines, index):
result=''
# if the line starts with