#!/usr/bin/env python #*************************************************************************** #* * #* Copyright (c) 2009 Yorik van Havre * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * #* as published by the Free Software Foundation; either version 2 of * #* the License, or (at your option) any later version. * #* for detail see the LICENCE text file. * #* * #* 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 Library General Public License for more details. * #* * #* You should have received a copy of the GNU Library General Public * #* License along with this program; if not, write to the Free Software * #* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * #* USA * #* * #*************************************************************************** from __future__ import print_function __title__="wiki2qhelp" __author__ = "Yorik van Havre " __url__ = "http://www.freecadweb.org" """ This script builds qhrlp files from a local copy of the wiki """ import sys, os, re, tempfile, getopt, shutil from urllib2 import urlopen, HTTPError # CONFIGURATION ################################################# FOLDER = "./localwiki" INDEX = "Online_Help_Toc" # the start page from where to crawl the wiki VERBOSE = True # to display what's going on. Otherwise, runs totally silent. QHELPCOMPILER = 'qhelpgenerator -qt=qt5' QCOLLECTIOMGENERATOR = 'qcollectiongenerator -qt=qt5' RELEASE = '0.17' # END CONFIGURATION ############################################## fcount = dcount = 0 def crawl(): "downloads an entire wiki site" # tests ############################################### if os.system(QHELPCOMPILER +' -v'): print("Error: QAssistant not fully installed, exiting.") return 1 if os.system(QCOLLECTIOMGENERATOR +' -v'): print("Error: QAssistant not fully installed, exiting.") return 1 # run ######################################################## qhp = buildtoc() qhcp = createCollProjectFile() shutil.copy("freecad-icon-64.png","localwiki/freecad-icon-64.png") if generate(qhcp) or compile(qhp): print("Error at compiling") return 1 if VERBOSE: print("All done!") if "--yes-copy" in sys.argv: i="yes" elif "--no-copy" in sys.argv: i="no" else: try: i=raw_input("Copy the files to their correct location in the source tree? y/n (default=no) ") except: i="no" if i.upper() in ["Y","YES"]: shutil.copy("localwiki/freecad.qch","../../Doc/freecad.qch") shutil.copy("localwiki/freecad.qhc","../../Doc/freecad.qhc") else: print('Files are in localwiki. Test with "assistant -collectionFile localwiki/freecad.qhc"') return 0 def compile(qhpfile): "compiles the whole html doc with qassistant" qchfile = FOLDER + os.sep + "freecad.qch" if not os.system(QHELPCOMPILER + ' '+qhpfile+' -o '+qchfile): if VERBOSE: print("Successfully created",qchfile) return 0 else: os.system('cat -v ' + qhpfile) raise "Error during generation of freecad.qch" def generate(qhcpfile): "generates qassistant-specific settings like icon, title, ..." txt="""
FreeCAD """+RELEASE+""" help files
http://www.freecadweb.org
""" about=open(FOLDER + os.sep + "about.txt","w") about.write(txt) about.close() qhcfile = FOLDER + os.sep + "freecad.qhc" if not os.system(QCOLLECTIOMGENERATOR+' '+qhcpfile+' -o '+qhcfile): if VERBOSE: print("Successfully created ",qhcfile) return 0 else: os.system('cat -v ' + qhcpfile) raise "Error during generation of freecad.qhc" def createCollProjectFile(): qprojectfile = ''' FreeCAD User Manual freecad-icon-64.png freecad/freecad qthelp://org.freecad.usermanual/doc/Online_Help_Startpage.html About FreeCAD about.txt freecad-icon-64.png true true true freecad.qhp freecad.qch freecad.qch ''' if VERBOSE: print("Building project file...") qfilename = FOLDER + os.sep + "freecad.qhcp" f = open(qfilename,'w') f.write(qprojectfile) f.close() if VERBOSE: print("Done writing qhcp file",qfilename) return qfilename def buildtoc(): ''' gets the table of contents page and parses its contents into a clean lists structure ''' qhelpfile = ''' org.freecad.usermanual doc ''' def getname(line): line = re.compile('
  • ').sub('',line) line = re.compile('
  • ').sub('',line) title = line.strip() link = '' if "]*>(.*?)',line)[0].strip() link = re.findall('href="(.*?)"',line)[0].strip() if not link: link = 'default.html' return title,link if VERBOSE: print("Building table of contents...") f = open(FOLDER+os.sep+INDEX+'.html') html = '' for line in f: html += line f.close() html = html.replace("\n"," ") html = html.replace("> <","><") html = re.findall("",html)[0] items = re.findall(']*>.*?|',html) inserttoc = '
    \n' insertkeywords = '' for item in items: if not ("
      " in item): if ("
    " in item): inserttoc += '
    \n' else: link = '' title,link=getname(item) if link: link='" ref="'+link insertkeywords += ('\n') inserttoc += ('
    \n') else: subitems = item.split("
      ") for i in range(len(subitems)): link = '' title,link=getname(subitems[i]) if link: link='" ref="'+link insertkeywords += ('\n') trail = '' if i == len(subitems)-1: trail = '' inserttoc += ('
      '+trail+'\n') inserttoc += '
      \n' insertfiles = "\n" for fil in os.listdir(FOLDER): insertfiles += (""+fil+"\n") insertfiles += "\n" qhelpfile = re.compile('').sub(insertkeywords,qhelpfile) qhelpfile = re.compile('').sub(inserttoc,qhelpfile) qhelpfile = re.compile('').sub(insertfiles,qhelpfile) qfilename = FOLDER + os.sep + "freecad.qhp" f = open(qfilename,'wb') f.write(qhelpfile) f.close() if VERBOSE: print("Done writing qhp file",qfilename) return qfilename if __name__ == "__main__": exit(crawl())