view m-toolbox/html_help/help/convertTOC.m @ 2:18e956c96a1b
database-connection-manager
Add LTPDADatabaseConnectionManager implementation. Matlab code
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Sun, 04 Dec 2011 21:23:09 +0100 (2011-12-04) |
parents |
f0afece42f48 |
children |
|
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('------------------')