This file is indexed.

/usr/share/doc/python-pyxmpp-doc/www/index.html is in python-pyxmpp-doc 1.1.2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  <title>pyxmpp</title>
  <link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
  <div id="title">
    <h1>PyXMPP</h1>
    <p id="subtitle">A Python Jabber/XMPP implementation.</p>
  </div>
  <div id="navblock">
    <div id="navbar">
      <p class="linkhead">about</p>
      <p class="link"><a href="index.html#introduction">introduction</a></p>
      <p class="link"><a href="https://github.com/Jajcus/pyxmpp">GitHub project page</a></p>
      <p class="link"><a href="http://lists.jajcus.net/mailman/listinfo/pyxmpp">mailing list</a></p>
      <p class="linkhead">download</p>
      <p class="link"><a href="https://github.com/Jajcus/pyxmpp/downloads">downloads</a></p>
      <p class="linkhead">documentation</p>
      <p class="link"><a href="ChangeLog.html">ChangeLog</a></p>
      <p class="link"><a href="api/">API documentation</a></p>
      <p class="link"><a href="CHANGES.html">API changes</a></p>
      <p class="linkhead">applications</p>
      <p class="link"><a href="http://cjc.jajcus.net/" title="Console Jabber Client">CJC</a></p>
      <p class="link"><a href="http://jjigw.jajcus.net/" title="Jajcus' Jabber to IRC Gateway">JJIGW</a></p>
      <p class="link"><a href="http://vcjb.berlios.de/" title="Version Control Jabber roBot">VCJB</a></p>
      <p class="link"><a href="http://bluszcz.jabberpl.org/pyrss/" title="Python based RSS's notifier for Jabber">PyRSS</a></p>
      <p class="linkhead">similar projects</p>
      <p class="link"><a href="http://xmpppy.sourceforge.net/" title="The jabber python project">Xmpppy</a></p>
      <p class="link"><a href="http://www.twistedmatrix.com/" title="An event-driven networking framework including Jabber support">Twisted</a></p>
      <p class="link"><a href="http://jabberpy.sourceforge.net/" title="A Python Jabber library">jabber.py</a></p>
    </div>
  </div>
  <div id="mainblock">
    <div id="main">
    <h1 class="title">PyXMPP -- Python Jabber/XMPP implementation</h1><div class="section" id="introduction">
<h2>Introduction</h2>
<p>PyXMPP is a Python XMPP (<a class="reference external" href="http://www.faqs.org/rfcs/rfc3920.html">RFC 3920</a>,3921) implementation, including some of the
well-known extensions. It is based on libxml2 -- fast and fully-featured XML
parser.</p>
<p>PyXMPP provides most core features of the XMPP protocol and several JSF-defined
extensions. PyXMPP provides building blocks for creating Jabber clients and
components. Developer uses them to setup XMPP streams, handle incoming events
and create outgoing stanzas (XMPP "packets").</p>
</div><div class="section" id="features">
<h2>Features</h2>
<ul class="simple">
<li>nearly complete XMPP Core (<a class="reference external" href="http://www.faqs.org/rfcs/rfc3920.html">RFC 3920</a>) protocol for client connections
(includes SASL, TLS and Strinprep).</li>
<li>mostly complete XMPP IM (<a class="reference external" href="http://www.faqs.org/rfcs/rfc3921.html">RFC 3921</a>) protocol (lacks privacy lists)</li>
<li>XMPP error objects including translations to and from legacy codes for
backward compatibility (<a class="reference external" href="http://www.jabber.org/jeps/jep-0086.html">JEP-0086</a>).</li>
<li>legacy authentication ("digest" and "plain") (<a class="reference external" href="http://www.jabber.org/jeps/jep-0078.html">JEP-0078</a>).</li>
<li>component protocol (<a class="reference external" href="http://www.jabber.org/jeps/jep-0114.html">JEP-0114</a>).</li>
<li>Service Discovery (<a class="reference external" href="http://www.jabber.org/jeps/jep-0091.html">JEP-0030</a>).</li>
<li>vCards -- both Jabber "vcard-temp" and <a class="reference external" href="http://www.faqs.org/rfcs/rfc2426.html">RFC 2426</a></li>
<li>basic parts of the Multi-User Chat protocol (<a class="reference external" href="http://www.jabber.org/jeps/jep-0045.html">JEP-0045</a>)</li>
<li>delayed delivery timestamps (<a class="reference external" href="http://www.jabber.org/jeps/jep-0091.html">JEP-0091</a>).</li>
<li>Data Forms (<a class="reference external" href="http://www.jabber.org/jeps/jep-0004.html">JEP-0004</a>).</li>
<li>In-Band Registration (<a class="reference external" href="http://www.jabber.org/jeps/jep-0077.html">JEP-0077</a>).</li>
</ul>
</div><div class="section" id="requirements">
<h2>Requirements</h2>
<p>For PyXMPP you will need:</p>
<blockquote>
<ul class="simple">
<li><a class="reference external" href="http://www.python.org/">Python</a>. Python 2.6 required.</li>
<li><a class="reference external" href="http://xmlsoft.org/">libxml2</a>. Recent release (&gt;=2.6.11) with python
bindings is required. Additionally, all development files for libxml2 (usually in
separate libxml2-devel package) are recommended for compilation of PyXMPP for best performance.
PyXMPP 1.0 was tested with libxml2-2.7.6.</li>
<li><a class="reference external" href="http://www.dnspython.org/">dnspython</a>.
PyXMPP 1.0 was tested with version 1.6.0.</li>
</ul>
</blockquote>
</div><div class="section" id="installation">
<h2>Installation</h2>
<p>To make sure you have all the requirements listed above or to prepare limited
(without the binary extension) build of PyXMPP you may want to run:</p>
<pre class="literal-block">
python configure.py
</pre>
<p>You may manually pick the limited or full build of PyXMPP by editing the build.cfg file.</p>
<p>To build the package just invoke:</p>
<pre class="literal-block">
python setup.py build
</pre>
<p>To install it:</p>
<pre class="literal-block">
python setup.py install
</pre>
<p>If you had some older version of PyXMPP it is better to uninstall it (delete
pyxmpp subdirectory os your site-packages directory) before installing this one
or things may not work correctly.</p>
<p>You may also try:</p>
<pre class="literal-block">
make
</pre>
<p>and:</p>
<pre class="literal-block">
make install
</pre>
<p>instead.</p>
</div><div class="section" id="contact">
<h2>Contact</h2>
<p>PyXMPP was written and is maintained by Jacek Konieczny &lt;<a class="reference external" href="mailto:jajcus@jajcus.net">jajcus@jajcus.net</a>&gt;.</p>
<p>To report bugs or request features use the <a class="reference external" href="https://github.com/Jajcus/pyxmpp/issues">GitHub interface</a>.</p>
<p>For discussion you may join <a class="reference external" href="http://lists.jajcus.net/mailman/listinfo/pyxmpp">the PyXMPP mailing list</a>.</p>
</div><div class="section" id="download">
<h2>Download</h2>
<p>Current source code is available via GitHub at: <a class="reference external" href="https://github.com/Jajcus/pyxmpp">https://github.com/Jajcus/pyxmpp</a></p>
</div><div class="section" id="licence">
<h2>Licence</h2>
<p>PyXMPP is free software, licenced under the GNU LGPL. See the
COPYING file for details.</p>
</div></div>
  </div>
</body>
</html>
<!-- vi: set encoding=utf-8 :-->