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

« back to all changes in this revision

Viewing changes to modules/xml/help/ja_JP/xmlGetNsByPrefix.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="xmlGetNsByPrefix" xml:lang="ja">
 
14
    <refnamediv>
 
15
        <refname>xmlGetNsByPrefix</refname>
 
16
        <refpurpose>接頭辞により名前空間を取得する</refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>呼び出し手順</title>
 
20
        <synopsis>
 
21
            ns = xmlGetNsByPrefix(elem, prefix)
 
22
        </synopsis>
 
23
    </refsynopsisdiv>
 
24
    <refsection>
 
25
        <title>引数</title>
 
26
        <variablelist>
 
27
            <varlistentry>
 
28
                <term>elem</term>
 
29
                <listitem>
 
30
                    <para>XMLElem型のmlist</para>
 
31
                </listitem>
 
32
            </varlistentry>
 
33
            <varlistentry>
 
34
                <term>prefix</term>
 
35
                <listitem>
 
36
                    <para>接頭辞を指定する文字列</para>
 
37
                </listitem>
 
38
            </varlistentry>
 
39
            <varlistentry>
 
40
                <term>ns</term>
 
41
                <listitem>
 
42
                    <para>XMLNs型のmlist</para>
 
43
                </listitem>
 
44
            </varlistentry>
 
45
        </variablelist>
 
46
    </refsection>
 
47
    <refsection>
 
48
        <title>説明</title>
 
49
        <para>
 
50
            要素またはそのアクセサ上で指定した接頭辞を有する名前空間を探します.
 
51
        </para>
 
52
    </refsection>
 
53
    <refsection>
 
54
        <title>例</title>
 
55
        <programlisting role="example"><![CDATA[
 
56
    doc = xmlReadStr("<root><a xmlns:scilab=""http://www.scilab.org""><b>Hello </b><scilab:c>World</scilab:c></a></root>")
 
57
    c = doc.root.children(1).children(2);
 
58
    xmlGetNsByPrefix(c, "scilab")
 
59
    
 
60
    xmlDelete(doc);
 
61
    ]]></programlisting>
 
62
    </refsection>
 
63
    <refsection role="see also">
 
64
        <title>参照</title>
 
65
        <simplelist type="inline">
 
66
            <member>
 
67
                <link linkend="xmlNs">xmlNs</link>
 
68
            </member>
 
69
            <member>
 
70
                <link linkend="xmlGetNsByHref">xmlGetNsByHref</link>
 
71
            </member>
 
72
        </simplelist>
 
73
    </refsection>
 
74
    <refsection>
 
75
        <title>履歴</title>
 
76
        <revhistory>
 
77
            <revision>
 
78
                <revnumber>5.4.0</revnumber>
 
79
                <revremark>XMLモジュールが導入されました.</revremark>
 
80
            </revision>
 
81
        </revhistory>
 
82
    </refsection>
 
83
</refentry>