/* * aegis - project change supervisor * Copyright (C) 2002, 2006-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 * . */ columns(1000); auto stack, stack_depth; stack[0] = { project = project_name(); change = change_number(); indent = 0; }; stack_depth = 1; while (stack_depth > 0) { auto ptr; --stack_depth; ptr = stack[stack_depth]; auto ps; ps = project[ptr.project].state; auto cs; cs = ps.branch.change[ptr.change]; /* * find the developer name */ auto developer_name, h, when; developer_name = ""; for (h in cs.history) { if (h.what == develop_begin) developer_name = h.who; } when = cs.history[count(cs.history) - 1].when; print(".PP"); print(".if n *"); print(".if t \\(bu"); print(".\\\" " ## sprintf("%s.D%3.3d", ptr.project, cs.delta_number)); print(".\\\" Change " ## ptr.change); print(".\\\" " ## developer_name ## ", " ## when ## ", " ## cs.brief_description); for (h in wrap(cs.description, 65)) print(h); /* * Push the branch's completed changes onto the stack. * * Some of these may be sub-branches. However, we don't include * incomplete sub-branches in the listing. */ if (count(cs.branch) > 0) { for (h in cs.branch.history) { stack[stack_depth] = { project = ptr.project ## "." ## ptr.change; change = h.change_number; indent = ptr.indent + 1; }; stack_depth++; } } }