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>
6 * This file must be used under the terms of the CeCILL.
7 * This source file is licensed as described in the file COPYING, which
8 * you should have received as part of this distribution. The terms
9 * are also available at
10 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
13 <refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" xml:lang="en" xml:id="atomsGetConfig">
15 <refname>atomsGetConfig</refname>
16 <refpurpose>Get ATOMS system parameters</refpurpose>
18 <!-- ===================================================================== -->
19 <!-- Calling Sequence -->
20 <!-- ===================================================================== -->
22 <title>Calling Sequence</title>
24 result = atomsGetConfig(parameter)
27 <!-- ===================================================================== -->
29 <!-- ===================================================================== -->
31 <title>Arguments</title>
34 <term>parameter</term>
44 Value of the parameter
52 <informaltable border="1">
60 <td>Use/Don't use proxies</td>
62 <emphasis role="strong">True</emphasis>/False
67 <td>the hostname (IP or DNS name)</td>
77 <td>Specify the username for authentication on a proxy server</td>
81 <td>proxyPassword</td>
82 <td>Specify the password for authentication on a proxy server</td>
89 <title>Network</title>
91 <informaltable border="1">
100 If set to "True", the system only works with local repositories.
101 The offline mode permits the user to install modules from a local
102 repository or a local package (hard disk, USB keys, ...) even if
103 the network is unreachable.
104 In version prior to 5.4.0, this tag was called offLine.
107 True/<emphasis role="strong">False</emphasis>
114 <title>Autoload System</title>
116 <informaltable border="1">
124 <td>Enable/Disable autoload system</td>
126 <emphasis role="strong">True</emphasis>/False
130 <td>autoloadAddAfterInstall</td>
131 <td>Automatically add a module to the list of module to autoload at Scilab start</td>
133 <emphasis role="strong">True</emphasis>/False
140 <title>Miscellenous</title>
142 <informaltable border="1">
150 <td>Display or not extra-informations</td>
152 True/<emphasis role="strong">False</emphasis>
158 <!-- ===================================================================== -->
160 <!-- ===================================================================== -->
162 <title>Description</title>
164 <literal>atomsGetConfig</literal> returns the value of the parameter given
167 <!-- ===================================================================== -->
169 <!-- ===================================================================== -->
171 <title>Examples</title>
172 <programlisting role="example"><![CDATA[
173 // Get value of verbose parameter
174 atomsGetConfig('Verbose')
178 <title>History</title>
181 <revnumber>5.4.0</revnumber>
182 <revdescription>offLine parameter renamed to offline</revdescription>