This file is indexed.

/usr/share/doc/libqxmlrpc1/TODO is in libqxmlrpc1 0.0.svn6-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
16
17
18
19
20
21
22
1. Add compression support ( quite simple task )

2. Not sure if it's possible.
   On the server side: 
      Try to get rid of QVariants and get information about supported
      methods and parameters types using QMetaObject / QMetaMethod 
      to get information about signals/slots. I'd like to have something 
      like python version from test/pyserver, but with extra types checks.


   For the client side:
      maybe it worth to generate wrapper class around
      xmlrpc::Client, based on the description of server calls 
      ( WSDL or something similar ). 
      The advantage of this is more errors protected client implementation, 
      but extra code generation can make build process more complex.

      Still have to consider if it worths, in any case looks like there is
      a space for improvements here 
      ( however this doesn't mean the current implementation is incomplete ).