atomsAutoloadAdd — Add one or several modules to autoload
nbAdd = atomsAutoloadAdd(modules[,section])
mx1, mx2 or mx3 Matrix of strings:
| 1st Col. | Technical name | Mandatory | |
| 2nd Col. | Version | Optionnal | If this field is empty or is not present, the most recent version is used |
| 3rd Col. | Installed section | Optionnal | If this field is empty or is not present,
and module is installed in both "user" and
"allusers" sections, the section of autoload list is used.
|
This argument controls which autoload list is changed.
section is a single-string and its value should be :
"allusers": modules are added to the
"allusers" autoload list and all users of scilab are affected.
"user": modules are added to the
"user" autoload list and only the current user is affected.
If SCI/contrib is write accessible, "allusers" is the default value. Otherwise, the default value is "user".
An integer : the number of modules successfully added.
atomsRepositoryAdd('http://scene1.test.atoms.scilab.org');
atomsSetConfig("autoloadAddAfterInstall","False");
atomsInstall("toolbox_5","user");
atomsAutoloadList()
atomsAutoloadAdd("toolbox_5","user");
atomsAutoloadList()
atomsAutoloadDel(["toolbox_5"]);
atomsAutoloadAdd(["toolbox_5" "1.0"],"user");
atomsAutoloadList()
atomsAutoloadDel("toolbox_5");
atomsAutoloadAdd(["toolbox_5" "1.0" "user"],"user");
atomsAutoloadList()
atomsRemove("toolbox_5","user");
atomsSetConfig("autoloadAddAfterInstall","True");
atomsRepositoryDel('http://scene1.test.atoms.scilab.org');
atomsAutoloadList()