/usr/share/gtk-doc/html/libanjuta/header-block.html is in libanjuta-dev 2:3.4.0-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 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>Wizard header</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.76.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.18 (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="2"><tr valign="middle">
<td><a accesskey="p" href="project-wizard-format.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td><a accesskey="u" href="project-wizard-format.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">Anjuta Developers Reference Manual</th>
<td><a accesskey="n" href="page-block.html"><img src="right.png" width="24" height="24" 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">
<project-wizard>
<_name>
<_description>
<icon>
<category>
</project-wizard>
</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">
<_name>
text
</_name>
</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">
<_description>
text
</_description>
</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">
<_icon>
filename
</_icon>
</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">
<_category>
text
</_category>
</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">
<_order>
number
</_order>
</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.18</div>
</body>
</html>
|