~ubuntu-branches/ubuntu/raring/scilab/raring-proposed

« back to all changes in this revision

Viewing changes to modules/windows_tools/help/en_US/istssession.xml

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-08-30 14:42:38 UTC
  • mfrom: (1.4.7)
  • Revision ID: package-import@ubuntu.com-20120830144238-c1y2og7dbm7m9nig
Tags: 5.4.0-beta-3-1~exp1
* New upstream release
* Update the scirenderer dep
* Get ride of libjhdf5-java dependency

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 *
12
12
 -->
13
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="istssession">
14
 
  <refnamediv>
15
 
    <refname>istssession</refname>
16
 
    <refpurpose>Determines if scilab is launched from a ms terminal service session (Windows only)</refpurpose>
17
 
  </refnamediv>
18
 
  <refsynopsisdiv>
19
 
    <title>Calling Sequence</title>
20
 
    <synopsis>istssession()</synopsis>
21
 
  </refsynopsisdiv>
22
 
  <refsection>
23
 
    <title>Description</title>
24
 
    <para>
25
 
      tf =istssession() returns boolean (%t) if scilab is launched from a ms 
26
 
      terminal service session and boolean (%f) otherwise.
27
 
    </para>
28
 
  </refsection>
29
 
  <refsection>
30
 
    <title>Examples</title>
31
 
    <programlisting role="example"><![CDATA[ 
 
14
    <refnamediv>
 
15
        <refname>istssession</refname>
 
16
        <refpurpose>Determines if scilab is launched from a ms terminal service session (Windows only)</refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>Calling Sequence</title>
 
20
        <synopsis>istssession()</synopsis>
 
21
    </refsynopsisdiv>
 
22
    <refsection>
 
23
        <title>Description</title>
 
24
        <para>
 
25
            tf =istssession() returns boolean (%t) if scilab is launched from a ms 
 
26
            terminal service session and boolean (%f) otherwise.
 
27
        </para>
 
28
    </refsection>
 
29
    <refsection>
 
30
        <title>Examples</title>
 
31
        <programlisting role="example"><![CDATA[ 
32
32
if getos() == 'Windows' then
33
33
  if istssession() then
34
34
    disp('Scilab from a ms terminal service session.');
37
37
  end
38
38
end
39
39
 ]]></programlisting>
40
 
  </refsection>
 
40
    </refsection>
41
41
</refentry>