/usr/share/lifelines/htmlahnen.ll is in lifelines-reports 3.0.61-2.
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 | /*
* @progname htmlahnen.ll
* @version 2
* @author Tom Wetmore
* @category
* @output HTML
* @description
*
* Generate an ahnentafel chart in HTML format
*/
/* Version 2, 12/31/95 */
proc main ()
{
getindi(per, "Whose Ahnentafel do you want?")
if (not(per)) { return() }
set(title, concat("Ahnentafel of ", name(per, 0)))
call htmlhead(title)
call htmlheading(3, title)
print("Ahnentafel of ", name(per), "\n")
list(ilist) /* list of persons waiting to be output */
list(alist) /* ahnen numbers of those persons */
list(glist) /* generations of those persons */
table(ktab) /* table of all persons who have been output */
table(ctab) /* table of child links */
enqueue(ilist, per) /* initialize all structures */
enqueue(alist, 1)
enqueue(glist, 1)
set(cgen, 0)
call addchild(ctab, 0, per)
while(per, dequeue(ilist)) {
set(ahnen, dequeue(alist))
set (tgen, dequeue(glist))
if (ne(cgen, tgen)) {
"<HR><P>" call htmlstrong("Generation ")
call htmlstrong(d(tgen)) "\n"
set(cgen, tgen)
}
"<P>"
set(old, lookup(ktab, key(per)))
if (old) {
call htmlstrong(d(ahnen)) " Same as "
call htmlstrong(d(old))
call htmllink(concat("#", key(per)), " link")
} else {
call htmlname(key(per)) print(".")
insert(ktab, save(key(per)), ahnen)
call htmlstrong(d(ahnen)) " "
call htmlstrong(name(per, 0)) "\n"
set(lst, lookup(ctab, key(per)))
set(comma, 0)
forlist (lst, key, n) {
if (comma) { ", " }
else { set(comma, 1) }
call htmllink(concat("#", key), "chld")
}
if (par,father(per)) {
enqueue(ilist, par)
call addchild(ctab, per, par)
enqueue(alist, mul(2, ahnen))
enqueue(glist, add(cgen, 1))
if (comma) { ", " }
else { set(comma, 1) }
call htmllink(concat("#", key(par)), "fath")
}
if (par,mother(per)) {
enqueue(ilist, par)
call addchild(ctab, per, par)
enqueue(alist, add(1, mul(2, ahnen)))
enqueue(glist, add(cgen, 1))
if (comma) { ", " }
else { set(comma, 1) }
call htmllink(concat("#", key(par)), "moth")
}
if (e, birth(per)) { "<BR> b. " long(e) "\n" }
if (e, death(per)) { "<BR> d. " long(e) "\n" }
}
"\n"
}
call htmltail()
}
proc addchild (ctab, per, par)
{
set(lst, lookup (ctab, key(par)))
if (not(lst)) {
list(lst)
if (per) {
setel(lst, 1, save(key(per)))
}
insert(ctab, save(key(par)), lst)
} else {
setel(lst, add(1, length(lst)), save(key(per)))
}
}
proc htmlhead (title)
{
"<HTML><HEAD><TITLE>" title "</TITLE></HEAD>\n<BODY>\n"
}
proc htmltail ()
{
"\n</BODY></HTML>\n"
}
proc htmlstrong (str)
{
"<STRONG>" str "</STRONG>"
}
proc htmllink (href, link)
{
"<A HREF=\"" href "\">" link "</A>"
}
proc htmlname (name)
{
"<A NAME=\"" name "\"></A>"
}
proc htmlheading (lev, head)
{
"<H" d(lev) ">" head "</H" d(lev) ">\n"
}
|