~ubuntu-branches/ubuntu/wily/afnix/wily

« back to all changes in this revision

Viewing changes to src/srv/wax/doc/appendix-ii.xml

  • Committer: Bazaar Package Importer
  • Author(s): Anibal Monsalve Salazar
  • Date: 2011-03-16 21:31:18 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110316213118-gk4k3ez3e5d2huna
Tags: 2.0.0-1
* QA upload.
* New upstream release
* Debian source format is 3.0 (quilt)
* Fix debhelper-but-no-misc-depends
* Fix ancient-standards-version
* Fix package-contains-linda-override
* debhelper compatibility is 7
* Fix dh-clean-k-is-deprecated

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
<!-- = incidental  or special  damages arising  in any way out of the use = -->
14
14
<!-- = of this software.                                                  = -->
15
15
<!-- ====================================================================== -->
16
 
<!-- = copyright (c) 1999-2007 - amaury darsch                            = -->
 
16
<!-- = copyright (c) 1999-2011 - amaury darsch                            = -->
17
17
<!-- ===================================================================== -->
18
18
 
19
19
<appendix service="wax" number="ii">
28
28
 
29
29
    <!-- synopsis -->
30
30
    <p>
31
 
    The <code>XmlMime</code> class is a generic xml mime document
32
 
    class. The class is used to construct a mime version of a xml
33
 
    document which can be obtained from a file name, or an input
34
 
    stream. By default, the mime type 'application/xml'.
 
31
      The <code>XmlMime</code> class is a generic xml mime document
 
32
      class. The class is used to construct a mime version of a xml
 
33
      document which can be obtained from a file name, or an input
 
34
      stream. By default, the mime type 'application/xml'.
35
35
    </p>
36
36
 
37
37
    <!-- predicate -->
45
45
 
46
46
    <!-- constructors -->
47
47
    <ctors>
48
 
     <ctor>
49
 
      <name>XmlMime</name>
50
 
      <args>none</args>
51
 
      <p>
52
 
      The <code>XmlMime</code> constructor creates a default xml
53
 
      mime document.
54
 
      </p>
55
 
     </ctor>
56
 
 
57
 
     <ctor>
58
 
      <name>XmlMime</name>
59
 
      <args>String</args>
60
 
      <p>
61
 
      The <code>XmlMime</code> constructor creates a xml mime document
62
 
      by parsing a file. The file name is the string argument.
63
 
      </p>
64
 
     </ctor>
65
 
 
66
 
     <ctor>
67
 
      <name>XmlMime</name>
68
 
      <args>String Input</args>
69
 
      <p>
70
 
      The <code>XmlMime</code> constructor creates a xml mime document
71
 
      by name and by parsing the input stream. The first argument is
72
 
      the xml document name. The second argument is the input stream
73
 
      to parse.
74
 
      </p>
75
 
     </ctor>
 
48
      <ctor>
 
49
        <name>XmlMime</name>
 
50
        <args>none</args>
 
51
        <p>
 
52
          The <code>XmlMime</code> constructor creates a default xml
 
53
          mime document.
 
54
        </p>
 
55
      </ctor>
 
56
 
 
57
      <ctor>
 
58
        <name>XmlMime</name>
 
59
        <args>String</args>
 
60
        <p>
 
61
          The <code>XmlMime</code> constructor creates a xml mime document
 
62
          by parsing a file. The file name is the string argument.
 
63
        </p>
 
64
      </ctor>
 
65
 
 
66
      <ctor>
 
67
        <name>XmlMime</name>
 
68
        <args>String InputStream</args>
 
69
        <p>
 
70
          The <code>XmlMime</code> constructor creates a xml mime document
 
71
          by name and by parsing the input stream. The first argument is
 
72
          the xml document name. The second argument is the input stream
 
73
          to parse.
 
74
        </p>
 
75
      </ctor>
76
76
    </ctors>
77
77
  </object>
78
78
 
85
85
 
86
86
    <!-- synopsis -->
87
87
    <p>
88
 
    The <code>XhtmlMime</code> class is a generic xhtml mime document
89
 
    class. The class is used to construct a mime version of a xhtml
90
 
    document which can be obtained from a file name, or an input
91
 
    stream. By default, the mime type 'application/xhtml+xml'.
 
88
      The <code>XhtmlMime</code> class is a generic xhtml mime document
 
89
      class. The class is used to construct a mime version of a xhtml
 
90
      document which can be obtained from a file name, or an input
 
91
      stream. By default, the mime type 'application/xhtml+xml'.
92
92
    </p>
93
93
 
94
94
    <!-- predicate -->
101
101
 
102
102
    <!-- constructors -->
103
103
    <ctors>
104
 
     <ctor>
105
 
      <name>XhtmlMime</name>
106
 
      <args>none</args>
107
 
      <p>
108
 
      The <code>XhtmlMime</code> constructor creates a default xhtml
109
 
      mime document.
110
 
      </p>
111
 
     </ctor>
112
 
 
113
 
     <ctor>
114
 
      <name>XhtmlMime</name>
115
 
      <args>String</args>
116
 
      <p>
117
 
      The <code>XhtmlMime</code> constructor creates a xhtml mime document
118
 
      by parsing a file. The file name is the string argument.
119
 
      </p>
120
 
     </ctor>
121
 
 
122
 
     <ctor>
123
 
      <name>XhtmlMime</name>
124
 
      <args>String Input</args>
125
 
      <p>
126
 
      The <code>XhtmlMime</code> constructor creates a xhtml mime document
127
 
      by name and by parsing the input stream. The first argument is
128
 
      the xhtml document name. The second argument is the input stream
129
 
      to parse.
130
 
      </p>
131
 
     </ctor>
 
104
      <ctor>
 
105
        <name>XhtmlMime</name>
 
106
        <args>none</args>
 
107
        <p>
 
108
          The <code>XhtmlMime</code> constructor creates a default xhtml
 
109
          mime document.
 
110
        </p>
 
111
      </ctor>
 
112
 
 
113
      <ctor>
 
114
        <name>XhtmlMime</name>
 
115
        <args>String</args>
 
116
        <p>
 
117
          The <code>XhtmlMime</code> constructor creates a xhtml mime document
 
118
          by parsing a file. The file name is the string argument.
 
119
        </p>
 
120
      </ctor>
 
121
 
 
122
      <ctor>
 
123
        <name>XhtmlMime</name>
 
124
        <args>String InputStream</args>
 
125
        <p>
 
126
          The <code>XhtmlMime</code> constructor creates a xhtml mime document
 
127
          by name and by parsing the input stream. The first argument is
 
128
          the xhtml document name. The second argument is the input stream
 
129
          to parse.
 
130
        </p>
 
131
      </ctor>
132
132
    </ctors>
133
133
  </object>
134
134
</appendix>