This file is indexed.

/usr/share/doc/lire/dev-manual/ch14s02.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
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Accessing Lire's CVS</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="ch14.html" title="Chapter 14. Developers' Toolbox"><link rel="prev" href="ch14.html" title="Chapter 14. Developers' Toolbox"><link rel="next" href="ch14s03.html" title="SourceForge"></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">Accessing <span class="application">Lire</span>'s CVS</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch14.html">Prev</a> </td><th width="60%" align="center">Chapter 14. Developers' Toolbox</th><td width="20%" align="right"> <a accesskey="n" href="ch14s03.html">Next</a></td></tr></table><hr></div><div class="section" title="Accessing Lire's CVS"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="sect:cvs-access"></a>Accessing <span class="application">Lire</span>'s CVS</h2></div></div></div><p>Make sure you've got an account on <a class="ulink" href="http://www.sourceforge.net" target="_top">
	    <em class="citetitle">SourceForge</em></a>. Get yourself
	    added to the logreport project. (Joost van Baal
	    joostvb@logreport.org can do this for you.) Make sure your
	    ssh public key is on the sourceforge server.
	</p><p>
            A full backup of the complete LogReport CVS as hosted on
            SourceForge is made weekly and written to <code class="filename">hibou:/data/backup/cvs/</code>.
        </p><div class="section" title="CVS primer"><div class="titlepage"><div><div><h3 class="title"><a name="id417339"></a>CVS primer</h3></div></div></div><p>
        If you have a Unix like system, make sure you have this
        </p><pre class="programlisting">
            CVSROOT=:ext:cvs.sourceforge.net:/cvsroot/logreport
            CVS_RSH=ssh
        </pre><p>
        in your shell environment.
      </p><p>
        Of course, you could do something like
        </p><pre class="programlisting">
          <code class="prompt">$ </code>eval `ssh-agent`
          <code class="prompt">$ </code>ssh-add
        </pre><p>
        to get a nice ssh-agent running.
      </p><p>
        Now do something like
        </p><pre class="programlisting">
            <code class="prompt">$ </code>cd ~/cvs-sourceforge/logreport
            <code class="prompt">$ </code>cvs co service
        </pre><p>
        There are also repositories called 'docs' and 'package'. In the former
        the webpages are located and in the latter the package files for
        <span class="productname">Debian GNU/Linux</span>&#8482; and other distributions are kept.
      </p><p>
        Files can then be edited and commited:
        </p><pre class="programlisting">
          <code class="prompt">$ </code>vi somefile
          <code class="prompt">$ </code>cvs commit somefile
        </pre><p>
        and get flamed ;)
      </p><p>
        Subscribe yourself to the commit list (commit-request@lists.logreport.org),
        to get all commit messages, along with unified diffs.
      </p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch14.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch14.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch14s03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 14. Developers' Toolbox </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> SourceForge</td></tr></table></div></body></html>