/usr/share/lifelines/tinytafel1.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 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 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 | /*
* @progname tinytafel1.ll
* @version 3.1
* @author Wetmore, Eggert, Chandler
* @category
* @output TinyTafel
* @description
This report will produce a tinytafel report on a person.
tinytafel1
Based on tinytafel1 by Tom Wetmore, ttw@cbnewsl.att.com
Version 1, 1991, by Tom Wetmore.
Version 2, 11 Jan 1993, by Jim Eggert, eggertj@ll.mit.edu,
added header, trailer, sorting, date fixing,
and default moderate interest. Modified
empty surname recognition.
Version 3, Jan 1994, J. F. Chandler, fixed count, enhanced date/place guessing.
Version 3.1 Mark guessed places with "?"
This report will produce a tinytafel report on a person.
Output is an ASCII file. It should be edited to translate any
non-ASCII characters, to shorten long place names (to 14-16
characters), and to indicate interest level after each year:
[space] No interest (level 0)
. Low interest (level 1)
: Moderate interest (level 2) (default)
* Highest interest (level 3)
You will want to modify the write_tafel_header() procedure to
include your name, address, etc.
Empty surnames or those starting with "_" or " " will not
be written to the report.
See the end of this report for an example of a tinytafel report.
*/
global(tafelset)
global(fdatelist)
global(ldatelist)
global(fplacelist)
global(lplacelist)
global(line_count)
global(fdate)
global(ldate)
global(pdate)
global(fplace)
global(lplace)
global(pplace)
global(sname)
global(datemod) /* value returned by get_modifier */
global(pdmax)
global(pdmin)
/* Assumptions for guessing year of birth */
global(Minpar) /* assumed minimum age of parenthood */
global(Typicl) /* typical age for parenthood or marriage */
global(Menopa) /* assumed maximum age of motherhood */
global(Oldage) /* assumed age at death */
proc write_tafel_header() {
forindiset(tafelset,person,index,snum) {set(lines,snum)}
"N John Q. Public\n" /* your name, mandatory */
"A 1234 North Maple\n" /* address, 0-5 lines */
"A Homesville, OX 12345-6789\n"
"A USA\n"
"T 1 (101) 555-1212\n" /* telephone number */
"C 19.2 Baud, Unix System\n" /* communications */
"C Send any Email to: jqpublic@my.node.address\n"
"B SoftRoots/1-101-555-3434\n" /* BBS system/phone number */
"D Unix Operating System\n" /* diskette formats */
"F LifeLines Genealogy Program for Unix\n" /* file format */
"R This is a default header, please ignore.\n" /* comments */
"Z " d(lines) "\n"
}
proc main ()
{
/* Assumptions for guessing year of birth */
set(Minpar,14) /* assumed minimum age of parenthood */
set(Typicl,20) /* typical age for parenthood or marriage */
set(Menopa,50) /* assumed maximum age of motherhood */
set(Oldage,60) /* assumed age at death */
list(plist)
indiset(tafelset)
list(fdatelist)
list(ldatelist)
list(fplacelist)
list(lplacelist)
set(line_count,0)
getindi(person)
enqueue(plist, person)
while (person, dequeue(plist)) {
call process_line(person, plist)
}
namesort(tafelset)
call write_tafel_header()
call write_tafelset()
call write_tafel_trailer()
}
proc write_tafelset() {
forindiset(tafelset,person,index,snum) {
soundex(person) " "
getel(ldatelist,index) ":" /* moderate interest by default */
getel(fdatelist,index) ":"
surname(person)
if (lplace,getel(lplacelist,index)) { "\\" lplace }
if (fplace,getel(fplacelist,index)) { "/" fplace }
"\n"
}
}
proc write_tafel_trailer() {
"W " date(gettoday()) "\n"
}
proc process_line (person, plist)
{
call first_in_line(person)
set(initial,trim(sname,1))
if (and(and(strcmp(initial, "_"),
strcmp(initial, " ")),
strcmp(sname,""))) {
set(last, 0)
while (person) {
print(".")
if (moth, mother(person)) {
enqueue(plist, moth)
}
set(last, person)
set(person, father(person))
if (strcmp(sname, surname(person))) {
call last_in_line(last)
if(person) {call first_in_line(person)}
}
}
}
}
proc first_in_line (person)
{
call set_year_place(person)
set(fdate, pdate)
set(pl, pplace)
if (not(pl)) { /* try for a supportable guess */
list(places)
if(fath,father(person)) {
if(pl,place(death(fath))) {enqueue(places,save(pl))}
if(pl,place(birth(fath))) {enqueue(places,save(pl))}
families(fath,fam,sp,spi) {
if(pl,place(marriage(fam))) {enqueue(places,save(pl))}
}
}
if(moth,mother(person)) {
if(pl,place(death(moth))) {enqueue(places,save(pl))}
if(pl,place(birth(moth))) {enqueue(places,save(pl))}
}
families(person,fam,sp,spi) {
if(pl,place(marriage(fam))) {enqueue(places,save(pl))}
}
/* the person's place of death is often misleading */
/* if(pl,place(death(person))) {enqueue(places,save(pl))} */
set(npl,length(places))
while (gt(npl,1)) {
set(pl,dequeue(places))
set(npl,sub(npl,1))
set(ind,1)
while(le(ind,npl)) {
if(not(strcmp(pl,getel(places,ind)))) {set(npl,neg(1))}
set(ind,add(ind,1))
}
}
if(ge(npl,0)) {set(pl,0)}
if(pl) {set(pl,concat(pl,"?"))}
}
set(fplace,save(pl))
set(sname,save(surname(person)))
}
proc last_in_line (person)
{
call set_year_place(person)
set(ldate, pdate)
set(lplace, pplace)
set(line_count,add(line_count,1))
addtoset(tafelset,person,line_count)
if (and(strcmp(ldate,"????"), gt(strcmp(ldate,fdate),0))) {
print("\nInconsistent dates for surname ")
print(sname)
}
enqueue(ldatelist,save(ldate))
enqueue(fdatelist,save(fdate))
enqueue(lplacelist,save(lplace))
enqueue(fplacelist,save(fplace))
}
/* set global variable datemod to +1 if event's date is marked AFT,
-1 if marked BEF, and 0 otherwise */
proc get_modifier(event)
{ set (datemod,0)
if (junk,date(event)) {
set (junk,trim(junk,3))
if(not(strcmp(junk,"AFT"))) { set (datemod,1) }
elsif(not(strcmp(junk,"BEF"))) { set (datemod,neg(1)) }
}
}
/* get birth-year for given person -- use whatever clues available, in
this order. The culture-dependent limits are defined in "main".
1. birth
2. baptism
3. birth of older sibling (+2)
4. birth of younger sibling (-2)
5. baptism of younger sibling (upper limit only)
6. birth of parent (+14: lower limit only)
7. death of parent (upper limit only)
8. marriage or birth of first child (-20: recursive)
9. marriage or birth of first child (-14: recursive upper limit)
9. birth of last child (-50: lower limit only)
10. death, known to be a parent (-60)
11. death, not known to be a parent
*/
proc set_year (person)
{ set (maxyr,9999) /* set upper bound */
set (minyr,0) /* and lower bound */
set (guess,0) /* clear "best" guess */
if (yr, year(birth(person))) { /* solid data */
call get_modifier(birth(person))
set (iyr,atoi(yr))
if(ge(datemod,0)) {set(minyr,iyr)}
if(le(datemod,0)) {set(maxyr,iyr)}
if(datemod) {set (yr,0)}
}
if (not(yr)) {
if (yr, year(baptism(person))) { /* pretty good guess */
set(iyr,atoi(yr))
call get_modifier(baptism(person))
if(and(le(datemod,0),lt(iyr,maxyr))) {set(maxyr,iyr)}
set (guess, iyr)
}
if(sibl,prevsib(person)) { /* try older sibling */
if (yr, year(birth(sibl))) {
call get_modifier(birth(sibl))
if(ge(datemod,0)) {
set (iyr,atoi(yr))
if(gt(iyr,minyr)) {set(minyr,iyr)}
if(not(or(guess,datemod))) {set(guess,add(iyr,2))}
}
}
}
if(sibl,nextsib(person)) { /* try younger sibling */
if (yr, year(birth(sibl))) {
call get_modifier(birth(sibl))
if(le(datemod,0)) {
set (iyr,atoi(yr))
if(lt(iyr,maxyr)) {set(maxyr,iyr)}
if(not(or(guess,datemod))) {set(guess,sub(iyr,2))}
} else {set(yr,0)}
}
if (not(yr)) {
if (yr, year(baptism(sibl))) {
set(iyr,atoi(yr))
call get_modifier(baptism(sibl))
if(and(le(datemod,0),lt(iyr,maxyr))) {set(maxyr,iyr)}
}
}
}
if(sp,mother(person)) { /* set limits from mother */
if(yr,year(birth(sp))) {
call get_modifier(birth(sp))
set(iyr,add(atoi(yr),Minpar))
if(and(ge(datemod,0),gt(iyr,minyr))) {set(minyr,iyr)}
}
if(yr,year(death(sp))) {
call get_modifier(death(sp))
set(iyr,atoi(yr))
if(and(le(datemod,0),lt(iyr,maxyr))) {set(maxyr,iyr)}
}
}
if(sp,father(person)) { /* set limits from father */
if(yr,year(birth(sp))) {
call get_modifier(birth(sp))
set(iyr,add(atoi(yr),Minpar))
if(and(ge(datemod,0),gt(iyr,minyr))) {set(minyr,iyr)}
}
if(yr,year(death(sp))) {
call get_modifier(death(sp))
set(iyr,add(atoi(yr),1))
if(and(le(datemod,0),lt(iyr,maxyr))) {set(maxyr,iyr)}
}
}
set(maryr,9999) /* marriage date or upper limit */
set(marbest,9999) /* best guess at marriage date */
set(lastbirth,0)
families(person,fam,sp,spi) { /* check on marriage/chidren */
if(yr, year(marriage(fam))) {
call get_modifier(marriage(fam))
set(iyr,atoi(yr)) /* go by marriage date */
if(and(le(datemod,0),lt(iyr,maryr))) {set(maryr,iyr)}
if(and(le(datemod,0),lt(iyr,marbest))) {set(marbest,iyr)}
}
if(or(eq(maryr,9999),female(person))) {
children (fam,child,famchi) {
call set_year(child) /* recurse on children */
if(lt(pdmax,maryr)) {set(maryr,pdmax)}
if(strcmp(pdate,"????")) {
set(iyr,atoi(pdate))
if(lt(iyr,marbest)) {set(marbest,iyr)}
}
if(gt(pdmin,lastbirth)) {set(lastbirth,pdmin)}
/* get earliest & latest child */
}
}
}
if(eq(marbest,9999)) {set(marbest,maryr)}
if(lt(maryr,9999)) {
set(iyr,sub(maryr,Minpar)) /* assume biological limit */
if(lt(iyr,maxyr)) {set(maxyr,iyr)}
if(not(guess)) {set(guess,sub(marbest,Typicl))} /* typical age */
}
if(gt(lastbirth,0)) {
set(iyr,sub(lastbirth,Menopa)) /* another biological limit */
if(gt(iyr,minyr)) {set(minyr,iyr)}
}
if (yr, year(death(person))) {call get_modifier(death(person))}
elsif (yr, year(burial(person))) {call get_modifier(burial(person))}
if (yr) {
set (iyr, atoi(yr))
if(and(le(datemod,0),lt(iyr,maxyr))) {set(maxyr,iyr)}
if(not(guess)) { /* still need a guess? */
if(nfamilies(person)) {
set(guess,sub(iyr,Oldage))} /* died old */
else {set(guess,iyr)} /* no family => died young */
}
}
if (gt(guess,maxyr)) { set(guess,maxyr) } /* apply limit, in case... */
if (lt(guess,minyr)) { set(guess,minyr) }
if (gt(guess,0)) {set (yr,d(guess))}
}
if (not(yr)) { set (yr, "????") }
set(pdate, save(yr)) /* values returned */
set(pdmin,minyr)
set(pdmax,maxyr)
}
proc set_year_place (person)
{
call set_year (person)
set(pl, place(birth(person)))
if (not(pl)) {set(pl, place(baptism(person)))}
set(pplace, save(pl))
}
/*
Here is an example of a tiny tafel by Cliff Manis.
Note that the "Z" line is the number of actual data lines.
N Alda Clifford Manis
A P. O. Box 33937
A San Antonio
A Texas
A 78265-3937
T 1 (512) 654-9912
C 19.2 Baud, Unix System
C Send any Email to: cmanis@csoftec.csf.com
D Unix Operating System
F LifeLines Genealogy Program for Unix
Z 16
M520 1939 1939 Manis\Knoxville, Knox Co, TN/Knoxville, Knox Co, TN
M520 1780 1902 Manes\Sevier Co, TN ?/Union Valley, Sevier Co, TN
M520 1770 1770 Maness\Sevier Co, Tennessee ?/Sevier Co, Tennessee ?
M520 1805 1914 Manis\North Carolina ?/Dandridge, Jefferson Co, TN
C536 1820 1869 Canter\VA/Jonesboro, Washington Co, TN
B620 1765 1829 Bowers/TN
N550 1730 1881 Newman\Monroe Co., WV/Jefferson Co, TN
B630 1760 1845 Bird\Frederick Co, VA/Sevier Co, TN
B630 1730 1730 Barth\Germany/Germany
F652 1745 1810 Francis\Augusta Co, VA ?/Rutherford Co, NC
W365 1860 1846 Whitehorn\VA/Washington Co, TN ?
C500 1700 1808 Cowan/TN
C613 1720 1843 Corbett\Scotch-Irish Dec/Jefferson Co, TN
R525 1750 1806 Rankin\Scotland/Jefferson Co., TN
S636 1776 1799 Shrader\Virginia/Sevier Co, TN ?
B300 1772 1772 Boyd\Boyd's Creek, Sevier Co, TN/Boyd's Creek, Sevier Co, TN
W 24 September 1992
*/
/* End of Report */
|