This file is indexed.

/usr/share/doc/libags-audio-doc/html/ch01s04.html is in libags-audio-doc 1.4.24-1ubuntu2.

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
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>The file property</title><meta name="generator" content="DocBook XSL Stylesheets V1.79.1"><link rel="home" href="index.html" title="Advanced Gtk+ Sequencer"><link rel="up" href="ch01.html" title="Chapter 1. The application context"><link rel="prev" href="ch01s03.html" title="The config property"><link rel="next" href="ch01s05.html" title="The application mutex"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="sect1"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="idp47"></a>The file property</h2></div></div></div>
    
    <p>
      You might want to set an AgsFile or AgsSimpleFile instance within your application context. This in
      view of having your application persisted.
    </p>

    <div class="example"><a name="idp24"></a><p class="title"><b>Example 1.4. The application context :file property</b></p><div class="example-contents">
      
      <pre class="programlisting">
#include &lt;glib.h&gt;
#include &lt;glib-object.h&gt;

#include &lt;ags/libags.h&gt;

AgsApplicationContext *application_context;
AgsFile *file;

application_context = ags_application_context_get_instance();

file = ags_file_new();
g_object_set(application_context,
             "file\0", file,
             NULL);

      </pre>
    </div></div><br class="example-break">
  </div></body></html>