~ubuntu-branches/ubuntu/trusty/lifelines/trusty

« back to all changes in this revision

Viewing changes to reports/st/test_indi_it.ll

  • Committer: Bazaar Package Importer
  • Author(s): Felipe Augusto van de Wiel (faw)
  • Date: 2007-05-23 23:49:53 UTC
  • mfrom: (3.1.3 edgy)
  • Revision ID: james.westby@ubuntu.com-20070523234953-ogno9rnbmth61i7p
Tags: 3.0.50-2etch1
* Changing docs/ll-reportmanual.xml and docs/ll-userguide.xml to fix
  documentation build problems (Closes: #418347).

* lifelines-reports
  - Adding a dependency to lifelines >= 3.0.50 to prevent file conflict.
    (Closes: #405500).

* Updating French translation. Thanks to Bernard Adrian. (Closes: #356671).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
proc main() {
 
2
    print(nl())
 
3
    forindi(i,c) { 
 
4
        print(d(c),": ",key(i),nl())
 
5
        print("    Parents\n")
 
6
        Parents(i,f,c2) {
 
7
            print("    ",d(c2),": ",key(f),nl())
 
8
        }
 
9
        print("    families\n")
 
10
        families(i,f,s,c2) {
 
11
            print("    ",d(c2),": ",key(f)," ",key(s),nl())
 
12
        }
 
13
        print("    spouses\n")
 
14
        spouses(i,s,f,c2) {
 
15
            print("    ",d(c2),": ",key(s)," ",key(f),nl())
 
16
        }
 
17
        print("    mothers\n")
 
18
        mothers(i,m,f,c2) {
 
19
            print("    ",d(c2),": ",key(m)," ",key(f),nl())
 
20
        }
 
21
        print("    fathers\n")
 
22
        fathers(i,fa,f,c2) {
 
23
            print("    ",d(c2),": ",key(fa)," ",key(f),nl())
 
24
        }
 
25
    }
 
26
}