~ubuntu-branches/ubuntu/karmic/gnash/karmic

« back to all changes in this revision

Viewing changes to doc/C/BackLash/error.xml

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2008-10-13 14:29:49 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20081013142949-f6qdvnu4mn05ltdc
Tags: 0.8.4~~bzr9980-0ubuntu1
* new upstream release 0.8.4 (LP: #240325)
* ship new lib usr/lib/gnash/libmozsdk.so.* in mozilla-plugin-gnash
  - update debian/mozilla-plugin-gnash.install
* ship new lib usr/lib/gnash/libgnashnet.so.* in gnash-common
  - update debian/gnash-common.install
* add basic debian/build_head script to build latest CVS head packages.
  - add debian/build_head
* new sound architecture requires build depend on libsdl1.2-dev
  - update debian/control
* head build script now has been completely migrated to bzr (upstream +
  ubuntu)
  - update debian/build_head
* disable kde gui until klash/qt4 has been fixed; keep kde packages as empty
  packages for now.
  - update debian/rules
  - debian/klash.install
  - debian/klash.links
  - debian/klash.manpages
  - debian/konqueror-plugin-gnash.install
* drop libkonq5-dev build dependency accordingly
  - update debian/control
* don't install headers manually anymore. gnash doesnt provide a -dev
  package after all
  - update debian/rules
* update libs installed in gnash-common; libgnashserver-*.so is not available
  anymore (removed); in turn we add the new libgnashcore-*.so
  - update debian/gnash-common.install
* use -Os for optimization and properly pass CXXFLAGS=$(CFLAGS) to configure
  - update debian/rules
* touch firefox .autoreg in postinst of mozilla plugin
  - update debian/mozilla-plugin-gnash.postinst
* link gnash in ubufox plugins directory for the plugin alternative switcher
  - add debian/mozilla-plugin-gnash.links
* suggest ubufox accordingly
  - update debian/control
* add new required build-depends on libgif-dev
  - update debian/control
* add Xb-Npp-Description and Xb-Npp-File as new plugin database meta data
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<sect4 id="aserror">
 
2
  <title>Error ActionScript Class</title>
 
3
 
 
4
  <para>
 
5
    This class implements an Error object.
 
6
  </para>
 
7
 
 
8
  <sect5 id="errormethods">
 
9
    <title>The Methods of the  Class</title>
 
10
    <para>
 
11
      <variablelist>
 
12
 
 
13
        <varlistentry>
 
14
          <term>toString()</term>
 
15
          <listitem>
 
16
            <para>
 
17
              Returns the error object as a string
 
18
            </para>
 
19
          </listitem>
 
20
        </varlistentry>
 
21
      </variablelist>
 
22
    </para>
 
23
  </sect5>
 
24
  <sect5 id="errorprops">
 
25
    <title>The Properties of the Error Class</title>
 
26
    
 
27
    <para>
 
28
      <variablelist>
 
29
 
 
30
        <varlistentry>
 
31
          <term>message</term>
 
32
          <listitem>
 
33
            <para>
 
34
              Returns an error message as a string.
 
35
            </para>
 
36
          </listitem>
 
37
        </varlistentry>
 
38
 
 
39
        <varlistentry>
 
40
          <term>name</term>
 
41
          <listitem>
 
42
            <para>
 
43
              Returns the name of the error object.
 
44
            </para>
 
45
          </listitem>
 
46
        </varlistentry>
 
47
 
 
48
      </variablelist>
 
49
    </para>
 
50
  </sect5>
 
51
 
 
52
  <sect5 id="errorconf">
 
53
    <title>Error Class Conformance</title>
 
54
    
 
55
    <para>
 
56
      <informaltable frame="all">
 
57
        <?dbhtml table-width="75%" ?>
 
58
        <tgroup cols="2">
 
59
          <thead>
 
60
            <row>
 
61
              <entry valign="top">
 
62
                <para>Class Name</para>
 
63
              </entry>
 
64
              <entry valign="top">
 
65
                <para>Conformance</para>
 
66
              </entry>
 
67
            </row>
 
68
          </thead>
 
69
          <tbody>
 
70
            <row>
 
71
              <entry valign="top" align="left">
 
72
                <para>toString()</para>
 
73
              </entry>
 
74
              <entry valign="top" align="center">
 
75
                <para>
 
76
                  This method is unimplemented.
 
77
 
 
78
                </para>
 
79
              </entry>
 
80
            </row>
 
81
            <row>
 
82
              <entry valign="top" align="left">
 
83
                <para>message</para>
 
84
              </entry>
 
85
              <entry valign="top" align="center">
 
86
                <para>
 
87
                  This property is unimplemented.
 
88
                </para>
 
89
              </entry>
 
90
            </row>
 
91
            <row>
 
92
              <entry valign="top" align="left">
 
93
                <para>name</para>
 
94
              </entry>
 
95
              <entry valign="top" align="center">
 
96
                <para>
 
97
                  This property is unimplemented.
 
98
                </para>
 
99
              </entry>
 
100
            </row>
 
101
          </tbody>
 
102
        </tgroup>
 
103
      </informaltable>
 
104
    </para>
 
105
  </sect5>  
 
106
</sect4>