chiark / gitweb /
Added list by number of children; refarctored other list-by-count
[familyTree.git] / familyTree / askQuestion.py
index 841df2f2fc0d69f368e4b43b42bcf1744d089ae6..d0380d734cbf9bcc435130f860f536d2ba6b3deb 100755 (executable)
@@ -3,6 +3,8 @@
 import sqlite3
 import findYear
 from string import Template
+import cgi
+import re
 
 global link_Template 
 link_Template= Template(\
@@ -103,6 +105,8 @@ 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])
@@ -120,7 +124,7 @@ 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, title = add_quotes(row[0]), text = row[0])
                out = str(row[1])+print_people(row[1])
@@ -132,7 +136,7 @@ def print_age_child_count(row,newLine):
 
 def print_age_death_count(row,newLine):
        if newLine =='<br>':
-               script = "ageDeath.py?age="+str(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])
@@ -150,6 +154,34 @@ def print_name_count(row,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]
@@ -224,42 +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:
-                               if len(r[1])>0:
-                                       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
 
 
@@ -363,40 +366,100 @@ 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 start with ' + name + ':' + newLine
+       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 contain ' + name + ':' + newLine
+       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 contain ' + name + ':' + newLine
+       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
+        return [out,names,IDs]
 
 
 def people_with_name(name,newLine):
        s = "SELECT name, ID"\
        +" FROM people"\
-       +" WHERE firstname LIKE ?;"
+       +" WHERE firstname = ?;"
 
        out = ''
 
@@ -493,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"\
@@ -507,52 +571,45 @@ 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 "
        for row in run_query(t,id):
                out = out + name_html(row,newLine)+newLine
 
-       aDict={}
-       aDict[level] = ancestors
        while len(ancestors)>0:
                level = level+1
                newA =[]
                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]):
-                                       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
-               if len(ancestors)>0:
-                       aDict[level]=ancestors
                out  = out+thisout
 
 
        image = "<img src = ancestorGraph.py?id="+str(personID)+">"
        out = out+newLine + image+newLine
-       return [out, allAncestors,trackLevel,aDict]
+       return [out, allAncestors,trackLevel]
 
 
 def common_ancestors(IDA, IDB,newLine):
@@ -602,8 +659,6 @@ def common_ancestors(IDA, IDB,newLine):
                s = s+ "?,"
        if len(common)>0:
                s = s[:-1]
-
-
        s = s+") ORDER BY bornyear;"
 
 
@@ -645,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'
@@ -761,23 +809,155 @@ def rulers_of(aTerritory,newLine):
 
        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,)
 
+       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):
-               mainDiv = mainDiv + '<p>'
+               mainDiv = mainDiv + startP
                mainDiv = mainDiv  + 'ID: '+str(row[0]) +newLine
                mainDiv = mainDiv + print_tagged_name('Name',[row[1], row[0]]\
                        ,newLine)
-               mainDiv = mainDiv + '</p>'
+               mainDiv = mainDiv + endP
                name = row[1]
                url = row[9]
                picture = row[10]
 
-               mainDiv = mainDiv + '<p>'
+               mainDiv = mainDiv + startP
                mainDiv = mainDiv + newLine + 'Born: '+row[3] + newLine
                bornYear = row[4]
                mainDiv = mainDiv + 'Died: '+row[5]
@@ -785,12 +965,12 @@ def person_info(personID,newLine):
                if row[6] != 0 and row[4] !=0:
                        mainDiv = mainDiv + ", aged " \
                                +str(row[6]-row[4])
-               mainDiv = mainDiv + '</p>'
+               mainDiv = mainDiv + endP
 
 
        s = "SELECT * FROM styles WHERE ID = ?"
        for row in run_query(s,t):
-               mainDiv = mainDiv + '<p>'
+               mainDiv = mainDiv + startP
                mainDiv = mainDiv +newLine+ 'Style: '+row[1] + newLine
 
                mainDiv = mainDiv + 'Territories:' + newLine
@@ -811,12 +991,12 @@ def person_info(personID,newLine):
                mainDiv = mainDiv +  'From: '+row[2] + newLine
                 mainDiv = mainDiv +  'To: '+row[4]     
 
-               mainDiv = mainDiv + '</p>'
+               mainDiv = mainDiv + endP
 
 
 
 
-       mainDiv = mainDiv + '<p>'
+       mainDiv = mainDiv + startP
        s = "SELECT people.Name,consort "\
                +"FROM consorts LEFT JOIN people"\
                +" ON people.ID = consorts.consort"\
@@ -824,150 +1004,164 @@ def person_info(personID,newLine):
        for row in run_query(s,t):
                mainDiv = mainDiv + print_tagged_name\
                ('Consort of',row,newLine)
-       mainDiv = mainDiv + '</p>'
+       mainDiv = mainDiv + endP
 
        #find parents
-       mainDiv = mainDiv + '<p>'
-       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):
-               mainDiv = mainDiv + print_tagged_name('Parent',row,newLine)
-               if row[0]!=None:
-                       parents.append(row[0] + ', ' + row[1])
-               else:
-                       parents.append(row[1] + ', p' + personID)
-       mainDiv = mainDiv + '</p>'
+       [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
 
-       mainDiv = mainDiv + '<p>'
-       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]))
-               elif row[1]!='':
-                       spouses.append(row[1] + ', s' + personID) 
-                if row[1]!='':
-                       mainDiv = mainDiv + print_tagged_name('Spouse',row,newLine)
-                       mainDiv = mainDiv + 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)
-                mainDiv = mainDiv + print_tagged_name('Spouse',row,newLine)
-               mainDiv = mainDiv + relationship_html(personID,row[1],newLine)
-       mainDiv  = mainDiv + '</p>'
+       [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 =[]
-       top = ''
-       for row in run_query(s,t):
-               thisChild =  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 LEFT JOIN people"\
-                +" ON people.ID = parents.parentID"\
-                +" WHERE parents.ID = ? AND parents.parentID <>?;"
+       mainDiv = mainDiv + startP
+
+       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)
 
-               ids = (row[1],t[0])
+       mainDiv  = mainDiv + endP
 
-               op = 0
-               for r in run_query(u,ids):
-                       op = 1
-                       if r[0]!=None:
-                               ops.append(r[0] + ', ' + str(r[1]))
-                       else:
-                               ops.append(r[1] + ', s' + personID)
-               if op==0:
-                       ops.append('?' + ', s' + personID)
+       #find children
+       [nodes,IDs,names,childrenBorn] = \
+               find_children(personID)
 
-               if top!=ops[-1]:
-                       mainDiv = mainDiv + '</p>'
-                       mainDiv = mainDiv + '<p>'
-                       mainDiv = mainDiv + print_tagged_name('With',r, newLine)
+       top = ''
+       for i in range(len(nodes)):
+               cr = [names[i][0],IDs[i][0]]
+               thisChild = print_tagged_name('Child',cr,newLine)
 
+               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)
 
-               top = ops[-1]
 
                #age when child born
-               if row[2] !=0 and bornYear != 0:
-                       age = row[2]-bornYear
+               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
-       mainDiv = mainDiv + '</p>'
-
-       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>"
-
-       Self = name +', ' + str(personID)
-
-       graph =  "smallGraph.py?Self="+Self
-       for p in parents:
-               graph = graph + '&p='+p
-       for c in children:
-               graph = graph + '&c='+c
-       for op in ops:
-               if op !=None:
-                       graph = graph + '&op='+op
-       for s in spouses:
-               if s !=None:
-                       graph = graph + '&s='+str(s)
-
-       graph = graph.replace(' ','%20')
-       graph ="<img src ="+ graph + '>'
+       
+       mainDiv = mainDiv + endP
 
-       output = output + "<div id = 'graph' style = 'clear:both'>"
-       output = output +  graph
-       output = output + "</div>"
 
+       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():
@@ -976,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)