1 <?xml version="1.0" encoding="UTF-8"?>
3 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
4 * Copyright (C) DIGITEO - Pierre MARECHAL <pierre.marechal@scilab.org>
5 * Copyright (C) DIGITEO - 2012 - Allan CORNET
7 * This file must be used under the terms of the CeCILL.
8 * This source file is licensed as described in the file COPYING, which
9 * you should have received as part of this distribution. The terms
10 * are also available at
11 * http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
14 <refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:ns4="http://www.w3.org/1999/xhtml" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" xmlns:scilab="http://www.scilab.org" xml:id="atomsSetConfig" xml:lang="en">
16 <refname>atomsSetConfig</refname>
17 <refpurpose>Manage ATOMS system parameters</refpurpose>
20 <title>Calling Sequence</title>
22 result = atomsSetConfig(parameter, value)
26 <title>Arguments</title>
29 <term>parameter</term>
31 <para>single-string matrix</para>
37 <para>single-string matrix</para>
43 Number of changed parameters
51 <informaltable border="1">
59 <td>Use/Don't use proxies</td>
61 <emphasis role="strong">"True"</emphasis>/"False"
66 <td>the hostname (IP or DNS name)</td>
76 <td>Specify the username for authentication on a proxy server</td>
80 <td>proxyPassword</td>
81 <td>Specify the password for authentication on a proxy server</td>
88 <title>Network</title>
90 <informaltable border="1">
98 <td>If set to "True", the system only works with local repositories.
99 The offline mode permits the user to install modules from a local
100 repository or a local package (hard disk, USB keys, ...) even if the
101 network is unreachable. In version prior to 5.4.0, this tag was
105 "True"/<emphasis role="strong">"False"</emphasis>
112 <title>Autoload System</title>
114 <informaltable border="1">
122 <td>Enable/Disable autoload system</td>
124 <emphasis role="strong">"True"</emphasis>/"False"
128 <td>autoloadAddAfterInstall</td>
129 <td>Automatically add a module to the list of module to autoload at
133 <emphasis role="strong">"True"</emphasis>/"False"
140 <title>Miscellenous</title>
142 <informaltable border="1">
150 <td>Display or not extra-information</td>
152 "True"/<emphasis role="strong">"False"</emphasis>
156 <td>downloadTool</td>
157 <td>Set tool used to download</td>
158 <td>"curl", "wget" or "httpdownload" (Windows only)</td>
161 <td>downloadTimeout</td>
162 <td>Set timeout for download (seconds)</td>
163 <td>"5" by default</td>
167 <td>Set time between updates (days)</td>
168 <td>one month by default</td>
174 <title>Description</title>
176 <literal>atomsSetConfig</literal> returns the list of modules
177 registered to autoload
181 <title>Examples</title>
182 <programlisting role="example">// Display extra-information
183 atomsSetConfig("Verbose","True")
185 // Disable autoload system
186 atomsSetConfig("autoload","False")
189 <refsection role="see also">
190 <title>See Also</title>
191 <simplelist type="inline">
193 <link linkend="atomsGetConfig">atomsGetConfig</link>
198 <title>History</title>
201 <revnumber>5.4.0</revnumber>
202 <revdescription>offLine parameter renamed to offline</revdescription>