Mercurial > hg > ltpda
view m-toolbox/html_help/help/convertTOC.m @ 9:fbbfcd56e449 database-connection-manager
Remove dead 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('------------------')