This file is indexed.

/usr/share/aegis/en/html/file_hstry.rpt is in aegis-web 4.24.3-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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
/*
 *	aegis - project change supervisor
 *	Copyright (C) 1997, 1998, 2002, 2003, 2005-2008 Peter Miller
 *
 *	This program is free software; you can redistribute it and/or modify
 *	it under the terms of the GNU General Public License as published by
 *	the Free Software Foundation; either version 3 of the License, or
 *	(at your option) any later version.
 *
 *	This program is distributed in the hope that it will be useful,
 *	but WITHOUT ANY WARRANTY; without even the implied warranty of
 *	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *	GNU General Public License for more details.
 *
 *	You should have received a copy of the GNU General Public License
 *	along with this program. If not, see
 *	<http://www.gnu.org/licenses/>.
 */

auto script_name;
script_name = getenv("SCRIPT_NAME");
if (script_name == "")
	script_name = "http://localhost/cgi-bin/aegis.cgi";
auto pn;
pn = project_name();

columns({width = 1000; });
print("Content-Type: text/html");
print("");
print("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\"");
print("                      \"http://www.w3.org/TR/REC-html40/loose.dtd\">");

print("<html><head>");
print("<meta name=\"ROBOTS\" content=\"NOINDEX, NOFOLLOW\">");
print("<meta name=\"GENERATOR\" content=\"" ## script_name ## "\">");
print("<meta http-equiv=\"Content-Type\" "
	## "content=\"text/html; charset=ISO-8859-1\">");
print("<style type=\"text/css\"> "
	## "tr.even-group { background-color: #CCCCCC; } "
	## "body { background-color: white; } "
	## "</style>");
/*
 * Netscape 4.x has numerous CSS bugs, two of which need mentioning.
 * 1. If a style sheet is not present Netscape says 404 Not found, when
 * it should silently ignore it.  2. Style sheets who's media is not
 * "screen" will be ignored.  Fortunately we can use (2) to get around (1).
 */
print("<link rel=\"stylesheet\" type=\"text/css\" href=\"/aedefault.css\" "
	## "media=\"all\">");
auto stack, depth, n;
depth=0;
stack[depth] = project[pn].state.name;
while ("" != ( n = project[stack[depth]].state.parent_name )) {
  stack[++depth] = n;
}
while ( depth >= 0) {
    print("<link rel=\"stylesheet\" type=\"text/css\" href=\"/" ##
      stack[depth--] ## ".css\" " ## "media=\"all\">");
}
print("<title>");

print("Project " ## quote_html(pn) ## ",");
print("File History Report");
print("</title></head><body><h1 align=center>");

auto href;
print("<a href=\"" ## script_name ## "\">Project</a>");
auto long_project_name;
auto prj_name_parts;
prj_name_parts = split(pn, '.');
href = script_name ## "?file@proj_menu+project@"
	## quote_url(prj_name_parts[0]);
long_project_name = "<a href=\"" ## href ## "\" >"
	## quote_html(prj_name_parts[0]) ## "</a>";
auto j;
for (j = 1; j < count(prj_name_parts); j++)
{
    href ##= '.' ## prj_name_parts[j];
    long_project_name ##= ".<a href=\"" ## href ## "\" >"
    	## quote_html(prj_name_parts[j]) ## "</a>";
};
long_project_name = "&ldquo;" ## long_project_name ## "&rdquo;,<br>";
/* HTTP limits lines to 510 characters */
for (j in wrap(long_project_name, 510))
    print(j);

if (change_number_set())
{
    href = script_name ## "?file@chan_menu+project@" ## quote_url(pn)
	## "+change@" ## change_number();
    print("Change <a href=\"" ## href ## "\">" ## change_number() ##
	"</a>,<br>");
}
if (count(arg) == 1)
    print("File &ldquo;" ## quote_html(arg[0]) ## "&rdquo;,<br>");
print("File History");
print("</h1>");
print("<div class=\"information\">");

print("<table align=center>");

auto ps;
ps = project[project_name()].state;

/*
 * use the files named on the command line,
 * or all project files if not specified
 */
auto file, cs;
if (count(arg) == 0)
{
    if (change_number_set())
    {
	cs = ps.branch.change[change_number()];
	for (file in cs.src)
	    arg ##= file.file_name;
    }
    else
    {
	for (file in ps.src)
	    arg ##= file.file_name;
    }
}

/*
 * create an empty history for each file
 */
auto hist;
for (file in arg)
    hist[file] = [];
auto metname, m;
metname = { };

/*
 * scan all completed changes
 * for any of the named files
 */
auto ph, cf;
for (ph in ps.branch.history)
{
    cs = ps.branch.change[ph.change_number];
    for (cf in cs.src)
    {
	if (cf.file_name in arg)
	{
	    if (cf.usage == build && cf.action == modify)
		continue;
	    hist[cf.file_name] ##=
		{
		    usage = cf.usage;
		    action = cf.action;
		    edit = cf.edit.revision;
		    delta = ph.delta_number;
		    when = cs.history[count(cs.history) - 1].when;
		    change = ph.change_number;
		    description = cs.brief_description;
		    move = cf.move;
		    metrics = cf.metrics;
		};
	    if (count(cf.metrics))
	    {
		for (m in cf.metrics)
		    metname[m.name] = true;
	    }
	}
    }
}

/*
 * print the accumulated history
 */
auto fh, actions, usages, rownum;
for (file in sort(keys(hist)))
{
    href = script_name ## "?file@file_menu+" ## quote_url(file);
    href ##= "+project@" ## quote_url(project_name());

    print("<tr><td colspan=8><br><p>");
    print("<a href=\"" ## href ## "\">");
    print("<span class=\"filename\">" ## quote_html(file) ## "</span></a>");
    print("</td></tr>");

    print("<tr class=\"even-group\">");
    print("<th></th><th>Type</th><th>Action</th><th>Delta</th>");
    print("<th>When</th>");
    print("<th>Change</th><th>Edit</th><th>Description</th>");
    for (m in sort(keys(metname)))
    {
        print("<th>");
	auto msplit, ms2;
	msplit = split(m, "_");
	for (ms2 in msplit)
	    print(capitalize(ms2) ## "<br>");
	print("</th>");
    }
    print("</tr>");
    rownum = 0;

    actions = "BS";
    usages = "BS";
    for (fh in hist[file])
    {
	if (rownum % 6 < 3)
	    print("<tr class=\"odd-group\">");
	else
	    print("<tr class=\"even-group\">");
	++rownum;
	print("<td>&nbsp;&nbsp;</td><td valign=top>");
	if (fh.usage != usages)
	    print(fh.usage);
	print("</td><td valign=top>");
	if (fh.action != actions)
	    print(fh.action);
	print("</td><td valign=top align=right>");
	print(fh.delta);
	print("</td><td valign=top>");
	print(fh.when);
	print("</td><td valign=top align=right>");
	href = script_name ## "?file@chan_menu";
	href ##= "+project@" ## quote_url(project_name());
	href ##= "+change@" ## fh.change;
	print("<a href=\"" ## href ## "\">");
	print(fh.change ## "</a>");
	print("</td><td valign=top align=right>");
	href = script_name ## "?file@file_menu";
	href ##= "+project@" ## quote_url(project_name());
	href ##= "+change@" ## fh.change ## "+" ## quote_html(file);
	print("<a href=\"" ## href ## "\">");
	print(fh.edit ## "</a>");
	print("</td><td valign=top>");
	auto part;
	for (part in wrap_html(quote_html(fh.description), 80))
	    print(part);
	if (fh.move != "")
	{
	    href = script_name ## "?file@file_menu+" ## quote_url(fh.move);
	    href ##= "+project@" ## quote_url(project_name());

	    print("<br>Moved");
	    if (fh.action == create)
		print("from");
	    else
		print("to");
	    print("<a href=\"" ## href ## "\">");
	    print("<span class=\"filename\">" ## quote_html(fh.move)
		## "</span></a>");
	}
	print("</td>");

	auto met;
	for (m in sort(keys(metname)))
	{
	    for (met = 0; met < count(fh.metrics); met++)
	    {
		if (fh.metrics[met].name == m)
		{
		    print("<td valign=top align=right>");
		    print(sprintf("%4.2f", fh.metrics[met].value));
		    print("</td>");
		}
	    }
	}
	print("</tr>");
	actions = fh.action;
	usages = fh.usage;
    }
}
print("<tr><td colspan=8><br><p>");
print("Listed " ## count(keys(hist)) ## " files.");
print("</td></tr>");
print("</table>");
print("</div>");

print("<hr>");
print("<div class=\"report-cmd\">");
print("A similar report may be obtained from the command line, with");
print("<blockquote><samp>aer file_history [ <i>filename</i> ] -p " ##
    quote_html(project_name()) ## "</samp></blockquote>");
print("</div>");

print("<hr>");
print("<p align=center class=\"navbar\">[");
print("<a href=\"" ## script_name ## "\">Project List</a> |");
href = script_name ## "?file@proj_menu+project@" ## quote_url(pn);
print("<a href=\"" ## href ## "\">Project Menu</a> |");
href = script_name ## "?file@changes+project@" ## quote_url(pn);
print("<a href=\"" ## href ## "\">Change List</a>");
if (change_number_set())
{
    href = script_name ## "?file@chan_menu+project@" ## quote_url(pn) ##
	"+change@" ## change_number();
    print("| <a href=\"" ## href ## "\">Change Menu</a>");
}
print("]</p>");

print("<hr>");
print("This page was generated " ## now() ## ".");
print("</body></html>");