# # Gramps - a GTK+/GNOME based genealogy program # # Copyright (C) 2000-2006 Donald N. Allingham # # 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 2 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, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # $Id$ "Export Report and Tools commandline parameters to DocBook XML" #------------------------------------------------------------------------- # # python modules # #------------------------------------------------------------------------- import os import tempfile from cgi import escape from gettext import gettext as _ #------------------------------------------------------------------------- # # GRAMPS modules # #------------------------------------------------------------------------- from PluginUtils import Tool, Report, cl_list, cli_tool_list, register_tool import Utils #------------------------------------------------------------------------- # # Constants # #------------------------------------------------------------------------- _tags = [ 'article', 'sect1', 'sect2', 'sect3' ] #------------------------------------------------------------------------- # # # #------------------------------------------------------------------------- class CmdRef(Tool.Tool): def __init__(self,db,person,options_class,name,callback=None,parent=None): Tool.Tool.__init__(self,db,person,options_class,name) # retrieve options include = self.options.handler.options_dict['include'] target = self.options.handler.options_dict['target'] if include: level = 1 else: level = 0 cli = int(parent == None) f = tempfile.NamedTemporaryFile() fname = f.name id_counter = 0 if not include: f.write('\n') f.write('\n') f.write('\n') # Top section and title f.write('<%s id="cmdplug-id%d">\n' % (_tags[level],id_counter) ) id_counter = id_counter + 1 f.write(' Detailed plugin option reference\n') # Reports f.write(' <%s id="cmdplug-reps">\n' % _tags[level+1]) f.write(' Reports\n') # Common report options item = cl_list[0] clr = Report.CommandLineReport(db,item[0],item[1],item[3],{},True) self.write_ref(f,clr,level+2,id_counter,True) id_counter = id_counter + 1 for item in cl_list: category = item[1] if category in (Report.CATEGORY_BOOK, Report.CATEGORY_CODE, Report.CATEGORY_WEB): self.write_ref(f,item,level+2,id_counter,category) else: self.write_ref(f,item,level+2,id_counter,None) id_counter = id_counter + 1 f.write(' \n' % _tags[level+1] ) # Tools f.write(' <%s id="cmdplug-tools">\n ' % _tags[level+1] ) f.write(' Tools\n') # Common tool options item = cli_tool_list[0] clr = Tool.CommandLineTool(db,item[0],item[1],item[3],{},True) self.write_ref(f,clr,level+2,id_counter,True) id_counter = id_counter + 1 for item in cli_tool_list: self.write_ref(f,item,level+2,id_counter) id_counter = id_counter + 1 f.write(' \n' % _tags[level+1] ) f.write(' \n') f.write('\n' %_tags[level]) f.flush() if include: os.spawnlp( os.P_WAIT, "cp", "cp", fname, target) else: os.spawnlp( os.P_WAIT, "yelp", "yelp", fname) f.close() def write_ref(self,f,item,level,id_counter,category=None): # Section and title f.write('<%s id="cmdplug-id%d">\n' % (_tags[level],id_counter) ) if category == True: title = 'Common Options' else: title = item[4] f.write(' %s\n' % title) # Show command-line name f.write(' \n') if category != True: f.write(' \n') f.write(' name:\n') f.write(' \n') f.write(' %s\n' % item[0]) f.write(' \n') f.write(' \n') # Instantiate options class if category == None: oclass = item[3]( item[0]) elif category == Report.CATEGORY_BOOK: import BookReport oclass = BookReport.BookOptions(item[0]) elif category == Report.CATEGORY_CODE: import GraphViz oclass = GraphViz.GraphVizOptions(item[0]) elif category == Report.CATEGORY_WEB: if item[0] == "webpage": import WebPage oclass = WebPage.WebReportOptions(item[0]) elif item[0] == "navwebpage": import NavWebPage oclass = NavWebPage.WebReportOptions(item[0]) elif category == True: # This is the common options case # so class is already instantiated oclass = item # Spit out all options for arg in oclass.options_help.keys(): f.write(' \n') f.write(' %s: %s\n' % (escape(arg), escape(oclass.options_help[arg][0]))) f.write(' \n') f.write(' %s\n' % escape(oclass.options_help[arg][1])) if len(oclass.options_help[arg])>2: if type(oclass.options_help[arg][2]) in [list,tuple]: if oclass.options_help[arg][3]: f.write(' \n') for val in oclass.options_help[arg][2]: f.write( " %s\n" % escape(val)) f.write(' \n') else: if oclass.options_help[arg][2]: f.write(' \n') for val in oclass.options_help[arg][2]: f.write( " %s" "\n" % escape(val)) f.write(' \n') else: f.write(' ' 'Value: %s\n' % escape(oclass.options_help[arg][2])) f.write(' \n') f.write(' \n') f.write(' \n') f.write('\n' % _tags[level]) #------------------------------------------------------------------------ # # # #------------------------------------------------------------------------ class CmdRefOptions(Tool.ToolOptions): """ Defines options and provides handling interface. """ def __init__(self,name,person_id=None): Tool.ToolOptions.__init__(self,name,person_id) def set_new_options(self): # Options specific for this report self.options_dict = { 'include' : 0, 'target' : '../doc/gramps-manual/C/cmdplug.xml', } self.options_help = { 'include' : ("=0/1","Whether to include into the manual", ["Do not include","Include"], True), 'target' : ("=str","Pathname to the target file", "Any valid pathname") } #------------------------------------------------------------------------ # # # #------------------------------------------------------------------------ if __debug__: register_tool( name = 'cmdref', category = Tool.TOOL_DEBUG, tool_class = CmdRef, options_class = CmdRefOptions, modes = Tool.MODE_GUI | Tool.MODE_CLI, translated_name = _("Generate Commandline Plugin Reference"), status = _("Stable"), author_name = "Martin Hawlisch", author_email = "martin@hawlisch.de", description=_("Generates a DocBook XML file that contains " "a parameter reference of Reports and Tools.") )