This file is indexed.

/usr/share/doc/libxmlada-doc/known-problems-441 is in libxmlada-doc 4.4.2014-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
=======================================
Known problems in XML/Ada version 4.4.1
=======================================

Copyright (C) 2013-2014, AdaCore

The following is a listing of known problems in release 4.4.1. Except where
specifically noted, all these problems have been corrected in the development
tree of the 4.5 technology. This means they are corrected in any 4.5.0w
wavefront issued subsequent to the date specified (in ISO format YYYY-MM-DD) in
the status line. This can be used to determine if a given wavefront has the fix
identified in the entry.

KP-441-N109-044 SAX: Constraint_Error when using Sax.Readers.Reader

  Problem:    The API in recent versions of XML/Ada has changed slightly to
              improve efficiency, and a new type Sax.Readers.Sax_Reader was
              introduced, replacing Sax.Readers.Reader. However, the latter
              is still provided, but using it in your own application might
              result in a Constraint_Error during the parsing, when creating
              the list of attributes.

  Status:     Fixed in XML/Ada 4.4.2 on 2014-01-10

  Workaround: Extend the type Sax_Reader rather than Reader.

KP-441-MB20-045 DOM: Clone_Node does not do deep cloning

  Problem:    Calling Clone_Node to do a deep cloning only clones the node
              itself, but the children are still referencing the old tree,
              and are not cloned.

  Status:     Fixed in XML/Ada 4.4.2 on 2013-11-21

  Workaround: Do the cloning in user code by iterating over the tree.