This file is indexed.

/usr/share/doc/python-gevent-doc/html/contents.html is in python-gevent-doc 0.13.6-1ubuntu1.

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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!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">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>Table Of Contents &mdash; gevent v0.13.6 documentation</title>
    <link rel="stylesheet" href="_static/default.css" type="text/css" />
    <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    '',
        VERSION:     '0.13.6',
        COLLAPSE_INDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  true
      };
    </script>
    <script type="text/javascript" src="_static/jquery.js"></script>
    <script type="text/javascript" src="_static/underscore.js"></script>
    <script type="text/javascript" src="_static/doctools.js"></script>
    <link rel="top" title="gevent v0.13.6 documentation" href="index.html" />
    <link rel="next" title="Introduction" href="intro.html" /> 
  </head>
  <body>
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="genindex.html" title="General Index"
             accesskey="I">index</a></li>
        <li class="right" >
          <a href="py-modindex.html" title="Python Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="intro.html" title="Introduction"
             accesskey="N">next</a> |</li>
<li><a href="http://www.gevent.org/">Home</a> &raquo;</li>

        <li><a href="#">Documentation</a> &raquo;</li> 
      </ul>
    </div>  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body">
            
  <div class="section" id="table-of-contents">
<h1>Table Of Contents<a class="headerlink" href="#table-of-contents" title="Permalink to this headline">ΒΆ</a></h1>
<div class="toctree-wrapper compound">
<ul>
<li class="toctree-l1"><a class="reference internal" href="intro.html">Introduction</a><ul>
<li class="toctree-l2"><a class="reference internal" href="intro.html#installation">Installation</a></li>
<li class="toctree-l2"><a class="reference internal" href="intro.html#example">Example</a></li>
<li class="toctree-l2"><a class="reference internal" href="intro.html#monkey-patching">Monkey patching</a></li>
<li class="toctree-l2"><a class="reference internal" href="intro.html#event-loop">Event loop</a></li>
<li class="toctree-l2"><a class="reference internal" href="intro.html#cooperative-multitasking">Cooperative multitasking</a></li>
<li class="toctree-l2"><a class="reference internal" href="intro.html#lightweight-pseudothreads">Lightweight pseudothreads</a></li>
<li class="toctree-l2"><a class="reference internal" href="intro.html#timeouts">Timeouts</a></li>
<li class="toctree-l2"><a class="reference internal" href="intro.html#futher-reading">Futher reading</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="reference.html">API reference</a><ul>
<li class="toctree-l2"><a class="reference internal" href="gevent.html"><tt class="docutils literal"><span class="pre">gevent</span></tt> &#8211; basic utilities</a><ul>
<li class="toctree-l3"><a class="reference internal" href="gevent.html#greenlet-objects">Greenlet objects</a></li>
<li class="toctree-l3"><a class="reference internal" href="gevent.html#spawn-helpers">Spawn helpers</a></li>
<li class="toctree-l3"><a class="reference internal" href="gevent.html#useful-general-functions">Useful general functions</a></li>
<li class="toctree-l3"><a class="reference internal" href="gevent.html#timeouts">Timeouts</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="networking.html">Networking interfaces</a><ul class="simple">
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="synchronization.html">Synchronization primitives</a><ul>
<li class="toctree-l3"><a class="reference internal" href="gevent.event.html"><tt class="docutils literal"><span class="pre">gevent.event</span></tt> &#8211; Notifications of multiple listeners</a></li>
<li class="toctree-l3"><a class="reference internal" href="gevent.queue.html"><tt class="docutils literal"><span class="pre">gevent.queue</span></tt> &#8211; Synchronized queues</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="servers.html">Implementing servers</a><ul>
<li class="toctree-l3"><a class="reference internal" href="gevent.wsgi.html"><tt class="docutils literal"><span class="pre">gevent.wsgi</span></tt></a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="gevent.core.html"><tt class="docutils literal"><span class="pre">gevent.core</span></tt> - Low-level wrappers around libevent</a><ul>
<li class="toctree-l3"><a class="reference internal" href="gevent.core.html#events">events</a></li>
<li class="toctree-l3"><a class="reference internal" href="gevent.core.html#event-loop">event loop</a></li>
<li class="toctree-l3"><a class="reference internal" href="gevent.core.html#evdns">evdns</a></li>
<li class="toctree-l3"><a class="reference internal" href="gevent.core.html#evbuffer">evbuffer</a></li>
<li class="toctree-l3"><a class="reference internal" href="gevent.core.html#evhttp">evhttp</a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="changelog.html">Changelog</a><ul>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#release-0-13-6-may-2-2011">Release 0.13.6 (May 2, 2011)</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#release-0-13-5-apr-21-2011">Release 0.13.5 (Apr 21, 2011)</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#release-0-13-4-apr-11-2011">Release 0.13.4 (Apr 11, 2011)</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#release-0-13-3-feb-7-2011">Release 0.13.3 (Feb 7, 2011)</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#release-0-13-2-jan-28-2011">Release 0.13.2 (Jan 28, 2011)</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#release-0-13-1-sep-23-2010">Release 0.13.1 (Sep 23, 2010)</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#release-0-13-0-jul-14-2010">Release 0.13.0 (Jul 14, 2010)</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#release-0-12-2-mar-2-2010">Release 0.12.2 (Mar 2, 2010)</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#release-0-12-1-feb-26-2010">Release 0.12.1 (Feb 26, 2010)</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#release-0-12-0-feb-5-2010">Release 0.12.0 (Feb 5, 2010)</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#release-0-11-2-dec-10-2009">Release 0.11.2 (Dec 10, 2009)</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#release-0-11-1-nov-15-2009">Release 0.11.1 (Nov 15, 2009)</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#release-0-11-0-oct-9-2009">Release 0.11.0 (Oct 9, 2009)</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#release-0-10-0-aug-26-2009">Release 0.10.0 (Aug 26, 2009)</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#release-0-9-3-aug-3-2009">Release 0.9.3 (Aug 3, 2009)</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#release-0-9-2-jul-20-2009">Release 0.9.2 (Jul 20, 2009)</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#release-0-9-1-jul-9-2009">Release 0.9.1 (Jul 9, 2009)</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#release-0-9-0-jul-8-2009">Release 0.9.0 (Jul 8, 2009)</a></li>
</ul>
</li>
</ul>
</div>
<ul class="simple">
<li><a class="reference internal" href="genindex.html"><em>Index</em></a></li>
<li><a class="reference internal" href="py-modindex.html"><em>Module Index</em></a></li>
<li><a class="reference internal" href="search.html"><em>Search Page</em></a></li>
</ul>
</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar">
        <div class="sphinxsidebarwrapper">
  <h4>Next topic</h4>
  <p class="topless"><a href="intro.html"
                        title="next chapter">Introduction</a></p>
<div id="searchbox" style="display: none">
  <h3>Quick search</h3>
    <form class="search" action="search.html" method="get">
      <input type="text" name="q" />
      <input type="submit" value="Go" />
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
    <p class="searchtip" style="font-size: 90%">
    Enter search terms or a module, class or function name.
    </p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="genindex.html" title="General Index"
             >index</a></li>
        <li class="right" >
          <a href="py-modindex.html" title="Python Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="intro.html" title="Introduction"
             >next</a> |</li>
<li><a href="http://www.gevent.org/">Home</a> &raquo;</li>

        <li><a href="#">Documentation</a> &raquo;</li> 
      </ul>
    </div>
    <div class="footer">
        &copy; Copyright 2009-2010, gevent contributors.
      Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.0.8.
    </div>
  </body>
</html>