view m-toolbox/html_help/help/convertTOC.m @ 29:54f14716c721 database-connection-manager

Update Java code
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 16:20:06 +0100
parents f0afece42f48
children
line wrap: on
line source

function convertTOC()

% This builds an html version of the TOC.XML file for use in on-line
% viewing.
% 
% M Hewitson 24-07-07
% 
% $Id: convertTOC.m,v 1.1 2007/07/24 08:15:06 hewitson Exp $
% 

disp('------------------')

outfile = 'helptoc.html';
xmlfile = 'helptoc.xml';

% Read in XML
xdoc = xmlread(xmlfile);

ain = xdoc.getElementsByTagName('toc');
a = ain.item(0);

children = a.getChildNodes;

% Write header
runcmd('cat header.html >', outfile);

% Write content
fd = fopen(outfile, 'a+');

read_item(a, fd);

fclose(fd)


% Write tail
runcmd('cat tail.html >>', outfile);


disp('------------------')