This file is indexed.

/usr/share/doc/lire/dev-manual/ch22.html is in lire-devel-doc 2:2.1.1-2.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 22. Adding a New Superservice in Lire's Distribution</title><meta name="generator" content="DocBook XSL Stylesheets V1.75.2"><link rel="home" href="index.html" title="Lire Developer's Manual"><link rel="up" href="pt05.html" title="Part V. Implementation Details"><link rel="prev" href="pt05.html" title="Part V. Implementation Details"><link rel="next" href="ch23.html" title="Chapter 23. Issues with Report Merging"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 22. Adding a New Superservice in <span class="application">Lire</span>'s Distribution</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="pt05.html">Prev</a> </td><th width="60%" align="center">Part V. Implementation Details</th><td width="20%" align="right"> <a accesskey="n" href="ch23.html">Next</a></td></tr></table><hr></div><div class="chapter" title="Chapter 22. Adding a New Superservice in Lire's Distribution"><div class="titlepage"><div><div><h2 class="title"><a name="chap:adding-superservice-to-distribution"></a>Chapter 22. Adding a New Superservice in <span class="application">Lire</span>'s Distribution</h2></div></div></div><p>
        Integrating a new superservice in the <span class="application">Lire</span>'s several things:
        </p><div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><p>Making new directories in CVS:
              </p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
                  <code class="filename">/service/&lt;superservice&gt;/</code>
                </p></li><li class="listitem"><p>
                  <code class="filename">/service/&lt;superservice&gt;/script/</code>
                </p></li><li class="listitem"><p>
                  <code class="filename">/service/&lt;superservice&gt;/reports/</code>
                </p></li></ul></div><p>
            </p></li><li class="listitem"><p>Adding several files:
              </p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
                  <code class="filename">/service/&lt;superservice&gt;/Makefile.am</code>
                </p></li><li class="listitem"><p>
                  <code class="filename">/service/&lt;superservice&gt;/reports/Makefile.am</code>
                </p></li><li class="listitem"><p>
                  <code class="filename">/service/&lt;superservice&gt;/script/Makefile.am</code>
                </p></li><li class="listitem"><p>
                  <code class="filename">/service/&lt;superservice&gt;/&lt;superservice&gt;.cfg</code>
                </p></li><li class="listitem"><p>
                  <code class="filename">/service/&lt;
superservice&gt;/&lt;superservice&gt;.xml</code>

This file specifies the DLF format of the superservice.  Ideally, it should
offer a place for each and every snippet of information which will ever be
found in a logfile from a program which offers functionality defined by the
superservice.  This file should have documentation embedded; this will show up
in this manual.

                </p></li></ul></div><p>
            </p></li><li class="listitem"><p>Writing service plugins (2dlf scripts):
              </p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
                  <code class="filename">/service/&lt;superservice&gt;/script/&lt;service&gt;2dlf.in</code>
                </p></li></ul></div><p>
            </p></li><li class="listitem"><p>Adapting several files:
              </p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
                  <code class="filename">/service/configure.in</code>
                  (add the Makefiles and 2dlf script to AC_OUTPUT, to get them
                  converted from
                  &lt;service&gt;2dlf.in to &lt;service&gt;2dlf.)
                </p></li><li class="listitem"><p>
                  <code class="filename">/service/Makefile.am</code>
                  (add the superservice directory to SUBDIRS, so that make gets
                  run there too, when called from the root source directory.)
                </p></li><li class="listitem"><p>
                  <code class="filename">/service/all/etc/address.cf</code>
                  (to make the new service known as a member of a superservice.)
                </p></li></ul></div><p>

            </p></li><li class="listitem"><p>Update Documentation:
              </p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
                  User Manual: Chapter "Supported Applications".
                </p></li><li class="listitem"><p>
                  Add manpages for scripts
                </p></li></ul></div><p>
            </p></li><li class="listitem"><p>Update the configuration by writing a custom config spec or
              extended the current one as well as by added default values to
              the defaults configuration files.</p></li></ol></div><p>
      </p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="pt05.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="pt05.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch23.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Part V. Implementation Details </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Chapter 23. Issues with Report Merging</td></tr></table></div></body></html>