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

« back to all changes in this revision

Viewing changes to modules/history_manager/help/ja_JP/historymanager.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:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
 
 
3
<!--
 
4
 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
 
5
 * Copyright (C) 2006-2008 - INRIA - Allan CORNET
 
6
 *
 
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-en.txt
 
12
 *
 
13
 -->
 
14
 
 
15
<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="ja" xml:id="historymanager">
 
16
    
 
17
    <refnamediv>
 
18
        
 
19
        <refname>historymanager</refname>
 
20
        
 
21
        <refpurpose>履歴マネージャを有効/無効にする</refpurpose>
 
22
        
 
23
    </refnamediv>
 
24
    
 
25
    <refsynopsisdiv>
 
26
        
 
27
        <title>呼び出し手順</title>
 
28
        
 
29
        <synopsis>state1=historymanager(state2)
 
30
            
 
31
            state1=historymanager()
 
32
            
 
33
        </synopsis>
 
34
        
 
35
    </refsynopsisdiv>
 
36
    
 
37
    <refsection>
 
38
        
 
39
        <title>引数</title>
 
40
        
 
41
        <variablelist>
 
42
            
 
43
            <varlistentry>
 
44
                
 
45
                <term>state1</term>
 
46
                
 
47
                <listitem>
 
48
                    
 
49
                    <para>履歴マネージャの状態('on' または 'off')を返す</para>
 
50
                    
 
51
                </listitem>
 
52
                
 
53
            </varlistentry>
 
54
            
 
55
            <varlistentry>
 
56
                
 
57
                <term>state2</term>
 
58
                
 
59
                <listitem>
 
60
                    
 
61
                    <para>履歴マネージャの状態を'on' または 'off'に設定</para>
 
62
                    
 
63
                </listitem>
 
64
                
 
65
            </varlistentry>
 
66
            
 
67
        </variablelist>
 
68
        
 
69
    </refsection>
 
70
    
 
71
    <refsection>
 
72
        
 
73
        <title>説明</title>
 
74
        
 
75
        <para>履歴マネージャを有効/無効にします.</para>
 
76
        
 
77
        <para>'API'モードでは, 履歴マネージャは無効になります.</para>
 
78
        
 
79
    </refsection>
 
80
    
 
81
    <refsection>
 
82
        
 
83
        <title>例</title>
 
84
        
 
85
        <programlisting role="example"><![CDATA[ 
 
86
displayhistory()
 
87
backupstate=historymanager()
 
88
historymanager('off')
 
89
displayhistory()
 
90
historymanager('on')
 
91
loadhistory()
 
92
displayhistory()
 
93
historymanager(backupstate)
 
94
 ]]></programlisting>
 
95
        
 
96
    </refsection>
 
97
    
 
98
    <refsection role="see also">
 
99
        
 
100
        <title>参照</title>
 
101
        
 
102
        <simplelist type="inline">
 
103
            
 
104
            <member>
 
105
                
 
106
                <link linkend="getscilabmode">getscilabmode</link>
 
107
                
 
108
            </member>
 
109
            
 
110
            <member>
 
111
                
 
112
                <link linkend="call_scilab">call_scilab</link>
 
113
                
 
114
            </member>
 
115
            
 
116
        </simplelist>
 
117
        
 
118
    </refsection>
 
119
    
 
120
</refentry>
 
121