@nstScriptLink(NAME, [TEXT])

Inserts a HTML link to a specific NST script.

The following parameters are recognized:

NAME

The name of the NST script you want the URL link of.

[TEXT]

The text which the user should see (it omitted, the name of the script is used).

Used to insert a link to the documentation for a particular NST script.

Example of using the macro:

@nstScriptLink("nsthdinstall","hard drive install") or
    @nstScriptLink("nstsetproxy")

Assuming the com.ccg.macros.at.All class is within your CLASSPATH and the config/html.at macros file has been generated (Hint: run make atmacros in the wui directory), a developer should be able to run the above example by copy/pasting from below:

[root@probe root]# java com.ccg.macros.at.All <<EOF
@include("config/html.at",,"d")
@nstScriptLink("nsthdinstall","hard drive install") or
    @nstScriptLink("nstsetproxy")
EOF

This macro is defined as:

@link("@nstScriptUrl("@param(0)")","@param(1)","@param(0)")