This repository has been archived by the owner on Apr 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.xml
executable file
·53 lines (51 loc) · 2.53 KB
/
info.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<productinfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="optional">
<?xml-stylesheet type="text/xsl"href="optional"?>
<!-- info.xml file for the DML toolbox -->
<!-- Version 1.0 -->
<!-- Copyright (date) (owner).-->
<!-- Supply the following six elements in the order specified -->
<!-- (Required) element; matlabrelease content is not currently used -->
<matlabrelease>2011b</matlabrelease>
<!-- (Required) The name element appears in the Contents pane -->
<name>Donders Machine Learning</name>
<!-- (Required) The type elementidentifies your package; pick one: -->
<!-- matlab, toolbox, simulink, blockset, links_targets -->
<type>toolbox</type>
<!-- (Optional) icon file to display in the Start button -->
<icon>./html/bookicon.gif</icon>
<!-- (Required if you supply help) relative path to help (HTML) folder -->
<help_location>./html</help_location>
<!-- (Required if you supply help) icon used in the Help browser TOC -->
<!-- <help_contents_icon>./html/bookicon.gif</help_contents_icon>-->
<!-- - - - - - - - - - - - - Start menu - - - - - - - - - - - - - - - -->
<!-- Optional list of entries to display on Start Menu -->
<!-- Callback items are function calls or commands for toolbox -->
<!-- Refresh the Start button to see your entries -->
<!-- Remove this list if you do not want a Start button entry -->
<list>
<listitem>
<!-- The label provides the text for this menu item -->
<label>DML Documentation</label>
<!-- This callback is a command to open your documentation -->
<callback>web ./html/dml_product_page.html -helpbrowser</callback>
<!-- Menu item icon (a toolbox icon from the help browser ) -->
<icon>./html/bookicon.gif</icon>
</listitem>
<listitem>
<!-- A menu item label for a opening a demo -->
<label>DML Demo</label>
<!-- A command to open a demo if any -->
<callback>mytoolboxdemo</callback>
<!-- The icon for this menu item -->
<icon>HelpIcon.DEMOS</icon>
</listitem>
<listitem>
<!-- Include call to open your Web site, if any -->
<label>DML Web Site</label>
<callback>web http://www.distrep.org -browser;</callback>
<icon>./html/webicon.gif</icon>
</listitem>
<!-- Add listitems for other features of your toolbox... -->
</list>
</productinfo>