This file is indexed.

/usr/share/doc/python-bsddb3/html/contents.html is in python-bsddb3-doc 5.2.0-1build1.

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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  "http://www.w3.org/TR/html4/loose.dtd">
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Python Bindings for Berkeley DB 4.2 thru 5.2 &mdash; PyBSDDB 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:    '5.2.0'
      };
    </script>
    <script type="text/javascript" src="static/jquery.js"></script>
    <script type="text/javascript" src="static/interface.js"></script>
    <script type="text/javascript" src="static/doctools.js"></script>
    <link rel="contents" title="Global table of contents" href="">
    <link rel="index" title="Global index" href="genindex.html">
    <link rel="search" title="Search" href="search.html">
    <link rel="top" title="PyBSDDB Documentation" href="index.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="modindex.html" title="Global Module Index" accesskey="M">modules</a> |</li>
        <li><a href="index.html">PyBSDDB v5.2.0 documentation</a> &raquo;</li>
      </ul>
    </div>

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body">
            
  
  <div class="section">
<h1 id="python-bindings-for-berkeley-db-4-2-thru-5-2">Python Bindings for Berkeley DB 4.2 thru 5.2<a class="headerlink" href="#python-bindings-for-berkeley-db-4-2-thru-5-2" title="Permalink to this headline"></a></h1>
<div class="section">
<h2 id="introduction">Introduction<a class="headerlink" href="#introduction" title="Permalink to this headline"></a></h2>
<p>This handcrafted package contains Python wrappers for <a class="reference" href="http://www.oracle.com/technetwork/database/berkeleydb/overview/index.html">Berkeley DB</a>,
the Open Source embedded database system. Berkeley DB is a programmatic
toolkit that provides high-performance built-in database support for
desktop and server applications.</p>
<p>The Berkeley DB access methods include B+tree, Extended Linear Hashing,
Fixed and Variable-length records, and Queues. Berkeley DB provides full
transactional support, database recovery, online backups, multi-threaded
and multi-process access, etc.</p>
<p>The Python wrappers allow you to store Python string objects of any
length, keyed either by strings or integers depending on the database
access method. With the use of another module in the package standard
shelve-like functionality is provided allowing you to store any
picklable Python object!</p>
<p>Berkeley DB is very powerful and versatile, but it is complex to
use correctly. <a class="reference" href="http://download.oracle.com/docs/cd/E17076_02/html/toc.htm">Oracle documentation</a> is very
complete. Please, review it.</p>
</div>
<div class="section">
<h2 id="documentation-index">Documentation Index<a class="headerlink" href="#documentation-index" title="Permalink to this headline"></a></h2>
<ul>
<li><a class="reference" href="introduction.html">Berkeley DB 4.x/5.x Python Extension Package</a><ul>
<li><a class="reference" href="introduction.html#introduction">Introduction</a></li>
<li><a class="reference" href="introduction.html#types-provided">Types Provided</a></li>
<li><a class="reference" href="introduction.html#top-level-functions">Top level functions</a></li>
<li><a class="reference" href="introduction.html#exceptions-provided">Exceptions Provided</a></li>
<li><a class="reference" href="introduction.html#other-package-modules">Other Package Modules</a></li>
<li><a class="reference" href="introduction.html#testing">Testing</a></li>
<li><a class="reference" href="introduction.html#reference">Reference</a></li>
</ul>
</li>
</ul>
<ul>
<li><a class="reference" href="dbenv.html">DBEnv</a><ul>
<li><a class="reference" href="dbenv.html#dbenv-attributes">DBEnv Attributes</a></li>
<li><a class="reference" href="dbenv.html#dbenv-methods">DBEnv Methods</a></li>
<li><a class="reference" href="dbenv.html#dbenv-replication-manager-methods">DBEnv Replication Manager Methods</a></li>
<li><a class="reference" href="dbenv.html#dbenv-replication-methods">DBEnv Replication Methods</a></li>
</ul>
</li>
</ul>
<ul>
<li><a class="reference" href="db.html">DB</a><ul>
<li><a class="reference" href="db.html#db-methods">DB Methods</a></li>
<li><a class="reference" href="db.html#db-mapping-and-compatibility-methods">DB Mapping and Compatibility Methods</a></li>
</ul>
</li>
</ul>
<ul>
<li><a class="reference" href="dbcursor.html">DBCursor</a><ul>
<li><a class="reference" href="dbcursor.html#dbcursor-methods">DBCursor Methods</a></li>
<li><a class="reference" href="dbcursor.html#dbcursor-get-methods">DBCursor Get Methods</a></li>
</ul>
</li>
</ul>
<ul>
<li><a class="reference" href="dblogcursor.html">DBLogCursor</a><ul>
<li><a class="reference" href="dblogcursor.html#dblogcursor-methods">DBLogCursor Methods</a></li>
<li><a class="reference" href="dblogcursor.html#dblogcursor-get-methods">DBLogCursor Get Methods</a></li>
</ul>
</li>
</ul>
<ul>
<li><a class="reference" href="dbtxn.html">DBTxn</a><ul>
<li><a class="reference" href="dbtxn.html#dbtxn-methods">DBTxn Methods</a></li>
</ul>
</li>
</ul>
<ul>
<li><a class="reference" href="dblock.html">DBLock</a></li>
</ul>
<ul>
<li><a class="reference" href="dbsequence.html">DBSequence</a><ul>
<li><a class="reference" href="dbsequence.html#dbsequence-methods">DBSequence Methods</a></li>
</ul>
</li>
</ul>
<ul>
<li><a class="reference" href="dbsite.html">DBSite</a><ul>
<li><a class="reference" href="dbsite.html#dbsite-methods">DBSite Methods</a></li>
</ul>
</li>
</ul>
<ul>
<li><a class="reference" href="history.html">History</a></li>
</ul>
</div>
</div>


          </div>
        </div>
      </div>
      <div class="sidebar">
        <div class="sidebarwrapper">
          
            <h3>Table Of Contents</h3>
            <ul>
<li><a class="reference" href="">Python Bindings for Berkeley DB 4.2 thru 5.2</a><ul>
<li><a class="reference" href="#introduction">Introduction</a></li>
<li><a class="reference" href="#documentation-index">Documentation Index</a><ul>
</ul>
</li>
</ul>
</li>
</ul>

          
          
          
          
        </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" accesskey="I">index</a></li>
        <li class="right"><a href="modindex.html" title="Global Module Index" accesskey="M">modules</a> |</li>
        <li><a href="index.html">PyBSDDB v5.2.0 documentation</a> &raquo;</li>
      </ul>
    </div>
    <div class="footer">
      &copy; Copyright 2008-2011 Jesus Cea Avion.
      Last updated on Jul 12, 2011.
    </div>
  </body>
</html>