annotate help_html/source/publishHelp.m @ 38:c7d11a428a0d
tip master
Merge branch 'develop'
* develop:
Updated copyright year.
author |
Christopher Hummersone <c.hummersone@surrey.ac.uk> |
date |
Tue, 16 May 2017 12:15:34 +0100 |
parents |
bdd77fe783e4 |
children |
|
rev |
line source |
c@0
|
1 function publishHelp
|
c@0
|
2
|
c@0
|
3 outdir = [MASSEF.dir filesep 'help_html' filesep];
|
c@0
|
4
|
c@0
|
5 options = struct(...
|
c@0
|
6 'outputDir',outdir, ...
|
c@0
|
7 'evalCode',false ...
|
c@0
|
8 );
|
c@0
|
9
|
c@0
|
10 publish('help_Index.m',options);
|
c@0
|
11 publish('help_MASSEF.m',options);
|
c@0
|
12 publish('help_MASSEF_evaluate.m',options);
|
c@0
|
13 publish('help_MASSEF_execute.m',options);
|
c@15
|
14 publish('help_MASSEF_doc.m',options);
|
c@0
|
15 publish('help_MASSEF_install.m',options);
|
c@0
|
16 publish('help_MASSEF_save.m',options);
|
c@0
|
17 publish('help_MASSEF_start.m',options);
|
c@0
|
18 publish('help_MASSEFresults.m',options);
|
c@0
|
19 publish('help_MASSEFresults_algorithmInfo.m',options);
|
c@0
|
20 publish('help_MASSEFresults_filter.m',options);
|
c@0
|
21 publish('help_MASSEFresults_input.m',options);
|
c@0
|
22 publish('help_MASSEFresults_merge.m',options);
|
c@0
|
23 publish('help_MASSEFresults_mixtureInfo.m',options);
|
c@0
|
24 publish('help_Separators.m',options);
|
c@0
|
25 publish('help_Example.m',options);
|
c@0
|
26
|
c@0
|
27 builddocsearchdb(outdir)
|