2009-11-23 03:58:30 +05:30
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
|
|
|
# Copyright (C) 2009 Douglas S. Blank <doug.blank@gmail.com>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
|
|
|
|
""" Django/Gramps utilities """
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
2009-12-21 03:56:45 +05:30
|
|
|
# Python Modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
import locale
|
2010-01-01 21:12:31 +05:30
|
|
|
import sys
|
2009-12-21 03:56:45 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Django Modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
from django.template import escape
|
|
|
|
from django.utils.safestring import mark_safe
|
|
|
|
from django.contrib.contenttypes.models import ContentType
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Gramps-Connect Modules
|
2009-11-23 03:58:30 +05:30
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2011-10-16 02:00:34 +05:30
|
|
|
import webapp.grampsdb.models as models
|
|
|
|
import webapp.grampsdb.forms as forms
|
|
|
|
from webapp import libdjango
|
|
|
|
from webapp.dbdjango import DbDjango
|
2009-12-21 03:56:45 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Gramps Modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2009-11-15 04:18:30 +05:30
|
|
|
from Simple import SimpleTable, SimpleAccess, make_basic_stylesheet
|
|
|
|
import Utils
|
|
|
|
import DbState
|
|
|
|
import DateHandler
|
|
|
|
from gen.lib.date import Date as GDate, Today
|
2009-12-21 03:56:45 +05:30
|
|
|
import gen.lib
|
2009-12-22 06:51:13 +05:30
|
|
|
from gen.utils import get_birth_or_fallback, get_death_or_fallback
|
2009-11-15 04:18:30 +05:30
|
|
|
from gen.plug import BasePluginManager
|
|
|
|
from cli.grampscli import CLIManager
|
|
|
|
|
2009-12-29 08:52:03 +05:30
|
|
|
_ = lambda msg: msg
|
|
|
|
|
2009-12-27 23:53:59 +05:30
|
|
|
util_filters = [
|
|
|
|
'nbsp',
|
2010-01-01 20:46:20 +05:30
|
|
|
'render_date',
|
|
|
|
'render_name',
|
2009-12-27 23:53:59 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
util_tags = [
|
2010-01-01 20:46:20 +05:30
|
|
|
'render',
|
2009-12-27 23:53:59 +05:30
|
|
|
"get_person_from_handle",
|
|
|
|
"event_table",
|
|
|
|
"name_table",
|
|
|
|
"source_table",
|
|
|
|
"note_table",
|
|
|
|
"attribute_table",
|
|
|
|
"address_table",
|
|
|
|
"gallery_table",
|
|
|
|
"internet_table",
|
|
|
|
"association_table",
|
|
|
|
"lds_table",
|
|
|
|
"reference_table",
|
|
|
|
"children_table",
|
|
|
|
"make_button",
|
|
|
|
]
|
|
|
|
|
2009-11-23 03:58:30 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
2009-12-26 11:10:32 +05:30
|
|
|
# Module Constants
|
2009-11-23 03:58:30 +05:30
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2009-11-15 04:18:30 +05:30
|
|
|
dji = libdjango.DjangoInterface()
|
|
|
|
_dd = DateHandler.displayer.display
|
|
|
|
_dp = DateHandler.parser.parse
|
|
|
|
|
|
|
|
def register_plugins():
|
|
|
|
dbstate = DbState.DbState()
|
|
|
|
climanager = CLIManager(dbstate, False) # don't load db
|
2010-08-08 18:46:23 +05:30
|
|
|
climanager.do_reg_plugins(dbstate, None)
|
2009-11-15 04:18:30 +05:30
|
|
|
pmgr = BasePluginManager.get_instance()
|
|
|
|
return pmgr
|
|
|
|
|
2009-12-27 23:53:59 +05:30
|
|
|
def get_person_from_handle(db, handle):
|
|
|
|
# db is a Gramps Db interface
|
|
|
|
# handle is a Person Handle
|
|
|
|
try:
|
|
|
|
return db.get_person_from_handle(handle)
|
|
|
|
except:
|
2010-01-01 21:12:31 +05:30
|
|
|
print >> sys.stderr, "error in get_person_from_handle:"
|
2009-12-29 08:52:03 +05:30
|
|
|
import sys, traceback
|
|
|
|
cla, exc, trbk = sys.exc_info()
|
2010-01-01 21:12:31 +05:30
|
|
|
print >> sys.stderr, _("Error") + (" : %s %s" %(cla, exc))
|
2009-12-29 08:52:03 +05:30
|
|
|
traceback.print_exc()
|
2009-12-27 23:53:59 +05:30
|
|
|
return None
|
|
|
|
|
2009-11-15 04:18:30 +05:30
|
|
|
def probably_alive(handle):
|
2009-12-29 08:52:03 +05:30
|
|
|
return False
|
2010-01-24 19:31:36 +05:30
|
|
|
db = DbDjango()
|
2009-12-06 10:39:43 +05:30
|
|
|
person = db.get_person_from_handle(handle)
|
|
|
|
return Utils.probably_alive(person, db)
|
2009-11-15 04:18:30 +05:30
|
|
|
|
2009-11-22 04:48:35 +05:30
|
|
|
def format_number(number, with_grouping=True):
|
|
|
|
# FIXME: should be user's setting
|
|
|
|
locale.setlocale(locale.LC_ALL, "en_US.utf8")
|
|
|
|
return locale.format("%d", number, with_grouping)
|
|
|
|
|
2009-12-06 23:05:51 +05:30
|
|
|
def nbsp(string):
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
if string:
|
2009-12-07 00:08:19 +05:30
|
|
|
return string
|
2009-12-06 23:05:51 +05:30
|
|
|
else:
|
|
|
|
return mark_safe(" ")
|
|
|
|
|
2009-11-15 04:18:30 +05:30
|
|
|
class Table(object):
|
|
|
|
"""
|
|
|
|
>>> table = Table()
|
|
|
|
>>> table.columns("Col1", "Col2", "Col3")
|
|
|
|
>>> table.row("1", "2", "3")
|
|
|
|
>>> table.row("4", "5", "6")
|
|
|
|
>>> table.get_html()
|
|
|
|
"""
|
|
|
|
def __init__(self):
|
2010-01-24 19:31:36 +05:30
|
|
|
self.db = DbDjango()
|
2009-11-15 04:18:30 +05:30
|
|
|
self.access = SimpleAccess(self.db)
|
|
|
|
self.table = SimpleTable(self.access)
|
|
|
|
class Doc(object):
|
|
|
|
def __init__(self, doc):
|
|
|
|
self.doc = doc
|
|
|
|
# None is paperstyle, which is ignored:
|
2009-11-23 07:09:29 +05:30
|
|
|
self.doc = Doc(HtmlDoc.HtmlDoc(make_basic_stylesheet(Table={"set_width":95}), None))
|
2009-11-15 04:18:30 +05:30
|
|
|
self.doc.doc._backend = HtmlBackend()
|
|
|
|
# You can set elements id, class, etc:
|
2011-10-13 06:59:46 +05:30
|
|
|
self.doc.doc.htmllist += [Html('div', class_="content", id="Gallery", style="overflow: auto; height:150px; background-color: #261803;")]
|
2009-11-15 04:18:30 +05:30
|
|
|
|
|
|
|
def columns(self, *args):
|
|
|
|
self.table.columns(*args)
|
|
|
|
|
|
|
|
def row(self, *args):
|
2010-01-22 00:12:53 +05:30
|
|
|
self.table.row(*map(nbsp, args))
|
2009-11-15 04:18:30 +05:30
|
|
|
|
2009-12-06 21:27:53 +05:30
|
|
|
def link(self, object_type_name, handle):
|
|
|
|
self.table.set_link_col((object_type_name, handle))
|
|
|
|
|
2009-12-17 05:34:22 +05:30
|
|
|
def links(self, links):
|
|
|
|
"""
|
|
|
|
A list of (object_type_name, handle) pairs, one per row.
|
|
|
|
"""
|
|
|
|
self.table.set_link_col(links)
|
|
|
|
|
2009-11-15 04:18:30 +05:30
|
|
|
def get_html(self):
|
2009-12-06 23:05:51 +05:30
|
|
|
# The HTML writer escapes data:
|
2009-11-15 04:18:30 +05:30
|
|
|
self.table.write(self.doc) # forces to htmllist
|
2009-12-06 23:05:51 +05:30
|
|
|
# We have a couple of HTML bits that we want to unescape:
|
|
|
|
return str(self.doc.doc.htmllist[0]).replace("&nbsp;", " ")
|
2009-11-15 04:18:30 +05:30
|
|
|
|
|
|
|
_ = lambda text: text
|
|
|
|
|
2009-12-27 23:53:59 +05:30
|
|
|
def make_button(text, url, *args):
|
|
|
|
url = url % args
|
|
|
|
return """[ <a href="%s">%s</a> ] """ % (url, text)
|
2009-12-20 07:27:17 +05:30
|
|
|
|
2009-12-27 23:53:59 +05:30
|
|
|
def event_table(obj, user, action, url=None, *args):
|
2009-12-20 07:27:17 +05:30
|
|
|
retval = ""
|
2009-11-15 04:18:30 +05:30
|
|
|
table = Table()
|
|
|
|
table.columns(_("Description"),
|
|
|
|
_("Type"),
|
|
|
|
_("ID"),
|
|
|
|
_("Date"),
|
|
|
|
_("Place"),
|
|
|
|
_("Role"))
|
2009-11-19 08:11:37 +05:30
|
|
|
if user.is_authenticated():
|
2009-12-27 23:53:59 +05:30
|
|
|
obj_type = ContentType.objects.get_for_model(obj)
|
2009-11-19 08:11:37 +05:30
|
|
|
event_ref_list = models.EventRef.objects.filter(
|
2009-12-27 23:53:59 +05:30
|
|
|
object_id=obj.id,
|
2009-11-19 08:11:37 +05:30
|
|
|
object_type=obj_type).order_by("order")
|
|
|
|
event_list = [(obj.ref_object, obj) for obj in event_ref_list]
|
|
|
|
for (djevent, event_ref) in event_list:
|
|
|
|
table.row(
|
|
|
|
djevent.description,
|
|
|
|
table.db.get_event_from_handle(djevent.handle),
|
|
|
|
djevent.gramps_id,
|
|
|
|
display_date(djevent),
|
|
|
|
get_title(djevent.place),
|
|
|
|
str(event_ref.role_type))
|
2009-12-20 07:27:17 +05:30
|
|
|
retval += table.get_html()
|
2010-01-01 20:46:20 +05:30
|
|
|
if user.is_authenticated() and url and action == "view":
|
2009-12-27 23:53:59 +05:30
|
|
|
retval += make_button(_("Add event"), (url + "/add") % args)
|
|
|
|
else:
|
|
|
|
retval += nbsp("") # to keep tabs same height
|
2009-12-20 07:27:17 +05:30
|
|
|
return retval
|
2009-11-15 04:18:30 +05:30
|
|
|
|
2009-12-27 23:53:59 +05:30
|
|
|
def name_table(obj, user, action, url=None, *args):
|
2009-12-20 07:27:17 +05:30
|
|
|
retval = ""
|
2009-11-16 04:17:43 +05:30
|
|
|
table = Table()
|
|
|
|
table.columns(_("Name"),
|
|
|
|
_("Type"),
|
|
|
|
_("Group As"),
|
|
|
|
_("Source"),
|
|
|
|
_("Note Preview"))
|
2009-11-19 08:11:37 +05:30
|
|
|
if user.is_authenticated():
|
2009-12-17 05:34:22 +05:30
|
|
|
links = []
|
2009-12-27 23:53:59 +05:30
|
|
|
for name in obj.name_set.all().order_by("order"):
|
2009-11-19 08:11:37 +05:30
|
|
|
obj_type = ContentType.objects.get_for_model(name)
|
|
|
|
sourceq = dji.SourceRef.filter(object_type=obj_type,
|
|
|
|
object_id=name.id).count() > 0
|
|
|
|
note_refs = dji.NoteRef.filter(object_type=obj_type,
|
|
|
|
object_id=name.id)
|
|
|
|
note = ""
|
|
|
|
if note_refs.count() > 0:
|
2009-12-20 07:27:17 +05:30
|
|
|
try:
|
|
|
|
note = dji.Note.get(id=note_refs[0].object_id).text[:50]
|
|
|
|
except:
|
|
|
|
note = None
|
2009-11-19 08:11:37 +05:30
|
|
|
table.row(make_name(name, user),
|
2010-01-01 20:46:20 +05:30
|
|
|
str(name.name_type) + ["", " (preferred)"][int(name.preferred)],
|
2009-11-19 08:11:37 +05:30
|
|
|
name.group_as,
|
|
|
|
["No", "Yes"][sourceq],
|
|
|
|
note)
|
2009-12-27 23:53:59 +05:30
|
|
|
links.append(('URL',
|
|
|
|
# url is "/person/%s/name"
|
|
|
|
(url % name.person.handle) + ("/%s" % name.order)))
|
2009-12-17 05:34:22 +05:30
|
|
|
table.links(links)
|
2009-12-20 07:27:17 +05:30
|
|
|
retval += table.get_html()
|
2010-01-01 20:46:20 +05:30
|
|
|
if user.is_authenticated() and url and action == "view":
|
2009-12-27 23:53:59 +05:30
|
|
|
retval += make_button(_("Add name"), (url + "/add") % args)
|
|
|
|
else:
|
|
|
|
retval += nbsp("") # to keep tabs same height
|
2009-12-20 07:27:17 +05:30
|
|
|
return retval
|
2009-11-16 04:17:43 +05:30
|
|
|
|
2009-12-26 11:10:32 +05:30
|
|
|
def source_table(obj, user, action, url=None, *args):
|
2009-12-20 07:27:17 +05:30
|
|
|
retval = ""
|
2009-11-16 04:17:43 +05:30
|
|
|
table = Table()
|
|
|
|
table.columns(_("ID"),
|
|
|
|
_("Title"),
|
|
|
|
_("Author"),
|
|
|
|
_("Page"))
|
2009-11-19 08:11:37 +05:30
|
|
|
if user.is_authenticated():
|
2009-12-26 11:10:32 +05:30
|
|
|
obj_type = ContentType.objects.get_for_model(obj)
|
2009-11-19 08:11:37 +05:30
|
|
|
source_refs = dji.SourceRef.filter(object_type=obj_type,
|
2009-12-26 11:10:32 +05:30
|
|
|
object_id=obj.id)
|
2009-11-19 08:11:37 +05:30
|
|
|
for source_ref in source_refs:
|
|
|
|
source = table.db.get_source_from_handle(source_ref.ref_object.handle)
|
|
|
|
table.row(source,
|
|
|
|
source_ref.ref_object.title,
|
|
|
|
source_ref.ref_object.author,
|
|
|
|
source_ref.page,
|
|
|
|
)
|
2009-12-20 07:27:17 +05:30
|
|
|
retval += table.get_html()
|
2010-01-01 20:46:20 +05:30
|
|
|
if user.is_authenticated() and url and action == "view":
|
2009-12-27 23:53:59 +05:30
|
|
|
retval += make_button(_("Add source"), (url + "/add") % args)
|
|
|
|
else:
|
|
|
|
retval += nbsp("") # to keep tabs same height
|
2009-12-20 07:27:17 +05:30
|
|
|
return retval
|
2009-11-16 04:17:43 +05:30
|
|
|
|
2009-12-27 23:53:59 +05:30
|
|
|
def note_table(obj, user, action, url=None, *args):
|
|
|
|
retval = ""
|
|
|
|
table = Table()
|
|
|
|
table.columns(
|
|
|
|
_("ID"),
|
|
|
|
_("Type"),
|
|
|
|
_("Note"))
|
|
|
|
if user.is_authenticated():
|
|
|
|
obj_type = ContentType.objects.get_for_model(obj)
|
|
|
|
note_refs = dji.NoteRef.filter(object_type=obj_type,
|
|
|
|
object_id=obj.id)
|
|
|
|
for note_ref in note_refs:
|
|
|
|
note = table.db.get_note_from_handle(
|
|
|
|
note_ref.ref_object.handle)
|
|
|
|
table.row(table.db.get_note_from_handle(note.handle),
|
|
|
|
str(note_ref.ref_object.note_type),
|
|
|
|
note_ref.ref_object.text[:50])
|
|
|
|
retval += table.get_html()
|
2010-01-01 20:46:20 +05:30
|
|
|
if user.is_authenticated() and url and action == "view":
|
2009-12-27 23:53:59 +05:30
|
|
|
retval += make_button(_("Add note"), (url + "/add") % args)
|
|
|
|
else:
|
|
|
|
retval += nbsp("") # to keep tabs same height
|
|
|
|
return retval
|
|
|
|
|
|
|
|
def attribute_table(obj, user, action, url=None, *args):
|
2009-12-20 07:27:17 +05:30
|
|
|
retval = ""
|
2009-11-16 04:17:43 +05:30
|
|
|
table = Table()
|
|
|
|
table.columns(_("Type"),
|
|
|
|
_("Value"),
|
|
|
|
)
|
2009-11-19 08:11:37 +05:30
|
|
|
if user.is_authenticated():
|
2009-12-27 23:53:59 +05:30
|
|
|
obj_type = ContentType.objects.get_for_model(obj)
|
2009-11-19 08:11:37 +05:30
|
|
|
attributes = dji.Attribute.filter(object_type=obj_type,
|
2009-12-27 23:53:59 +05:30
|
|
|
object_id=obj.id)
|
2009-11-19 08:11:37 +05:30
|
|
|
for attribute in attributes:
|
|
|
|
table.row(attribute.attribute_type.name,
|
|
|
|
attribute.value)
|
2009-12-20 07:27:17 +05:30
|
|
|
retval += table.get_html()
|
2010-01-01 20:46:20 +05:30
|
|
|
if user.is_authenticated() and url and action == "view":
|
2009-12-27 23:53:59 +05:30
|
|
|
retval += make_button(_("Add attribute"), (url + "/add") % args)
|
|
|
|
else:
|
|
|
|
retval += nbsp("") # to keep tabs same height
|
2009-12-20 07:27:17 +05:30
|
|
|
return retval
|
2009-11-16 04:17:43 +05:30
|
|
|
|
2009-12-27 23:53:59 +05:30
|
|
|
def address_table(obj, user, action, url=None, *args):
|
2009-12-20 07:27:17 +05:30
|
|
|
retval = ""
|
2009-11-16 04:17:43 +05:30
|
|
|
table = Table()
|
|
|
|
table.columns(_("Date"),
|
|
|
|
_("Address"),
|
|
|
|
_("City"),
|
|
|
|
_("State"),
|
|
|
|
_("Country"))
|
2009-11-19 08:11:37 +05:30
|
|
|
if user.is_authenticated():
|
2009-12-27 23:53:59 +05:30
|
|
|
for address in obj.address_set.all().order_by("order"):
|
2009-11-19 08:11:37 +05:30
|
|
|
locations = address.location_set.all().order_by("order")
|
|
|
|
for location in locations:
|
|
|
|
table.row(display_date(address),
|
|
|
|
location.street,
|
|
|
|
location.city,
|
|
|
|
location.state,
|
|
|
|
location.country)
|
2009-12-20 07:27:17 +05:30
|
|
|
retval += table.get_html()
|
2010-01-01 20:46:20 +05:30
|
|
|
if user.is_authenticated() and url and action == "view":
|
2009-12-27 23:53:59 +05:30
|
|
|
retval += make_button(_("Add address"), (url + "/add") % args)
|
|
|
|
else:
|
|
|
|
retval += nbsp("") # to keep tabs same height
|
2009-12-20 07:27:17 +05:30
|
|
|
return retval
|
2009-11-16 04:17:43 +05:30
|
|
|
|
2009-12-27 23:53:59 +05:30
|
|
|
def gallery_table(obj, user, action, url=None, *args):
|
2009-12-20 07:27:17 +05:30
|
|
|
retval = ""
|
2009-11-16 04:17:43 +05:30
|
|
|
table = Table()
|
|
|
|
table.columns(_("Name"),
|
|
|
|
_("Type"),
|
|
|
|
)
|
2009-12-20 07:27:17 +05:30
|
|
|
retval += table.get_html()
|
2010-01-01 20:46:20 +05:30
|
|
|
if user.is_authenticated() and url and action == "view":
|
2009-12-27 23:53:59 +05:30
|
|
|
retval += make_button(_("Add gallery"), (url + "/add") % args)
|
|
|
|
else:
|
|
|
|
retval += nbsp("") # to keep tabs same height
|
2009-12-20 07:27:17 +05:30
|
|
|
return retval
|
2009-11-16 04:17:43 +05:30
|
|
|
|
2009-12-27 23:53:59 +05:30
|
|
|
def internet_table(obj, user, action, url=None, *args):
|
2009-12-20 07:27:17 +05:30
|
|
|
retval = ""
|
2009-11-16 04:17:43 +05:30
|
|
|
table = Table()
|
|
|
|
table.columns(_("Type"),
|
|
|
|
_("Path"),
|
|
|
|
_("Description"))
|
2009-11-19 08:11:37 +05:30
|
|
|
if user.is_authenticated():
|
2009-12-27 23:53:59 +05:30
|
|
|
urls = dji.Url.filter(person=obj)
|
2009-12-29 08:52:03 +05:30
|
|
|
for url_obj in urls:
|
|
|
|
table.row(str(url_obj.url_type),
|
|
|
|
url_obj.path,
|
|
|
|
url_obj.desc)
|
2009-12-20 07:27:17 +05:30
|
|
|
retval += table.get_html()
|
2010-01-01 20:46:20 +05:30
|
|
|
if user.is_authenticated() and url and action == "view":
|
2009-12-29 08:52:03 +05:30
|
|
|
retval += make_button(_("Add internet"), ((str(url) % args) + "/add"))
|
2009-12-27 23:53:59 +05:30
|
|
|
else:
|
|
|
|
retval += nbsp("") # to keep tabs same height
|
2009-12-20 07:27:17 +05:30
|
|
|
return retval
|
2009-11-16 04:17:43 +05:30
|
|
|
|
2009-12-27 23:53:59 +05:30
|
|
|
def association_table(obj, user, action, url=None, *args):
|
2009-12-20 07:27:17 +05:30
|
|
|
retval = ""
|
2009-11-16 04:17:43 +05:30
|
|
|
table = Table()
|
|
|
|
table.columns(_("Name"),
|
|
|
|
_("ID"),
|
|
|
|
_("Association"))
|
2009-11-19 08:11:37 +05:30
|
|
|
if user.is_authenticated():
|
2009-12-27 23:53:59 +05:30
|
|
|
gperson = table.db.get_person_from_handle(obj.handle)
|
2010-01-01 20:46:20 +05:30
|
|
|
if gperson:
|
|
|
|
associations = gperson.get_person_ref_list()
|
|
|
|
for association in associations:
|
|
|
|
table.row()
|
2009-12-20 07:27:17 +05:30
|
|
|
retval += table.get_html()
|
2010-01-01 20:46:20 +05:30
|
|
|
if user.is_authenticated() and url and action == "view":
|
2009-12-27 23:53:59 +05:30
|
|
|
retval += make_button(_("Add association"), (url + "/add") % args)
|
|
|
|
else:
|
|
|
|
retval += nbsp("") # to keep tabs same height
|
2009-12-20 07:27:17 +05:30
|
|
|
return retval
|
2009-11-16 04:17:43 +05:30
|
|
|
|
2009-12-27 23:53:59 +05:30
|
|
|
def lds_table(obj, user, action, url=None, *args):
|
2009-12-20 07:27:17 +05:30
|
|
|
retval = ""
|
2009-11-16 04:17:43 +05:30
|
|
|
table = Table()
|
|
|
|
table.columns(_("Type"),
|
|
|
|
_("Date"),
|
|
|
|
_("Status"),
|
|
|
|
_("Temple"),
|
|
|
|
_("Place"))
|
2009-11-19 08:11:37 +05:30
|
|
|
if user.is_authenticated():
|
2009-12-27 23:53:59 +05:30
|
|
|
obj_type = ContentType.objects.get_for_model(obj)
|
|
|
|
ldss = obj.lds_set.all().order_by("order")
|
2009-11-19 08:11:37 +05:30
|
|
|
for lds in ldss:
|
|
|
|
table.row(str(lds.lds_type),
|
|
|
|
display_date(lds),
|
|
|
|
str(lds.status),
|
|
|
|
lds.temple,
|
|
|
|
get_title(lds.place))
|
2009-12-20 07:27:17 +05:30
|
|
|
retval += table.get_html()
|
2010-01-01 20:46:20 +05:30
|
|
|
if user.is_authenticated() and url and action == "view":
|
2009-12-27 23:53:59 +05:30
|
|
|
retval += make_button(_("Add LDS"), (url + "/add") % args)
|
|
|
|
else:
|
|
|
|
retval += nbsp("") # to keep tabs same height
|
2009-12-20 07:27:17 +05:30
|
|
|
return retval
|
2009-11-16 04:17:43 +05:30
|
|
|
|
2009-12-27 23:53:59 +05:30
|
|
|
def reference_table(obj, user, action, url=None, *args):
|
2009-12-20 07:27:17 +05:30
|
|
|
retval = ""
|
2009-11-16 04:17:43 +05:30
|
|
|
table = Table()
|
|
|
|
table.columns(_("Type"),
|
|
|
|
_("ID"),
|
|
|
|
_("Name"))
|
2009-11-19 08:11:37 +05:30
|
|
|
if user.is_authenticated():
|
2009-12-27 23:53:59 +05:30
|
|
|
references = dji.PersonRef.filter(ref_object=obj)
|
2009-11-19 08:11:37 +05:30
|
|
|
for reference in references:
|
|
|
|
table.row(str(reference.ref_object),
|
|
|
|
reference.ref_object.gramps_id,
|
|
|
|
make_name(reference.ref_object.name_set, user))
|
2009-12-27 23:53:59 +05:30
|
|
|
retval += table.get_html()
|
|
|
|
retval += nbsp("") # to keep tabs same height
|
|
|
|
return retval
|
2009-11-16 04:17:43 +05:30
|
|
|
|
2009-12-27 23:53:59 +05:30
|
|
|
def children_table(obj, user, action, url=None, *args):
|
2009-12-20 07:27:17 +05:30
|
|
|
retval = ""
|
2009-11-16 04:17:43 +05:30
|
|
|
table = Table()
|
2009-11-18 08:28:29 +05:30
|
|
|
table.columns(
|
|
|
|
_("#"),
|
|
|
|
_("ID"),
|
|
|
|
_("Name"),
|
|
|
|
_("Gender"),
|
|
|
|
_("Paternal"),
|
|
|
|
_("Maternal"),
|
|
|
|
_("Birth Date"),
|
|
|
|
)
|
2010-01-02 07:39:09 +05:30
|
|
|
|
|
|
|
family = obj
|
|
|
|
obj_type = ContentType.objects.get_for_model(family)
|
|
|
|
childrefs = dji.ChildRef.filter(object_id=family.id,
|
|
|
|
object_type=obj_type).order_by("order")
|
|
|
|
links = []
|
|
|
|
count = 1
|
|
|
|
for childref in childrefs:
|
|
|
|
child = childref.ref_object
|
|
|
|
if user.is_authenticated():
|
|
|
|
table.row(str(count),
|
|
|
|
"[%s]" % child.gramps_id,
|
|
|
|
render_name(child, user),
|
|
|
|
child.gender_type,
|
|
|
|
childref.father_rel_type,
|
|
|
|
childref.mother_rel_type,
|
|
|
|
render_date(child.birth, user),
|
|
|
|
)
|
|
|
|
links.append(('URL', ("/person/%s" % child.handle)))
|
|
|
|
else:
|
|
|
|
table.row(str(count),
|
|
|
|
"[%s]" % child.gramps_id,
|
|
|
|
render_name(child, user),
|
|
|
|
child.gender_type,
|
|
|
|
"[Private]",
|
|
|
|
"[Private]",
|
|
|
|
"[Private]",
|
|
|
|
)
|
|
|
|
links.append(('URL', ("/person/%s" % child.handle)))
|
|
|
|
count += 1
|
|
|
|
table.links(links)
|
|
|
|
retval += table.get_html()
|
2009-12-27 23:53:59 +05:30
|
|
|
retval += nbsp("") # to keep tabs same height
|
2010-01-02 07:39:09 +05:30
|
|
|
return retval
|
2009-11-16 04:17:43 +05:30
|
|
|
|
2009-11-15 04:18:30 +05:30
|
|
|
## FIXME: these dji function wrappers just use the functions
|
|
|
|
## written for the import/export. Can be done much more directly.
|
|
|
|
|
2009-11-15 05:18:55 +05:30
|
|
|
def get_title(place):
|
|
|
|
if place:
|
|
|
|
return place.title
|
|
|
|
else:
|
|
|
|
return ""
|
|
|
|
|
2009-11-15 04:18:30 +05:30
|
|
|
def person_get_birth_date(person):
|
2010-01-24 19:31:36 +05:30
|
|
|
#db = DbDjango()
|
2009-12-29 08:52:03 +05:30
|
|
|
#event = get_birth_or_fallback(db, db.get_person_from_handle(person.handle))
|
|
|
|
#if event:
|
|
|
|
# return event.date
|
2009-12-21 03:56:45 +05:30
|
|
|
return None
|
2009-11-15 04:18:30 +05:30
|
|
|
|
|
|
|
def person_get_death_date(person):
|
2010-01-24 19:31:36 +05:30
|
|
|
#db = DbDjango()
|
2009-12-29 08:52:03 +05:30
|
|
|
#event = get_death_or_fallback(db, db.get_person_from_handle(person.handle))
|
|
|
|
#if event:
|
|
|
|
# return event.date
|
2009-12-21 03:56:45 +05:30
|
|
|
return None
|
2009-11-15 04:18:30 +05:30
|
|
|
|
|
|
|
def display_date(obj):
|
|
|
|
date_tuple = dji.get_date(obj)
|
|
|
|
if date_tuple:
|
|
|
|
gdate = GDate()
|
|
|
|
gdate.unserialize(date_tuple)
|
2009-12-06 21:27:53 +05:30
|
|
|
return _dd(gdate)
|
2009-11-15 04:18:30 +05:30
|
|
|
else:
|
|
|
|
return ""
|
|
|
|
|
2010-01-01 20:46:20 +05:30
|
|
|
def render(formfield, user, action, test=False, truetext=""):
|
|
|
|
if not user.is_authenticated():
|
|
|
|
action = "view"
|
|
|
|
if action == "view":
|
|
|
|
if (not user.is_authenticated() and not test) or user.is_authenticated():
|
|
|
|
fieldname = formfield.name # 'surname'
|
|
|
|
retval = str(getattr(formfield.form.model, fieldname))
|
|
|
|
else:
|
|
|
|
retval = truetext
|
|
|
|
else:
|
|
|
|
retval = formfield.as_widget()
|
|
|
|
return retval
|
|
|
|
|
|
|
|
def render_name(name, user):
|
|
|
|
"""
|
|
|
|
Given a Django or Gramps object, render the name and return. This
|
|
|
|
function uses authentication, privacy and probably_alive settings.
|
|
|
|
"""
|
|
|
|
if isinstance(name, models.Name):
|
|
|
|
if not user.is_authenticated():
|
|
|
|
name.sanitize()
|
2011-02-19 08:06:20 +05:30
|
|
|
return "%s, %s" % (name.get_primary_surname(), name.first_name)
|
2010-01-01 20:46:20 +05:30
|
|
|
elif isinstance(name, forms.NameForm):
|
|
|
|
if not user.is_authenticated():
|
|
|
|
name.model.sanitize()
|
2011-02-19 08:06:20 +05:30
|
|
|
return "%s, %s" % (name.model.get_primary_surname(),
|
|
|
|
name.model.first_name)
|
2010-01-01 20:46:20 +05:30
|
|
|
elif isinstance(name, gen.lib.Person): # name is a gen.lib.Person
|
|
|
|
person = name
|
|
|
|
try:
|
|
|
|
name = person.get_primary_name()
|
|
|
|
except:
|
|
|
|
name = None
|
|
|
|
if name is None:
|
|
|
|
return "[No preferred name]"
|
|
|
|
if not user.is_authenticated():
|
|
|
|
name.sanitize()
|
2011-02-19 08:06:20 +05:30
|
|
|
return "%s, %s" % (name.get_primary_surname(), name.first_name)
|
2010-01-01 20:46:20 +05:30
|
|
|
elif isinstance(name, models.Person): # django person
|
|
|
|
person = name
|
|
|
|
try:
|
|
|
|
name = person.name_set.get(preferred=True)
|
|
|
|
except:
|
|
|
|
return "Error"
|
|
|
|
return render_name(name, user)
|
|
|
|
else: # no name object
|
|
|
|
return "[No preferred name]"
|
|
|
|
|
|
|
|
def make_name(name, user):
|
|
|
|
return render_name(name, user)
|
|
|
|
|
|
|
|
def render_date(obj, user):
|
|
|
|
"""
|
|
|
|
Given a Django object, render the date as text and return. This
|
|
|
|
function uses authentication settings.
|
|
|
|
"""
|
|
|
|
if (user.is_authenticated() or
|
|
|
|
(not user.is_authenticated() and obj and not obj.private)):
|
|
|
|
if obj:
|
|
|
|
date_tuple = dji.get_date(obj)
|
|
|
|
if date_tuple:
|
|
|
|
gdate = GDate().unserialize(date_tuple)
|
|
|
|
return _dd(gdate)
|
|
|
|
return ""
|
|
|
|
return "[Private]"
|
|
|
|
|
2009-11-15 04:18:30 +05:30
|
|
|
def person_get_event(person, event_type=None):
|
|
|
|
event_ref_list = dji.get_event_ref_list(person)
|
|
|
|
if event_type:
|
|
|
|
index = libdjango.lookup_role_index(event_type, event_ref_list)
|
|
|
|
if index >= 0:
|
|
|
|
event_handle = event_ref_list[index][3]
|
|
|
|
# (False, [], [], u'b2cfa6cdec87392cf3b', (1, u'Primary'))
|
|
|
|
# WARNING: the same object can be referred to more than once
|
|
|
|
objs = models.EventRef.objects.filter(ref_object__handle=event_handle)
|
|
|
|
if objs.count() > 0:
|
|
|
|
return display_date(objs[0].ref_object)
|
|
|
|
else:
|
|
|
|
return ""
|
|
|
|
else:
|
|
|
|
return ""
|
|
|
|
else:
|
|
|
|
retval = [[obj.ref_object for obj in
|
|
|
|
models.EventRef.objects.filter(ref_object__handle=event_handle[3])]
|
|
|
|
for event_handle in event_ref_list]
|
|
|
|
return [j for i in retval for j in i]
|
|
|
|
|
|
|
|
register_plugins()
|
|
|
|
|
|
|
|
# works after registering plugins:
|
|
|
|
import HtmlDoc
|
|
|
|
from libhtmlbackend import HtmlBackend
|
|
|
|
from libhtml import Html
|
2011-10-16 01:42:11 +05:30
|
|
|
|