~xubuntu-dev/libxfce4util/maverick

« back to all changes in this revision

Viewing changes to docs/xml/xfce-license.xml

  • Committer: Lionel Le Folgoc
  • Date: 2010-05-23 18:00:15 UTC
  • Revision ID: mrpouit@ubuntu.com-20100523180015-0ddtdmn4xstvm2y8
* Merge from debian testing, remaining Ubuntu changes:
  - debian/control: use our Vcs-* fields.
  - debian/patches:
    + xubuntu_desktop-x-ubuntu-gettext.patch: display translations for
      "X-Ubuntu-Gettext-Domain" desktop files
    + series:
      . don't apply 01_add-desktop-base-in-config-dirs.patch
      . refreshed.
* New upstream release.
* debian/control:
  - bump standards version to 3.8.4.
  - add build-dep on intltool. 
  - drop quilt and chrpath build-deps.
  - bump debhelper build-deps for overrides.
* debian/rules:
  - switch to debhelper 7.
* switch to 3.0 (quilt) source format.
* debian/watch edited to track Xfce archive reorganisation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<refentry id="libxfce4util-Software-Licenses">
2
 
<refmeta>
3
 
<refentrytitle role="top_of_page" id="libxfce4util-Software-Licenses.top_of_page">Software Licenses</refentrytitle>
4
 
<manvolnum>3</manvolnum>
5
 
<refmiscinfo>LIBXFCE4UTIL Library</refmiscinfo>
6
 
</refmeta>
7
 
 
8
 
<refnamediv>
9
 
<refname>Software Licenses</refname>
10
 
<refpurpose></refpurpose>
11
 
<!--[<xref linkend="desc" endterm="desc.title"/>]-->
12
 
</refnamediv>
13
 
 
14
 
<refsynopsisdiv id="libxfce4util-Software-Licenses.synopsis" role="synopsis">
15
 
<title role="synopsis.title">Synopsis</title>
16
 
 
17
 
<synopsis>
18
 
 
19
 
#include &lt;libxfce4util/libxfce4util.h&gt;
20
 
 
21
 
#define             <link linkend="XFCE-LICENSE-BSD:CAPS">XFCE_LICENSE_BSD</link>
22
 
#define             <link linkend="XFCE-LICENSE-GPL:CAPS">XFCE_LICENSE_GPL</link>
23
 
#define             <link linkend="XFCE-LICENSE-LGPL:CAPS">XFCE_LICENSE_LGPL</link>
24
 
enum                <link linkend="XfceLicenseTextType">XfceLicenseTextType</link>;
25
 
const <link linkend="gchar">gchar</link>*        <link linkend="xfce-get-license-text">xfce_get_license_text</link>               (<link linkend="XfceLicenseTextType">XfceLicenseTextType</link> license_type);
26
 
</synopsis>
27
 
</refsynopsisdiv>
28
 
 
29
 
 
30
 
 
31
 
 
32
 
 
33
 
 
34
 
 
35
 
 
36
 
 
37
 
<refsect1 id="libxfce4util-Software-Licenses.description" role="desc">
38
 
<title role="desc.title">Description</title>
39
 
<para>
40
 
 
41
 
</para>
42
 
</refsect1>
43
 
 
44
 
<refsect1 id="libxfce4util-Software-Licenses.details" role="details">
45
 
<title role="details.title">Details</title>
46
 
<refsect2 id="XFCE-LICENSE-BSD:CAPS" role="macro">
47
 
<title>XFCE_LICENSE_BSD</title>
48
 
<indexterm zone="XFCE-LICENSE-BSD:CAPS"><primary>XFCE_LICENSE_BSD</primary></indexterm><programlisting>#define XFCE_LICENSE_BSD  (xfce_get_license_text (XFCE_LICENSE_TEXT_BSD))
49
 
</programlisting>
50
 
<para>
51
 
Contains the text of the BSD license.
52
 
</para></refsect2>
53
 
<refsect2 id="XFCE-LICENSE-GPL:CAPS" role="macro">
54
 
<title>XFCE_LICENSE_GPL</title>
55
 
<indexterm zone="XFCE-LICENSE-GPL:CAPS"><primary>XFCE_LICENSE_GPL</primary></indexterm><programlisting>#define XFCE_LICENSE_GPL  (xfce_get_license_text (XFCE_LICENSE_TEXT_GPL))
56
 
</programlisting>
57
 
<para>
58
 
Contains the text of the GNU General Public License.
59
 
</para></refsect2>
60
 
<refsect2 id="XFCE-LICENSE-LGPL:CAPS" role="macro">
61
 
<title>XFCE_LICENSE_LGPL</title>
62
 
<indexterm zone="XFCE-LICENSE-LGPL:CAPS"><primary>XFCE_LICENSE_LGPL</primary></indexterm><programlisting>#define XFCE_LICENSE_LGPL (xfce_get_license_text (XFCE_LICENSE_TEXT_LGPL))
63
 
</programlisting>
64
 
<para>
65
 
Contains the text of the GNU Lesser General Public License.
66
 
</para></refsect2>
67
 
<refsect2 id="XfceLicenseTextType" role="enum">
68
 
<title>enum XfceLicenseTextType</title>
69
 
<indexterm zone="XfceLicenseTextType"><primary>XfceLicenseTextType</primary></indexterm><programlisting>typedef enum /*&lt; enum &gt;*/
70
 
{
71
 
  XFCE_LICENSE_TEXT_BSD,
72
 
  XFCE_LICENSE_TEXT_GPL,
73
 
  XFCE_LICENSE_TEXT_LGPL,
74
 
} XfceLicenseTextType;
75
 
</programlisting>
76
 
<para>
77
 
The license text to return from <link linkend="xfce-get-license-text"><function>xfce_get_license_text()</function></link>.</para>
78
 
<para>
79
 
 
80
 
</para><variablelist role="enum">
81
 
</variablelist></refsect2>
82
 
<refsect2 id="xfce-get-license-text" role="function">
83
 
<title>xfce_get_license_text ()</title>
84
 
<indexterm zone="xfce-get-license-text"><primary>xfce_get_license_text</primary></indexterm><programlisting>const <link linkend="gchar">gchar</link>*        xfce_get_license_text               (<link linkend="XfceLicenseTextType">XfceLicenseTextType</link> license_type);</programlisting>
85
 
<para>
86
 
Returns the text of the software license specified in the
87
 
<parameter>license_type</parameter> translated to the current language. If no
88
 
translation is available, the english license text will
89
 
be returned.</para>
90
 
<para>
91
 
 
92
 
</para><variablelist role="params">
93
 
<varlistentry><term><parameter>license_type</parameter>&nbsp;:</term>
94
 
<listitem><simpara> an <link linkend="XfceLicenseTextType"><type>XfceLicenseTextType</type></link>.
95
 
</simpara></listitem></varlistentry>
96
 
<varlistentry><term><emphasis>Returns</emphasis>&nbsp;:</term><listitem><simpara> the license text for <parameter>license_type</parameter>.
97
 
</simpara></listitem></varlistentry>
98
 
</variablelist></refsect2>
99
 
 
100
 
</refsect1>
101
 
 
102
 
 
103
 
 
104
 
 
105
 
</refentry>