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

« back to all changes in this revision

Viewing changes to modules/xml/help/ja_JP/xmlDelete.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
* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
 
4
* Copyright (C) 2012 - Scilab Enterprises - Calixte DENIZET
 
5
*
 
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
 
11
*
 
12
-->
 
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:ns5="http://www.w3.org/1999/xhtml" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" xml:id="xmlDelete" xml:lang="ja">
 
14
    <refnamediv>
 
15
        <refname>xmlDelete</refname>
 
16
        <refpurpose>XML文書を削除</refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>呼び出し手順</title>
 
20
        <synopsis>
 
21
            xmlDelete(obj1 [, obj2, [...]])
 
22
            xmlDelete("all")
 
23
        </synopsis>
 
24
    </refsynopsisdiv>
 
25
    <refsection>
 
26
        <title>引数</title>
 
27
        <variablelist>
 
28
            <varlistentry>
 
29
                <term>obji</term>
 
30
                <listitem>
 
31
                    <para>XMLDoc または XMLValid型のmlist, 削除する文書</para>
 
32
                </listitem>
 
33
            </varlistentry>
 
34
        </variablelist>
 
35
    </refsection>
 
36
    <refsection>
 
37
        <title>説明</title>
 
38
        <para>
 
39
            文書または検証ファイルを削除します(この処理により,オブジェクトに関連する
 
40
            全てのメモリを開放します).
 
41
        </para>
 
42
        <para>
 
43
            xmlDelete("all") 構文が使用された場合,オープンされている文書が
 
44
            全て削除されます.
 
45
        </para>
 
46
    </refsection>
 
47
    <refsection>
 
48
        <title>例</title>
 
49
        <programlisting role="example"><![CDATA[
 
50
    doc = xmlRead("http://www.w3.org/TR/2009/REC-xml-names-20091208/xml-names-10-3e.xml");
 
51
    root = doc.root
 
52
    xmlDelete(doc);
 
53
 
 
54
    // ルートは有効ではなくなりました.. したがって,ルートにアクセスすると
 
55
    // エラーを発生します.
 
56
    // disp(root) => これは失敗します
 
57
    ]]></programlisting>
 
58
    </refsection>
 
59
    <refsection role="see also">
 
60
        <title>参照</title>
 
61
        <simplelist type="inline">
 
62
            <member>
 
63
                <link linkend="xmlGetOpenDocs">xmlGetOpenDocs</link>
 
64
            </member>
 
65
        </simplelist>
 
66
    </refsection>
 
67
    <refsection>
 
68
        <title>履歴</title>
 
69
        <revhistory>
 
70
            <revision>
 
71
                <revnumber>5.4.0</revnumber>
 
72
                <revremark>XMLモジュールが導入されました.</revremark>
 
73
            </revision>
 
74
        </revhistory>
 
75
    </refsection>
 
76
</refentry>