This file is indexed.

/usr/share/lifelines/net-ped.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
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
/*
 * @progname       net-ped.ll
 * @version        2.1
 * @author         Rafal T. Prinke
 * @category       
 * @output         Netscape HTML
 * @description

    This program generates a set of files covering all known ancestors
    with hypertextual links from the top and bottom persons for
    easy on-line browsing using Netscape.

    The amount and format of data can be edited in the "vitals" procedure
    and "mylong" function.

    Net-Ped -- Pedigree in Netscape HTML table -- bottom to top
    Rafal T. Prinke
    v.1 -- 25 JUN 1996 - one file/tafel
    v.2 -- 25 JUN 1996 (later at night than v.1)
           - multiple files/tafels for all ancestors
    v.2.1 -- 28 JUN 1996
           - changed table holding last filename to list
           - no files for top persons without a parent
           - cross-links for related ancestors
           - nicer layout
    v.2.2  - misc cleanup - tighten checking for non-existent persons
           - make html slightly more readable -- by Stephen Dum.

    "proc vitals" code stolen from Tom Wetmore's "ahnentafel" 1995
    output uses some Polish specific abbreviations
*/

global(mindi)
global(toplist)
global(fillist)
global(t)
global(a)
global(lastfile)
global(onelist)
global(all)
global(mdupli)
global(fdupli)

proc main()
{
list(toplist)
list(fillist)
list(onelist)
table(all)
table(mdupli)
table(fdupli)

getindimsg(mindi, "Whose Ahnentafel do you want?")
enqueue(toplist, mindi)
set(t,1)
set(t2,concat("t",d(t),".html"))
enqueue(fillist, t2)
set(t,add(t,1))

while(indi, dequeue(toplist)) {
        set(nf,dequeue(fillist))
        print("file: ") print(nf) print("\n")
        newfile(nf,0)
        call tafel(indi)
        }
}

proc tafel(indi)
{
table(quart)
insert(quart,"1",indi)
set(a,1)
while(lt(a,16)) {
        if(person,lookup(quart,d(a))) {
	    if (par,father(person)) {
                set(before, lookup(all, key(par)))
                if (before) {
                        insert(fdupli, key(person),1)
                } else {
                        insert(all, key(par), outfile())
                        insert(quart,d(mul(a,2)),par)
                }
	    }
	    if (par,mother(person)) {
                set(before, lookup(all, key(par)))
                if (before) {
                        insert(mdupli, key(person),1)
                } else {
                        insert(all, key(par), outfile())
                        insert(quart,d(add(1,mul(a,2))),par)
                }
	    }
	}
        set(a,add(a,1))
        }

"<html>\n<body>\n<table border>\n"
set(a,16)
"<tr>"
while(lt(a,32)) {
        if (lookup(quart,d(a))) {
if (or( father(lookup(quart,d(a))), mother(lookup(quart,d(a))) )) {
                set(t2,concat("t",d(t),".html"))
                "<td valign=top>"
                "<sup>" d(a) ".</sup> <p align=center>"
                "<a href=" t2 ">"
                call vitals(lookup(quart,d(a))) nl() "</a></td>\n"
                enqueue(toplist,lookup(quart,d(a)))
                enqueue(onelist,outfile())
                set(t,add(t,1))
                enqueue(fillist, t2)
} else {
                "<td valign=top>"
                "<sup>" d(a) ".</sup> <p align=center>"
                call vitals(lookup(quart,d(a))) nl() "</td>\n"
}



        } else { "<td valign=top><sup>" d(a) ".</sup></td>\n" }
        set(a,add(a,1))
        } "</tr>\n"
set(a,8)
"<tr>"
while(lt(a,16)) {
        "<td valign=top colspan=2>"
        "<sup>" d(a) ".</sup><p align=center>"
        call dup(lookup(quart,d(a)))
        call vitals(lookup(quart,d(a))) nl() "</td>\n"
        set(a,add(a,1))
        } "</tr>\n"
set(a,4)
"<tr>"
while(lt(a,8)) {
        "<td valign=top colspan=4>"
        "<sup>" d(a) ".</sup><p align=center>"
        call dup(lookup(quart,d(a)))
        call vitals(lookup(quart,d(a))) nl() "</td>\n"
        set(a,add(a,1))
        } "</tr>\n"
set(a,2)
"<tr>"
while(lt(a,4)) {
        "<td valign=top colspan=8>"
        "<sup>" d(a) ".</sup><p align=center>"
        call dup(lookup(quart,d(a)))
        call vitals(lookup(quart,d(a))) nl() "</td>\n"
        set(a,add(a,1))
        } "</tr>\n"

if(nestr(key(lookup(quart,d(1))),key(mindi))) {
        "<tr><td valign=top colspan=16>"
        "<sup>" d(1) ".</sup><p align=center>"
        call dup(lookup(quart,d(1)))
        call vitals(lookup(quart,d(1))) nl()
        "<hr><a href=" dequeue(onelist)
        "><font color=FF0000><blink>BACK</blink></font></a></td>\n</tr>\n"
} else {
        "<tr><td valign=top colspan=16>"
        "<sup>" d(1) ".</sup><p align=center>"
        call vitals(lookup(quart,d(1))) nl() "</td>\n</tr>\n"
}


"</table>\n</body>\n</html>\n"

}

proc vitals(persn) {
        set(e,marriage(fam))
        if (and(e,long(e))) { mylong(e) }
        "<strong>" name(persn,0) "</strong><br>\n<i>"

        set(e,birth(persn))
        if(and(e,long(e)))  { "*&nbsp;" mylong(e) "<br>\n" }
        set(e,death(persn))
        if(and(e,long(e)))  { "+&nbsp;" mylong(e) "</i><br>\n" }
     "<small>"
       set(srd,0)
       if (gt(nspouses(persn),1)) {
           spouses(persn,ind2,fm,nsp) {
                        set(dad,father(ind2))
                        set(mom,mother(ind2))
               if (srd) { "; " }
               " x&nbsp;(" d(nsp) ") "
               set (es,marriage(fm))
               if (and(es,long(es))) { mylong(es) " " }
               name(ind2,0)

                   if (or(dad,mom))   {
                      ", "
                      if (male(ind2))      { "s.&nbsp;" }
                      elsif (female(ind2)) { "c.&nbsp;" }
                      else                 { "dz.&nbsp;" }
                   }

                   if (dad) {
                      name(dad,0)
                      fornodes(inode(dad), ok) {
                         if (eqstr(tag(ok),"OCCU")) { ", " value(ok) }
                      }
                   }
                   else     { name(mom,0) }

               set(srd,1)
       }  }
       if (eq(nspouses(persn),1)) {
              if (male(persn)) {
           spouses(persn,ind2,fm,nsp) {
               set (es,marriage(fm))
               if (and(es,long(es))) { "x&nbsp;" mylong(es) }
               } }
        }
"</small>"
}

proc dup(persn) {
if (persn) {
if(lookup(fdupli,key(persn))) {
        set(yest,lookup(all,key(father(persn))))
        "<small><a href=" yest "><font color=FF0000><blink>FATHER:</blink></font><font color=0000FF> " name(father(persn)) "</font></a></small><br>\n"
        }

if(lookup(mdupli,key(persn))) {
        set (yest,lookup(all,key(mother(persn))))
        "<small><a href=" yest "><font color=FF0000><blink>MOTHER:</blink></font><font color=0000FF> " name(mother(persn)) "</font></a></small><br>\n"
        }
}
}

func mylong(ev) {
   set(nic,0)
   if (ne(index(date(ev),"/",1),0)) { date(ev) set(nic,1) }
   if (ne(index(date(ev),"BEF",1),0)) {
        "p.&nbsp;" substring(date(ev),5,strlen(date(ev))) set(nic,1) }
   if (ne(index(date(ev),"AFT",1),0)) {
        "po&nbsp;" substring(date(ev),5,strlen(date(ev))) set(nic,1) }
   if (ne(index(date(ev),"ABT",1),0)) {
        "ok.&nbsp;" substring(date(ev),5,strlen(date(ev))) set(nic,1) }
   if (eq(nic,0)) { date(ev) }
   if (place(ev)) { ", " place(ev) }
}