This file is indexed.

/usr/share/doc/osm2pgsql/TODO is in osm2pgsql 0.82.0-1git1.

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
== osm2pgsql ==

* there is still room for code cleanups

** the postgres specific files also contain some general functions
  that could/should be moved out to separate files so that they
  may be shared by other middle and output backends in the future

* in the long run it may make sense to go for C++ all the way

** the C++ interface to Google ProtoBuffers is much more mature than
   its C counterpart

** inheriting input, middle, and output plugin implementations from
   abstract C++ base clases would provide a cleaner and more readable
   interface than the current C99 struct based implementation IMHO