This file is indexed.

/usr/share/doc/libacexml-6.3.3/README is in libacexml-6.3.3 6.3.3+dfsg-1.2.

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
ACE XML PARSER Framework README file

* Character set

ACE XML only deal with pure unicode encoding.  I.e., ACE XML
does not care about language specific encoding information.

* SAX - The Simple API for XML

ACE XML Parser interfaces follows the the design of SAX 2.0, which is
a public domain specification for Java.  The major difference between
ACE XML Parser interfaces and SAX is that we added an reference of
ACEXML_Env to every SAX method to accomodate platforms/compilers that
don't support C++ exceptions.  SAX is defined by David Megginson
<david@megginson.com>