chiark / gitweb /
Added list by number of children; refarctored other list-by-count
[familyTree.git] / familyTree / askQuestion.py
index d8414412ff2ce187223096dc5bb7470ba7a615b8..d0380d734cbf9bcc435130f860f536d2ba6b3deb 100755 (executable)
@@ -3,9 +3,17 @@
 import sqlite3
 import findYear
 from string import Template
+import cgi
+import re
 
 global link_Template 
-link_Template= Template("<a href = http://www.chiark.greenend.org.uk/ucgi/~naath/$script>$text</a>")
+link_Template= Template(\
+       "<a href = http://www.chiark.greenend.org.uk/ucgi/~naath/$script"\
+       +" title=$title>$text</a>")
+def add_quotes(s):
+       s = str(s)
+       return "'"+s+"'"
+
 def run_query(s,t):
        c = make_cursor()
        return c.execute(s,t)
@@ -39,15 +47,54 @@ def print_tagged_query(relationship,s,t,newLine):
 def relationship_html(ID,ID2,newLine):
        if newLine=='<br>':
                relationship = common_ancestors(ID,ID2,newLine)[2]
-               script = "ancestors.py?ID="+str(ID)+"&ID2="+str(ID2)
-               url = link_Template.substitute(script = script,text = "Common ancestors")
-               return relationship + ' '+url + newLine
+                       
+               if relationship[-11:] != 'not related':
+                       script = "ancestors.py?ID="+str(ID)+"&ID2="+str(ID2)
+                       url = link_Template.substitute\
+                               (script = script,title = "Common ancestors"\
+                                       ,text = "Common ancestors")
+                       return relationship + ' '+url + newLine
+               else:
+                       return relationship + newLine
        else:
                return ''
 
-def terr_html(terr,newLine):
+def terr_html(terr,newLine,start,stop):
        if newLine=='<br>':
-               return link_Template.substitute(script = "territory.py?terr="+terr, text=terr)
+               if start == 0 and stop ==0:
+                       myTitle = add_quotes(terr)
+
+               else:
+                       s = "SELECT name,people.id"\
+                       +" FROM people INNER JOIN territories"\
+                       +" ON people.id = territories.id"\
+                       +" WHERE territory = ? AND stopyear <= ?"\
+                       +" ORDER BY startyear DESC;"
+
+                       t = (terr,start)
+                       myTitle = ''
+                       for row in run_query(s,t):
+                               myTitle = myTitle +"previous - " + row[0] \
+                               + ',' + str(row[1])
+                               break
+
+                       u = "SELECT name,people.id"\
+                        +" FROM people INNER JOIN territories"\
+                       +" ON people.id = territories.id"\
+                        +" WHERE territory = ? AND startyear >= ?"\
+                        +" ORDER BY startyear;"
+               
+                       v = (terr,stop)
+                        for r in run_query(u,v):
+                               myTitle = myTitle + '&#xA' +"next - " + r[0] \
+                                + ',' + str(r[1])
+                                break
+
+                       myTitle = add_quotes(myTitle)
+
+               return link_Template.substitute(\
+                       script = "territory.py?terr="+terr, title=myTitle,\
+                       text = terr)
        else:
                return terr
 def name_html(row,html):
@@ -58,12 +105,14 @@ def name_html(row,html):
 
        if row[0] == None:
                return row[1]
+       elif row[1]==0:
+               return row[0]
        else:
                if html==1:
                        script = "person.py?ID=" + str(row[1])
                        name = row[0]
                        return link_Template.substitute(script = script\
-                               , text = name)
+                               ,title = add_quotes(name),text = name)
                else:
                        return row[0] + "," +str(row[1])
 
@@ -75,9 +124,9 @@ def print_people(n):
 
 def print_age_child_count(row,newLine):
        if newLine == '<br>':
-               script = "age.py?age="+str(row[0])
+               script = "listAge.py?age="+str(row[0])
                link = link_Template.substitute(script = \
-                       script, text = row[0])
+                       script, title = add_quotes(row[0]), text = row[0])
                out = str(row[1])+print_people(row[1])
 
                out = out + 'had children at age '+ link + newLine
@@ -87,8 +136,9 @@ def print_age_child_count(row,newLine):
 
 def print_age_death_count(row,newLine):
        if newLine =='<br>':
-               script = "ageDeath.py?age="+str(row[0])
-               link = link_Template.substitute(script = script,text = row[0])
+               script = "listAgeDeath.py?age="+str(row[0])
+               link = link_Template.substitute(script = script,\
+                       title = add_quotes(row[0]),text = row[0])
                out = str(row[1])+print_people(row[1])
                out = out + "died at age " + link + newLine
                return out
@@ -99,11 +149,39 @@ def print_name_count(row,newLine):
        if newLine=='<br>':
                script = "name.py?name=" + row[0]
                link = link_Template.substitute(script =\
-                       script, text = row[0])
+                       script, title = add_quotes(row[0]),text = row[0])
                return str(row[1]) + " people called "+link + newLine
        else:
                return print_row(row,newLine)   
 
+def print_children_count(row,newLine):
+       out = str(row[0])
+
+       if row[0]==1:
+               out = out + ' person '
+       else:
+               out = out + ' people '
+       out = out +'had ' 
+
+       if newLine == '<br>':
+               script = "listChildCount.py?nc="+str(row[1])
+               link = link_Template.substitute(script =\
+                       script, title = add_quotes(row[1]),text = row[1])
+       else:
+               link = str(row[1])
+
+       out = out + link
+
+       if row[1] == 1:
+               out = out  + ' child '
+       else:
+               out = out + ' children '
+
+
+       out  = out  + newLine
+
+       return out
+
 def print_tagged_name(relationship,row,newLine):
        if row[0]==None:
                        out = relationship + " not yet entered: " + row[1]
@@ -168,7 +246,7 @@ def list_territories(newLine):
 
        out = ''
        for row in run_query(s,()):
-               out =out + terr_html(row[0],newLine) +newLine
+               out =out + terr_html(row[0],newLine,0,0) +newLine
        return out
 
 def list_people_parents():
@@ -178,41 +256,13 @@ def list_people_parents():
 
        output = []
        for row in run_query(s,()):
-               t = "SELECT parentid"\
-                       +" FROM parents"\
-                       +" WHERE id = ?;"
-
-               u = "SELECT name,id"\
-                       +" FROM people"\
-                       +" WHERE id = ?";
-
-               parents =[]
-               for r in run_query(t,(row[1],)):
-                       parentID = r[0]
-                       hasParent = 0
-                       for q in run_query(u,(r[0],)):
-                               parents.append(q[0] + ' ' + str(q[1]))
-                               hasParent=1
-                       if hasParent==0:
-                               parents.append(r[0] + ' p' +\
-                                str(row[1]))
-
-               spouses=[]
-               v = "SELECT name,idb"\
-                       +" FROM marriages LEFT JOIN people"\
-                       +" ON idb = id"\
-                       +" WHERE ida = ?"
-               for r in run_query(v,(row[1],)):
-                       if r[0]!=None:
-                               spouses.append(r[0]+ ' '+str(r[1]))
-                       else:
-                               spouses.append(r[1] + ' s' +\
-                               str(row[1]))
-
-
-               myName = row[0]
-               myID = str(row[1])
-               output.append([myName+ ' '+ myID,parents,spouses])
+
+               ID = row[1]
+               [parents, parentIDs,parentNames] = find_parents(ID)
+               [spouses,spousesID,spousesNames] = find_spouses(ID)
+               
+               [self,myID,myName] = find_person(ID)
+               output.append([self,parents,spouses])
        return output
 
 
@@ -315,14 +365,105 @@ def count_names(newLine):
 
        return out
 
+
+
+def count_children(newLine):
+
+       s = "SELECT count(*),nc"\
+       +" FROM ("\
+       +" SELECT count(*) AS nc"\
+       +" FROM parents"\
+       +" GROUP BY parentID"\
+       +" HAVING parentID <>'?'"\
+       +" AND parentID <> '0')"\
+       +" GROUP BY nc;"
+
+       out = ''
+       for row in run_query(s,()):
+               out = out + print_children_count(row,newLine)
+       return out
+
+def parents_with_children(nChildren,newLine):
+       s = "SELECT name,parentID"\
+       + " FROM parents"\
+       + " LEFT JOIN people"\
+       + " ON parentID = people.ID"\
+       + " GROUP BY parentID"\
+       + " HAVING count(*) = ?"\
+       + " AND parentID <> 0"\
+       + " ORDER BY bornYear;"
+
+
+       u = "SELECT count(*)"\
+       +" FROM  parents INNER JOIN people"\
+       +" ON parents.ID = people.ID"\
+       +" WHERE parentID = ?"\
+       +" AND (diedyear-bornyear>? OR died='present');"
+
+       out = "People who had " + str(nChildren)
+       if nChildren==1:
+               out = out + " child"
+       else:
+               out = out  + " children"
+       out = out + ':' + newLine
+
+
+
+       for row in run_query(s,(nChildren,)):
+               out = out + name_html(row,newLine)
+               for r in run_query(u,(row[1],1)):       
+                       out += " %d  survived infancy" % r[0]
+               for r in run_query(u,(row[1],18)):
+                       out = out +" and " +str(r[0])+" survived to adulthood"
+               out = out +newLine
+       
+       return out
+
+def search_name(name,newLine):
+       s = "SELECT name, ID"\
+        +" FROM people"\
+        +" WHERE name LIKE ?;"
+
+        out = ''
+       IDs=[]
+       names=[]
+
+       out = out + 'Names starting with ' + name + ':' + newLine
+       t = (name + '%',)
+       fullIDs=[]
+       for row in run_query(s,t):
+                out = out + name_html(row,newLine) + newLine
+               fullIDs.append(row[1])
+               names.append(row[0])
+               IDs.append(row[1])
+
+        t = ('%' + name + '%',)
+       out = out+newLine + 'Names containing ' + name + ':' + newLine
+        for row in run_query(s,t):
+               if row[1] not in fullIDs:
+                       out = out + name_html(row,newLine) + newLine
+                       names.append(row[0])
+                       IDs.append(row[1])
+       
+       s = "SELECT name,people.ID,style"\
+       +" FROM people INNER JOIN styles"\
+       +" ON styles.id = people.id"\
+       +" WHERE style LIKE ?;"
+       out = out +newLine+ 'Styles containing ' + name + ':' + newLine
+       for row in run_query(s,t):
+               out = out + name_html(row,newLine)+' ' + row[2] + newLine
+
+        return [out,names,IDs]
+
+
 def people_with_name(name,newLine):
-       s = "SELECT Name, ID"\
+       s = "SELECT name, ID"\
        +" FROM people"\
-       +" WHERE Name LIKE ?;"
+       +" WHERE firstname = ?;"
 
        out = ''
 
-       t = (name + '%',)
+       t = (name,)
 
        for row in run_query(s,t):
                out = out + name_html(row,newLine) + newLine
@@ -415,6 +556,7 @@ def count_age_at_death(newLine):
                out = out + print_age_death_count(row,newLine)
 
        return out
+
 def people_died_at_age(age,newLine):
        s = "SELECT diedYear-bornYear as age, name,ID"\
                +" FROM people"\
@@ -429,19 +571,13 @@ def people_died_at_age(age,newLine):
 
 def all_ancestors(personID,newLine):
        #find parents
-        s = "SELECT people.Name,parents.parentID FROM"\
-                +" parents LEFT JOIN people"\
-                +" ON parents.parentID = people.ID"\
-                +" WHERE parents.ID = ?"\
-               +" AND parents.parentID <> '.';"
-
 
        ancestors = [personID]
        allAncestors = [personID]
        trackLevel = [0]
        level = 0
 
-       t = "SELECT name,id FROM people WHERE id==?"
+       t = "SELECT name,id FROM people WHERE id=?"
        id = (personID,)
 
        out = "Ancestors of "
@@ -451,17 +587,22 @@ def all_ancestors(personID,newLine):
        while len(ancestors)>0:
                level = level+1
                newA =[]
-               thisout = newLine + parent_level(level,'parent') +':' + newLine
+               thisout = newLine + parent_level(level,'parent') +\
+                       ':' + newLine
                for ancestor in ancestors:
-                       id = (ancestor,)
-                       for row in run_query(s,id):
+                       [parents, parentIDs,parentNames] \
+                               = find_parents(ancestor)
+                       for i in range(len(parents)):
+                               r = [parentNames[i],parentIDs[i]]
                                thisout = thisout + \
-                               name_html(row,newLine)+newLine
-                               if row[1] not in allAncestors and \
-                               is_number(row[1])!=0:
-                                       newA.append(row[1])
-                                       allAncestors.append(row[1])
+                               name_html(r,newLine)+newLine
+                               
+                               if r[1] not in allAncestors\
+                               and r[1]!=0:
+                                       newA.append(r[1])
+                                       allAncestors.append(r[1])
                                        trackLevel.append(level)
+                               
                ancestors = newA
                out  = out+thisout
 
@@ -518,8 +659,6 @@ def common_ancestors(IDA, IDB,newLine):
                s = s+ "?,"
        if len(common)>0:
                s = s[:-1]
-
-
        s = s+") ORDER BY bornyear;"
 
 
@@ -561,13 +700,6 @@ def common_ancestors(IDA, IDB,newLine):
 
        out = out + ' of ' + name_html([names[0],IDA],newLine)+newLine
 
-       #out = out + newLine
-       #for b in indexB:
-       #       t = (common[b],)
-       #       out = out + print_tagged_query('',s,t,newLine)
-       #       if b!=indexB[-1]:
-       #               out = out + 'and' + newLine
-
        out = out + parent_level(bLevels[indexB[0]],'parent')
        if len(indexB)>1:
                out = out + 's'
@@ -664,38 +796,184 @@ def rulers_of(aTerritory,newLine):
        out = ''
        for row in run_query(tq,(aTerritory+'%',)):
                if row[4]!=last and last!='':
-                        out  = out + 'Rulers of '+terr_html(last,newLine) +':'+ newLine +thisT +newLine
+                        out  = out + 'Rulers of '+terr_html(last,newLine,0,0) \
+                       +':'+ newLine +thisT +newLine
                         thisT = ''
 
                thisT = thisT +name_html(row,newLine)
                thisT = thisT +' from ' + str(row[2])+' to '+str(row[3]) + newLine
                last = row[4]
 
-       out  = out + 'Rulers of '+terr_html(row[4],newLine) +':'+ newLine +thisT
+       out  = out + 'Rulers of '+terr_html(row[4],newLine,0,0) +':'+ \
+               newLine +thisT
 
        return out      
 
+def find_person(ID):
+        s = "SELECT name || ','||ID, name, ID FROM people WHERE ID=?"
+        t = (ID,)
+
+        for row in run_query(s,t):
+                Self = row[0]
+               selfName = row[1]
+               selfID = row[2]
+                return [Self, selfID,selfName]
+def isKing(ID):
+       ID = int(ID.split(',')[-1])
+       s=  "SELECT style FROM styles WHERE ID=?"
+       t = (ID,)       
+
+       k = 0
+       spellingsOfKing = ['King','Queen','king','queen']
+       for row in run_query(s,t):
+               for s in spellingsOfKing:
+                       if re.match('.*'+s,row[0]) != None:
+                               k = 1
+
+       return k
+
+def find_parents(ID):
+        s = "SELECT name, parentID"\
+                +" FROM parents LEFT JOIN people"\
+                +" ON people.ID = parentID"\
+                +" WHERE parents.ID = ?;"
+        t = (ID,)
+
+        parents = []
+        parentIDs =[]
+       parentNames=[]
+
+        for row in run_query(s,t):
+                if row[0]!=None:
+                        p = row[0] + ',' + str(row[1])
+                        pID = row[1]
+                       pN = row[0]
+                else:
+                        p = row[1] + ',p' + str(ID)
+                        pID = 0
+                       pN = row[1]
+                parents.append(p)
+                parentIDs.append(pID)
+               parentNames.append(pN)
+
+       if parents[1]==parents[0]:
+               parents[1] = parents[1] + ' 2'
+
+        return [parents,parentIDs,parentNames]
+
+def find_spouses(ID):
+        t = (ID,)
+
+        order = [["IDb","IDa"],["IDa","IDb"]]
+
+        spouses = []
+        spousesID=[]
+       spousesNames=[]
+        for o in order:
+                s = "SELECT name, marriages." + o[0]\
+                +" FROM marriages LEFT JOIN people"\
+                +" ON marriages." +o[0]+" = people.ID"\
+                +" WHERE marriages."+o[1]+" = ?;"
+
+
+                for row in run_query(s,t):
+                        if row[0]!=None:
+                                s = row[0] + "," +str(row[1])
+                                sID = row[1]
+                                       sN = row[0]
+                       elif row[1] !='':
+                                s=row[1] + ",s" +str(ID)
+                                sID = 0
+                               sN = row[1]
+                        if row[1] !='':
+                                spouses.append(s)
+                                spousesID.append(sID)
+                               spousesNames.append(sN)
+
+        return [spouses,spousesID,spousesNames]
+       
+
+def find_children(ID):
+        s = "SELECT p1.name, p1.ID,p3.parentID,p4.name,p1.bornYear"\
+                +" FROM people p1"\
+                +" INNER JOIN parents p2"\
+                +" ON p1.ID = p2.ID"\
+                +" INNER JOIN parents p3"\
+                +" ON p1.ID = p3.ID"\
+                +" LEFT JOIN people"\
+                +" p4 ON p3.parentID = p4.ID"\
+                +" WHERE p2.parentID = ?"\
+                +" AND p3.parentID<>?"\
+                +" ORDER BY p1.bornYear;"
+
+        t = (ID,ID)
+
+       childrenBorn=[]
+       nodes=[]
+       IDs=[]  
+       names=[]
+
+        for row in run_query(s,t):
+                c = row[0] + ',' + str(row[1])
+                cID = row[1]
+               cName = row[0]
+               born = row[4]
+                childrenBorn.append(born)
+               if row[3]!=None:
+                        op = row[3] + ',' + str(row[2])
+                        opID = row[2]
+                       opN = row[3]
+                else:
+                        op = row[2] + ',s' + str(ID)
+                        opID = 0
+                       opN = row[2]
+
+               nodes.append([c,op])
+               IDs.append([cID,opID])
+               names.append([cName,opN])
+
+        return [nodes,IDs,names,childrenBorn]
+
 def person_info(personID,newLine):
        t = (personID,)
 
-       output = '';
-       
+       if newLine=='<br>':
+               startP = '<p>'
+               endP = '</p>'
+       else:
+               startP = ''
+               endP = newLine
+
+       mainDiv = ''    
        #Id, Name, Dates, Style, Style-Dates
        s = "SELECT * FROM people WHERE ID = ?"
        for row in run_query(s,t):
-               output = output + 'ID: '+str(row[0]) +newLine
-               output = output + print_tagged_name('Name',[row[1], row[0]],newLine) +newLine
+               mainDiv = mainDiv + startP
+               mainDiv = mainDiv  + 'ID: '+str(row[0]) +newLine
+               mainDiv = mainDiv + print_tagged_name('Name',[row[1], row[0]]\
+                       ,newLine)
+               mainDiv = mainDiv + endP
                name = row[1]
-               output = output + 'Born: '+row[3] + newLine
+               url = row[9]
+               picture = row[10]
+
+               mainDiv = mainDiv + startP
+               mainDiv = mainDiv + newLine + 'Born: '+row[3] + newLine
                bornYear = row[4]
-               output = output + 'Died: '+row[5] + ", aged " \
-                       +str(row[6]-row[4]) +newLine
+               mainDiv = mainDiv + 'Died: '+row[5]
+
+               if row[6] != 0 and row[4] !=0:
+                       mainDiv = mainDiv + ", aged " \
+                               +str(row[6]-row[4])
+               mainDiv = mainDiv + endP
+
 
        s = "SELECT * FROM styles WHERE ID = ?"
        for row in run_query(s,t):
-               output = output +newLine+ 'Style: '+row[1] + newLine
+               mainDiv = mainDiv + startP
+               mainDiv = mainDiv +newLine+ 'Style: '+row[1] + newLine
 
-               output = output + 'Territories:' + newLine
+               mainDiv = mainDiv + 'Territories:' + newLine
 
                u = "SELECT * FROM territories"\
                +"  WHERE ID =? AND startYear =? AND stopYear=?"
@@ -703,130 +981,187 @@ def person_info(personID,newLine):
 
                any = 0
                for r in run_query(u,v):
-                       output = output + terr_html(r[1],newLine) +','
+                       mainDiv = mainDiv \
+                       + terr_html(r[1],newLine,r[3],r[5])\
+                       +','
                        any = 1
                if any ==1:
-                       output = output[:-1] + newLine
+                       mainDiv = mainDiv[:-1] + newLine
+
+               mainDiv = mainDiv +  'From: '+row[2] + newLine
+                mainDiv = mainDiv +  'To: '+row[4]     
+
+               mainDiv = mainDiv + endP
+
+
 
-               output = output +  'From: '+row[2] + newLine
-                output = output +  'To: '+row[4] + newLine
 
+       mainDiv = mainDiv + startP
        s = "SELECT people.Name,consort "\
                +"FROM consorts LEFT JOIN people"\
                +" ON people.ID = consorts.consort"\
                +" WHERE consorts.ID = ?"
        for row in run_query(s,t):
-               output = output + print_tagged_name('Consort',row,newLine)
+               mainDiv = mainDiv + print_tagged_name\
+               ('Consort of',row,newLine)
+       mainDiv = mainDiv + endP
 
-       output = output + newLine
        #find parents
-       s = "SELECT people.Name,parents.parentID FROM"\
-               +" parents LEFT JOIN people"\
-               +" ON parents.parentID = people.ID"\
-               +" WHERE parents.ID = ?"
 
-       parents =[]
-       for row in run_query(s,t):
-               output = output + print_tagged_name('Parent',row,newLine)
-               if row[0]!=None:
-                       parents.append(row[0] + ' ' + row[1])
-               else:
-                       parents.append(row[1] + ' p' + personID)
+       [parents,parentIDs,parentNames] = find_parents(personID)
+       mainDiv = mainDiv + startP
+       for i in range(len(parents)):
+               r = [parentNames[i],parentIDs[i]]
+               mainDiv = mainDiv + print_tagged_name('Parent',r,newLine)
+       mainDiv = mainDiv + endP
 
        #find spouses
-       s = "SELECT people.NAME, marriages.IDb from"\
-               +" marriages LEFT JOIN people"\
-               +" ON people.ID = marriages.IDb"\
-               +" WHERE marriages.IDa = ?"\
-               +" ORDER BY IDb;"
-       spouses = []
-       for row in run_query(s,t):
-               if row[0]!=None:
-                       spouses.append(row[0] + ' '+str(row[1]))
-               else:
-                       spouses.append(row[1] + ' s' + personID) 
-               output = output + newLine
-                output = output + print_tagged_name('Spouse',row,newLine)
-               output = output + relationship_html(personID,row[1],newLine)
-
-       s = "SELECT people.NAME, marriages.IDa from"\
-                +" marriages LEFT JOIN people"\
-                +" ON people.ID = marriages.IDa"\
-                +" WHERE marriages.IDb = ?"\
-               +" ORDER BY IDa;"
-       for row in run_query(s,t):    
-               if row[0]!=None:
-                       spouses.append(row[0] + ' '+str(row[1]))
-               else:
-                       spouses.append(row[1] + ' s' + personID)
-               output = output + newLine
-                output = output + print_tagged_name('Spouse',row,newLine)
-               output = output + relationship_html(personID,row[1],newLine)
 
-       output = output + newLine
+       [spouses,spousesID,spousesNames] = find_spouses(personID)
 
-       #find children
-       s = "Select people.NAME, people.ID ,people.bornYear"\
-               +" FROM people INNER JOIN parents"\
-               +" ON people.ID = parents.ID"\
-               +" WHERE parents.parentID = ?"\
-               +" ORDER BY people.bornYear;"
-
-       children = []
-       ops =[]
-       for row in run_query(s,t):
-               output = output  + print_tagged_name('Child',row,newLine)
-               children.append(row[0] + ' ' + str(row[1]))
-               
-                #find children's other parent
-                u = "Select people.NAME, parents.parentID FROM"\
-                +" parents INNER JOIN people"\
-                +" ON people.ID = parents.parentID"\
-                +" WHERE parents.ID = ? AND parents.parentID <>?;"
-
-               ids = (row[1],t[0])
-
-               op = 0
-               for r in run_query(u,ids):
-                       output = output + print_tagged_name('With',r,newLine)
-                       op = 1
-                       ops.append(r[0] + ' ' + str(r[1]))
-               if op==0:
-                       ops.append('?' + ' s' + personID)
+       mainDiv = mainDiv + startP
 
-               #age when child born
-               if row[2] !=0 and bornYear != 0:
-                       age = row[2]-bornYear
-                       output = output[:-4] + " at the age of "+str(age) + newLine
+       for i in range(len(spouses)):
+               r = [spousesNames[i],spousesID[i]]
+               mainDiv = mainDiv + print_tagged_name('Spouse',r,newLine)
+               mainDiv = mainDiv + \
+               relationship_html(personID,r[1],newLine)
 
+       mainDiv  = mainDiv + endP
 
-       Self = name +' ' + str(personID)
+       #find children
+       [nodes,IDs,names,childrenBorn] = \
+               find_children(personID)
+
+       top = ''
+       for i in range(len(nodes)):
+               cr = [names[i][0],IDs[i][0]]
+               thisChild = print_tagged_name('Child',cr,newLine)
 
-       image =  "smallGraph.py?Self="+Self
-       for p in parents:
-               image = image + '&p='+p
-       for c in children:
-               image = image + '&c='+c
-       for op in ops:
-               if op !=None:
-                       image = image + '&op='+op
-       for s in spouses:
-               if s !=None:
-                       image = image + '&s='+str(s)
+               opr=[names[i][1],IDs[i][1]]
+               top = names[i][1]
+               if i==0 or  top != names[i-1][1]:
+                       mainDiv = mainDiv +endP
+                       mainDiv = mainDiv + startP
+                       mainDiv = mainDiv + print_tagged_name\
+                        ('With',opr, newLine)
 
-       image = image.replace(' ','%20')
-       image ="<img src ="+ image + '>'
 
+               #age when child born
+               cb = childrenBorn[i]
+               if  cb!=0 and  bornYear != 0:
+                       age = cb-bornYear
+                       thisChild = thisChild[:-4] + \
+                               " at the age of "+str(age) + newLine
+               mainDiv = mainDiv + thisChild
        
-       output = newLine+ output+ image+newLine
+       mainDiv = mainDiv + endP
 
 
+       if newLine == '<br>':
+               output = '<div id = "main" style = " float:left">';
+               output = output + mainDiv +  "</div>"
+
+               output = output + "<div id = 'image' "\
+                       +"style = 'float:left; margin-left:20px'>"
+
+               imageDiv = ''
+               if picture!='.':
+                       imageDiv = imageDiv + "<a href=" + url+">"\
+                       +"<img src=" + picture +" alt = 'wiki link'"\
+                       +" title = 'wiki link'></a>"\
+                       + newLine
+
+               elif url!='.' and url!='. ':
+                       imageDiv = imageDiv + "<a href=" + url +">"\
+                       +name + " (wiki link)</a>"+newLine
+
+               output = output + imageDiv + "</div>"
+
+
+               url = 'http://www.chiark.greenend.org.uk/ucgi/~naath/'\
+                       +'smallGraph.py'
+
+               form = ''
+               form = form + "<form id ='controlForm'"\
+               +" action ="+ url +" method = 'get'>"
+
+               form = form +\
+                       "<input type = 'hidden' name = 'ID' value = "\
+                       +personID + "><br>"
+
+                form = form +\
+               "Generations of Parents: "\
+               +"<input type = 'text' name = 'pl' value='1'>"
+               form = form + newLine
+               form = form + \
+               "Generations of Children: "\
+               +" <input type = 'text' name = 'cl' value = '1'>"
+               form = form + newLine
+                form = form + \
+                "Show siblings: <select name = 's'>"+\
+                "<option value = '0'>No</option>"+\
+                "<option value = '1'>Yes</option>"+\
+               "</select>"
+               form = form + newLine
+                form = form + \
+                "Show spouse's other spouses: <select name = 'os'>"+\
+                "<option value = '0'>No</option>"+\
+                "<option value = '1'>Yes</option>"+\
+                "</select>"
+               form = form + newLine
+                form = form + \
+                "Show parents' other spouses: <select name = 'pos'>"+\
+                "<option value = '0'>No</option>"+\
+                "<option value = '1'>Yes</option>"+\
+                "</select>"            
+               form = form + newLine
+                form = form + \
+               "Fount size: "+\
+                "<input type = 'text' name = 'fs' value='8'>"
+                form = form + newLine
+               form = form + "</form>"
+
+               graph =  "smallGraph.py?ID="+str(personID)+"&fs=8"
+
+               graph = "<img src ="+ graph + '>'
+
+               output = output + "<div id = 'graph' style = 'clear:both'>"
+               output = output + "<p id = 'agraph'>"+graph+"</p>"
+               output = output + "Draw this graph with more relatives:"
+               output = output + newLine + form
+               
+               output = output + "<button onclick='myFunction()'>"+\
+                       "Go</button>"
+
+               output = output + "</div>"
+
+               output = output +\
+               '<script>'+\
+               'function myFunction()'+\
+               '{'+\
+               'var x = document.getElementById("controlForm");'+\
+               'var txt = "<img src = " + x.action + "?";'+\
+               'for (var i=0;i<x.length;i++)'+\
+               '{'+\
+               'var n=x.elements[i].name;'+\
+               'var v=x.elements[i].value;'+\
+               'txt = txt + "&"+n+"="+v;'+\
+               '}'+\
+               'txt = txt + ">";'+\
+               'document.getElementById("agraph").innerHTML=txt;'+\
+               '}'+\
+               '</script>'
+
+       else:
+               output = mainDiv
 
        return output
 
 def connect():
        global conn
-       conn = sqlite3.connect('/home/naath/familyTreeProject/familyTree/tree.db')
+       conn = sqlite3.connect\
+               ('/home/naath/familyTreeProject/familyTree/tree.db')
        return conn
 
 def make_cursor():
@@ -835,13 +1170,3 @@ def make_cursor():
 def close(conn):
        conn.close
 
-#def main():
-
-#      [c, conn] = connect()   
-#
-#      person_info(1,c)
-#      person_info(17,c)
-#      person_info(38,c)
-#      person_info(90,c)
-#
-#      close(conn)