This file is indexed.

/usr/share/gtk-doc/html/libanjuta/header-block.html is in libanjuta-dev 2:3.22.0-3.

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
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Anjuta Developers Reference Manual: Wizard header</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="Anjuta Developers Reference Manual">
<link rel="up" href="project-wizard-format.html" title="New Project Wizard format">
<link rel="prev" href="project-wizard-format.html" title="New Project Wizard format">
<link rel="next" href="page-block.html" title="Wizard pages">
<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
<td width="100%" align="left" class="shortcuts"></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
<td><a accesskey="u" href="project-wizard-format.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
<td><a accesskey="p" href="project-wizard-format.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
<td><a accesskey="n" href="page-block.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
</tr></table>
<div class="sect1">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="header-block"></a>Wizard header</h2></div></div></div>
<p>
			Here is all the xml element used in the header block.
			As this block is read directly from the file, it
			can not contains autogen variables.
		</p>
<p>
			<span class="emphasis"><em>project-wizard</em></span>
			</p>
<pre class="programlisting">
&lt;project-wizard&gt;
	&lt;_name&gt;
	&lt;_description&gt;
	&lt;icon&gt;
	&lt;category&gt;
&lt;/project-wizard&gt;
			</pre>
<p>
			It represents the header block, and contains all other
			elements.
		</p>
<p>
			<span class="emphasis"><em>name</em></span>
			</p>
<pre class="programlisting">
&lt;_name&gt;
	text				
&lt;/_name&gt;
			</pre>
<p>
			text is the name of the project, its name start with
			a underscore to mark a translatable element.
		</p>
<p>
			<span class="emphasis"><em>description</em></span>
			</p>
<pre class="programlisting">
&lt;_description&gt;
	text				
&lt;/_description&gt;
			</pre>
<p>
			text gives a short description of the project, it appears when
			the project is selection. It's a translatable element too 
			which explains the underscore.
		</p>
<p>
			<span class="emphasis"><em>icon</em></span>
			</p>
<pre class="programlisting">
&lt;_icon&gt;
	filename				
&lt;/_icon&gt;
			</pre>
<p>
			filename is the name of the file containing a icon for
			the project, it must be in the same directory than the
			project template file. The picture must be of 48 by
			48 pixels in png format.
		</p>
<p>
			<span class="emphasis"><em>category</em></span>
			</p>
<pre class="programlisting">
&lt;_category&gt;
	text					
&lt;/_category&gt;
			</pre>
<p>
			text is a category name. It is a way to group related
			project, it is typically the programming language name,
			like C or C++.
		</p>
<p>
			<span class="emphasis"><em>order</em></span>
			</p>
<pre class="programlisting">
&lt;_order&gt;
	number					
&lt;/_order&gt;
			</pre>
<p>
			number is used to order project in the project
			selection view. If this element is not specified order
			is equal to 0. In this case, the projects are added
			at the end ordered according to their names.
		</p>
</div>
<div class="footer">
<hr>
          Generated by GTK-Doc V1.21</div>
</body>
</html>