From 064311fc732b79eddb1d732bb2ebef3416a1085a Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Wed, 16 Feb 2005 05:41:33 +0000 Subject: [PATCH] * src/AddMedia.py: handle "note only" media object * src/DisplayModels.py: handle media type of None * src/ImageSelect.py: Add "internal note" check box * src/MediaView.py: handle media type of None * src/NoteEdit.py: use glade definition * src/gramps.glade: add note editor * src/plubins/NavWebPage.py: Add default pages svn: r4035 --- gramps2/ChangeLog | 9 + gramps2/src/AddMedia.py | 44 +- gramps2/src/DisplayModels.py | 5 +- gramps2/src/EditPerson.py | 4 +- gramps2/src/ImageSelect.py | 31 +- gramps2/src/MediaView.py | 49 +- gramps2/src/NoteEdit.py | 44 +- gramps2/src/gramps.glade | 2765 ++++++++++++++++++++++++++++- gramps2/src/plugins/NavWebPage.py | 58 +- 9 files changed, 2914 insertions(+), 95 deletions(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 95b7bb218..934b94432 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,12 @@ +2005-02-15 Don Allingham + * src/AddMedia.py: handle "note only" media object + * src/DisplayModels.py: handle media type of None + * src/ImageSelect.py: Add "internal note" check box + * src/MediaView.py: handle media type of None + * src/NoteEdit.py: use glade definition + * src/gramps.glade: add note editor + * src/plubins/NavWebPage.py: Add default pages + 2005-02-15 Alex Roitman * doc/gramps-manual/C/authors.xml: Add list of contributors. * doc/gramps-manual/C/getstart.xml: Update. diff --git a/gramps2/src/AddMedia.py b/gramps2/src/AddMedia.py index a613f880b..1155f2703 100644 --- a/gramps2/src/AddMedia.py +++ b/gramps2/src/AddMedia.py @@ -83,6 +83,8 @@ class AddMediaObject: self.description = self.glade.get_widget("photoDescription") self.image = self.glade.get_widget("image") self.file_text = self.glade.get_widget("fname") + self.internal = self.glade.get_widget('internal') + self.internal.connect('toggled',self.internal_toggled) self.update = update self.temp_name = "" self.object = None @@ -97,6 +99,9 @@ class AddMediaObject: self.window.show() + def internal_toggled(self, obj): + self.file_text.set_sensitive(not obj.get_active()) + def on_help_imagesel_clicked(self,obj): """Display the relevant portion of GRAMPS manual""" gnome.help_display('gramps-manual','gramps-edit-quick') @@ -107,29 +112,36 @@ class AddMediaObject: Callback function called with the save button is pressed. A new media object is created, and added to the database. """ - filename = self.file_text.get_filename() + description = unicode(self.description.get_text()) + + if self.internal.get_active(): + import NoteEdit + + mobj = RelLib.MediaObject() + mobj.set_description(description) + mobj.set_mime_type(None) + else: + filename = self.file_text.get_filename() - if os.path.exists(filename) == 0: - msgstr = _("Cannot import %s") - msgstr2 = _("The filename supplied could not be found.") - ErrorDialog(msgstr % filename, msgstr2) - return + if os.path.exists(filename) == 0: + msgstr = _("Cannot import %s") + msgstr2 = _("The filename supplied could not be found.") + ErrorDialog(msgstr % filename, msgstr2) + return - mtype = GrampsMime.get_type(filename) - if description == "": - description = os.path.basename(filename) + mtype = GrampsMime.get_type(filename) + if description == "": + description = os.path.basename(filename) - mobj = RelLib.MediaObject() - mobj.set_description(description) - mobj.set_mime_type(mtype) + mobj = RelLib.MediaObject() + mobj.set_description(description) + mobj.set_mime_type(mtype) + name = filename + mobj.set_path(name) trans = self.db.transaction_begin() self.db.add_object(mobj,trans) - - name = filename - mobj.set_path(name) - self.object = mobj self.db.commit_media_object(mobj,trans) self.db.transaction_commit(trans,_("Add Media Object")) diff --git a/gramps2/src/DisplayModels.py b/gramps2/src/DisplayModels.py index cedea545d..9ef4d4724 100644 --- a/gramps2/src/DisplayModels.py +++ b/gramps2/src/DisplayModels.py @@ -395,7 +395,10 @@ class MediaModel(BaseModel): return unicode(data[2]) def column_mime(self,data): - return unicode(data[3]) + if data[3]: + return unicode(data[3]) + else: + return _('Note') def column_id(self,data): return unicode(data[1]) diff --git a/gramps2/src/EditPerson.py b/gramps2/src/EditPerson.py index b75547aec..4fc8cad42 100644 --- a/gramps2/src/EditPerson.py +++ b/gramps2/src/EditPerson.py @@ -479,7 +479,9 @@ class EditPerson: ph = media_list[0] object_handle = ph.get_reference_handle() obj = self.db.get_object_from_handle(object_handle) - ImageSelect.LocalMediaProperties(ph,obj.get_path(),self,self.window) + ImageSelect.LocalMediaProperties(ph,obj.get_path(), + self,self.window) + elif event.type == gtk.gdk.BUTTON_PRESS and event.button == 3: media_list = self.person.get_media_list() if media_list: diff --git a/gramps2/src/ImageSelect.py b/gramps2/src/ImageSelect.py index c19ca93e5..afde5d133 100644 --- a/gramps2/src/ImageSelect.py +++ b/gramps2/src/ImageSelect.py @@ -112,7 +112,9 @@ class ImageSelect: self.fname = self.glade.get_widget("fname") self.image = self.glade.get_widget("image") self.description = self.glade.get_widget("photoDescription") + self.internal = self.glade.get_widget('internal') self.temp_name = "" + self.internal.hide() Utils.set_titles(self.window,self.glade.get_widget('title'), _('Select a media object')) @@ -122,6 +124,8 @@ class ImageSelect: "on_help_imagesel_clicked" : self.on_help_imagesel_clicked, }) + self.internal.connect('toggled',self.internal_toggled) + if os.path.isdir(_last_path): self.fname.set_current_folder(_last_path) @@ -953,24 +957,29 @@ class GlobalMediaProperties: else: self.srcreflist = [] - self.sourcetab = Sources.SourceTab(self.srcreflist,self, - self.change_dialog, - self.window, self.slist, - self.change_dialog.get_widget('gl_add_src'), - self.change_dialog.get_widget('gl_edit_src'), - self.change_dialog.get_widget('gl_del_src')) - + self.sourcetab = Sources.SourceTab( + self.srcreflist,self, + self.change_dialog, + self.window, self.slist, + self.change_dialog.get_widget('gl_add_src'), + self.change_dialog.get_widget('gl_edit_src'), + self.change_dialog.get_widget('gl_del_src')) + self.descr_window.set_text(self.obj.get_description()) mtype = self.obj.get_mime_type() - pb = ImgManip.get_thumbnail_image(self.obj.get_path()) - self.pixmap.set_from_pixbuf(pb) + if mtype: + pb = ImgManip.get_thumbnail_image(self.obj.get_path()) + self.pixmap.set_from_pixbuf(pb) + descr = Utils.get_mime_description(mtype) + self.change_dialog.get_widget("type").set_text(descr) + else: + self.change_dialog.get_widget("type").set_text(_('Note')) + self.pixmap.hide() self.change_dialog.get_widget("gid").set_text(self.obj.get_gramps_id()) - self.makelocal = self.change_dialog.get_widget("makelocal") self.update_info() - self.change_dialog.get_widget("type").set_text(Utils.get_mime_description(mtype)) if self.obj.get_note(): self.notes.get_buffer().set_text(self.obj.get_note()) Utils.bold_label(self.notes_label) diff --git a/gramps2/src/MediaView.py b/gramps2/src/MediaView.py index 9ff3d1cf9..b19ca4d3d 100644 --- a/gramps2/src/MediaView.py +++ b/gramps2/src/MediaView.py @@ -181,23 +181,28 @@ class MediaView: mobj = self.db.get_object_from_handle(handle) mtype = mobj.get_mime_type() path = mobj.get_path() - type_name = Utils.get_mime_description(mtype) - image = ImgManip.get_thumbnail_image(path) - if image != None: - self.preview.set_from_pixbuf(image) + if mtype: + type_name = Utils.get_mime_description(mtype) + image = ImgManip.get_thumbnail_image(path) + if image != None: + self.preview.set_from_pixbuf(image) + else: + icon = Utils.find_icon(mtype) + icon_image = gtk.gdk.pixbuf_new_from_file(icon) + self.preview.set_from_pixbuf(icon_image) else: - icon_image = gtk.gdk.pixbuf_new_from_file(Utils.find_icon(mtype)) + icon = Utils.find_icon('text/plain') + icon_image = gtk.gdk.pixbuf_new_from_file(icon) self.preview.set_from_pixbuf(icon_image) + type_name = _('Note') self.mid.set_text(mobj.get_gramps_id()) self.mtype.set_text(type_name) self.mdesc.set_text(mobj.get_description()) if len(path) == 0 or fexists == 0: self.mpath.set_text(_("The file no longer exists")) - elif path[0] == "/": - self.mpath.set_text(path) else: - self.mpath.set_text(_("")) + self.mpath.set_text(path) self.mdetails.set_text(Utils.get_detail_text(mobj,0)) def on_button_press_event(self,obj,event): @@ -230,7 +235,7 @@ class MediaView: Utils.add_menuitem(menu,_("View in the default viewer"),None, self.popup_view_photo) - if mime_type[0:5] == "image": + if mime_type and mime_type[0:5] == "image": Utils.add_menuitem(menu,_("Edit with the GIMP"), None,self.popup_edit_photo) item = gtk.MenuItem() @@ -263,9 +268,8 @@ class MediaView: os.execvp(const.editor,[const.editor, self.obj.get_path()]) def popup_change_description(self, obj): - ImageSelect.GlobalMediaProperties(self.db,self.obj, - self.update_display, - self,self.topWindow) + ImageSelect.GlobalMediaProperties( + self.db, self.obj, self.update_display, self,self.topWindow) def on_add_clicked(self,obj): """Add a new media object to the media list""" @@ -289,9 +293,19 @@ class MediaView: if node: handle = list_store.get_value(node,_HANDLE_COL) obj = self.db.get_object_from_handle(handle) - ImageSelect.GlobalMediaProperties(self.db,obj, - self.update_display, - self,self.topWindow) + if obj.get_mime_type(): + ImageSelect.GlobalMediaProperties( + self.db,obj, self.update_display, + self,self.topWindow) + else: + import NoteEdit + NoteEdit.NoteEditor(obj,self.parent,self.topWindow, + self.note_callback) + + def note_callback(self,data): + trans = self.db.transaction_begin() + self.db.commit_media_object(data,trans) + self.db.transaction_commit(trans,_("Edit Media Object")) def on_delete_clicked(self,obj): store,node = self.selection.get_selected() @@ -357,8 +371,9 @@ class MediaView: if (const.dnd_images): handle = store.get_value(node,_HANDLE_COL) obj = self.db.get_object_from_handle(handle) - image = ImgManip.get_thumbnail_image(obj.get_path()) - context.set_icon_pixbuf(image,0,0) + if obj.get_path(): + image = ImgManip.get_thumbnail_image(obj.get_path()) + context.set_icon_pixbuf(image,0,0) def on_drag_data_get(self, w, context, selection_data, info, time): if info == 1: diff --git a/gramps2/src/NoteEdit.py b/gramps2/src/NoteEdit.py index 7d8e00915..f043878b4 100644 --- a/gramps2/src/NoteEdit.py +++ b/gramps2/src/NoteEdit.py @@ -26,6 +26,7 @@ # #------------------------------------------------------------------------- import gtk +import gtk.glade #------------------------------------------------------------------------- # @@ -33,6 +34,8 @@ import gtk # #------------------------------------------------------------------------- from gettext import gettext as _ +import const +import Utils #------------------------------------------------------------------------- # @@ -41,9 +44,10 @@ from gettext import gettext as _ #------------------------------------------------------------------------- class NoteEditor: """Displays a simple text editor that allows a person to edit a note""" - def __init__(self,data,parent,parent_window=None): + def __init__(self,data,parent,parent_window=None,callback=None): self.parent = parent + self.callback = callback if data: if self.parent.child_windows.has_key(data): self.parent.child_windows[data].present(None) @@ -54,45 +58,36 @@ class NoteEditor: self.win_key = self self.data = data self.parent_window = parent_window + self.glade = gtk.glade.XML(const.gladeFile,"note_edit") self.draw() def draw(self): """Displays the NoteEditor window""" title = "%s - GRAMPS" % _("Edit Note") - self.top = gtk.Dialog(title) - self.top.set_default_size(450,300) - - vbox = gtk.VBox() - self.top.vbox.pack_start(vbox,gtk.TRUE,gtk.TRUE,0) - label = gtk.Label('%s' % _('Edit Note')) - label.set_use_markup(gtk.TRUE) - vbox.pack_start(label, gtk.FALSE, gtk.FALSE, 10) + self.top = self.glade.get_widget('note_edit') + alt_title = self.glade.get_widget('title_msg') + Utils.set_titles(self.top, alt_title, _('Note Editor')) - self.entry = gtk.TextView() + if self.callback: + self.title_entry = self.glade.get_widget('title') + self.title_entry.set_text(self.data.get_description()) + else: + self.glade.get_widget('tbox').hide() + + self.entry = self.glade.get_widget('note') self.entry.set_editable(gtk.TRUE) - self.entry.show() - - scroll = gtk.ScrolledWindow() - scroll.add(self.entry) - scroll.set_policy (gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC) - scroll.set_shadow_type(gtk.SHADOW_IN) - scroll.show() - vbox.pack_start(scroll, gtk.TRUE, gtk.TRUE, 0) - self.entry.get_buffer().set_text(self.data.get_note()) - cancel_button = self.top.add_button(gtk.STOCK_CANCEL,1) - ok_button = self.top.add_button(gtk.STOCK_OK,0) + cancel_button = self.glade.get_widget('cancel') + ok_button = self.glade.get_widget('ok') cancel_button.connect("clicked",self.close) ok_button.connect("clicked",self.on_save_note_clicked) self.top.connect("delete_event",self.on_delete_event) - self.top.show_all() if self.parent_window: self.top.set_transient_for(self.parent_window) self.add_itself_to_menu() - self.top.show() def on_delete_event(self,*obj): self.remove_itself_from_menu() @@ -122,4 +117,7 @@ class NoteEditor: tbuffer.get_end_iter(),gtk.FALSE)) if text != self.data.get_note(): self.data.set_note(text) + if self.callback: + self.data.set_description(self.title_entry.get_text()) + self.callback(self.data) self.close(obj) diff --git a/gramps2/src/gramps.glade b/gramps2/src/gramps.glade index 9fbb8fed7..ed511bdb8 100644 --- a/gramps2/src/gramps.glade +++ b/gramps2/src/gramps.glade @@ -19,6 +19,7 @@ False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True True @@ -1017,6 +1018,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1065,6 +1070,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1113,6 +1122,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1161,6 +1174,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1209,6 +1226,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1257,6 +1278,10 @@ 0 0 views + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1302,6 +1327,8 @@ True + False + True 0 @@ -1371,6 +1398,9 @@ False False True + False + False + False @@ -1400,6 +1430,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -1688,6 +1722,9 @@ True False True + False + False + False @@ -1811,6 +1848,10 @@ 0 0 chlist + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1836,6 +1877,10 @@ 0 0 ap_data + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1861,6 +1906,10 @@ 0 0 ap_parents + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -1886,6 +1935,10 @@ 0 0 sp_list + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1911,6 +1964,10 @@ 0 0 sp_parents + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -1940,6 +1997,9 @@ True True True + False + False + False @@ -1970,6 +2030,9 @@ True False True + False + False + False @@ -2000,6 +2063,9 @@ True False True + False + False + False @@ -2030,6 +2096,9 @@ True True True + False + False + False @@ -2185,6 +2254,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -2219,6 +2292,9 @@ True True True + False + False + False @@ -2245,6 +2321,10 @@ 0 0 chlist2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2274,6 +2354,9 @@ True True True + False + False + False @@ -2304,6 +2387,9 @@ True False True + False + False + False @@ -2334,6 +2420,9 @@ True False True + False + False + False @@ -2364,6 +2453,9 @@ True False True + False + False + False @@ -2514,6 +2606,10 @@ 0 0 sp_parents2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -2636,6 +2732,10 @@ 0 0 sp_list2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -2758,6 +2858,10 @@ 0 0 ap_data2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2783,6 +2887,10 @@ 0 0 ap_parents2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2940,6 +3048,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -2987,6 +3099,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3016,6 +3132,9 @@ True False True + False + False + False @@ -3045,6 +3164,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3074,6 +3197,9 @@ True False True + False + False + False @@ -3103,6 +3229,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3154,6 +3284,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -3190,6 +3324,10 @@ 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3215,6 +3353,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3238,6 +3380,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3261,6 +3407,10 @@ 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3286,6 +3436,10 @@ 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3311,6 +3465,10 @@ 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3336,6 +3494,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3359,6 +3521,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3382,6 +3548,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3405,6 +3575,10 @@ 0 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3430,6 +3604,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3473,6 +3651,9 @@ True False True + False + False + False @@ -3502,6 +3683,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -3554,6 +3739,7 @@ False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -3630,6 +3816,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -3668,6 +3858,9 @@ False False True + False + False + False @@ -3775,6 +3968,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3800,6 +3997,10 @@ 0.5 5 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -3819,6 +4020,8 @@ Unmarried Civil Union Unknown Other + False + True 1 @@ -3877,6 +4080,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -3961,6 +4165,10 @@ Other 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3999,6 +4207,10 @@ Other 0 0 frel + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4027,6 +4239,10 @@ Other 0 0 mrel + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4054,6 +4270,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -4079,6 +4299,10 @@ Other 0 0 father_list + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4174,6 +4398,10 @@ Other 0 0 mother_list + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4198,6 +4426,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4227,6 +4459,9 @@ Other True False True + False + False + False @@ -4256,6 +4491,9 @@ Other True False True + False + False + False @@ -4357,6 +4595,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4379,6 +4621,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4401,6 +4647,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4423,6 +4673,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4445,6 +4699,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4467,6 +4725,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4489,6 +4751,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4550,6 +4816,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4572,6 +4842,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4594,6 +4868,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4616,6 +4894,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4638,6 +4920,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4660,6 +4946,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4682,6 +4972,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4706,6 +5000,8 @@ Unmarried Civil Union Uknown Other + False + True @@ -4758,6 +5054,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -4842,6 +5139,10 @@ Other 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4887,6 +5188,9 @@ Other True False True + False + False + False @@ -5024,6 +5328,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5046,6 +5354,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5068,6 +5380,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5090,6 +5406,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5112,6 +5432,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5134,6 +5458,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5204,6 +5532,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5226,6 +5558,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5248,6 +5584,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5270,6 +5610,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5292,6 +5636,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5314,6 +5662,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5345,6 +5697,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5370,6 +5726,10 @@ Other 0 0 frel + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5407,6 +5767,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -5493,6 +5854,10 @@ Other 0.5 0 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5537,6 +5902,10 @@ Other 0 0 source_title + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5562,6 +5931,10 @@ Other 0 0 author + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -5633,6 +6006,10 @@ Other 0 0 pubinfo + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5700,6 +6077,10 @@ Other 0 0 abbrev + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5730,6 +6111,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5800,6 +6185,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5884,6 +6273,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -5914,6 +6307,9 @@ Other True False True + False + False + False @@ -6013,6 +6409,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -6226,6 +6626,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -6249,6 +6653,9 @@ Other False False True + False + False + False @@ -6271,6 +6678,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -6310,6 +6721,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -6395,6 +6807,10 @@ Other 0.5 10 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6468,6 +6884,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -6549,6 +6966,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -6586,6 +7007,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6610,6 +7035,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -6634,6 +7063,10 @@ Other 0 0 frel + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6693,6 +7126,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6715,6 +7152,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6737,6 +7178,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6759,6 +7204,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6781,6 +7230,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6803,6 +7256,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6825,6 +7282,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6854,6 +7315,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6879,6 +7344,10 @@ Other 0 0 mrel + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Relationship: @@ -6939,6 +7408,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6961,6 +7434,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6983,6 +7460,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7005,6 +7486,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7027,6 +7512,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7049,6 +7538,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7071,6 +7564,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7100,6 +7597,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -7124,6 +7625,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7148,6 +7653,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7171,6 +7680,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7242,6 +7755,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -7332,6 +7846,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7367,6 +7885,10 @@ Other 0 0 entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -7424,6 +7946,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -7501,6 +8024,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -7564,6 +8091,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7586,6 +8117,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7608,6 +8143,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7630,6 +8169,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7652,6 +8195,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7674,6 +8221,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7735,6 +8286,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7757,6 +8312,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7779,6 +8338,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7801,6 +8364,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7823,6 +8390,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7845,6 +8416,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7874,6 +8449,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7899,6 +8478,10 @@ Other 0 0 frel + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7934,6 +8517,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -8010,6 +8594,9 @@ Other False True True + False + False + False @@ -8034,6 +8621,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8069,6 +8660,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -8149,6 +8741,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -8207,6 +8803,10 @@ Other 0 0 givenName + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8232,6 +8832,10 @@ Other 0 0 surname + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8257,6 +8861,10 @@ Other 0 0 prefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8282,6 +8890,10 @@ Other 0 0 suffix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8307,6 +8919,10 @@ Other 0 0 title + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8332,6 +8948,10 @@ Other 0 0 nickname + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8356,6 +8976,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8381,6 +9005,10 @@ Other 0 0 birthDate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8471,6 +9099,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8573,6 +9205,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8598,6 +9234,10 @@ Other 0 0 gid + PANGO_ELLIPSIZE_NONE + -1 + False + 0 7 @@ -8644,6 +9284,10 @@ Other 0 0 birth_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -8668,6 +9312,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -8693,6 +9341,10 @@ Other 0 0 deathDate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Date: @@ -8721,6 +9373,10 @@ Other 0 0 death_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 7 @@ -8777,6 +9433,9 @@ Other True + False + True + True 2 @@ -8830,6 +9489,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8855,6 +9518,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9074,6 +9741,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9097,6 +9768,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -9236,6 +9911,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -9287,6 +9966,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -9328,6 +10011,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9352,6 +10039,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9376,6 +10067,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9400,6 +10095,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9424,6 +10123,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9448,6 +10151,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -9472,6 +10179,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9496,6 +10207,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -9520,6 +10235,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9544,6 +10263,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9568,6 +10291,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9591,6 +10318,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9614,6 +10345,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9637,6 +10372,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -9660,6 +10399,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9683,6 +10426,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9706,6 +10453,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9729,6 +10480,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9791,6 +10546,9 @@ Other False False True + False + False + False @@ -9929,6 +10687,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -9970,6 +10732,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9994,6 +10760,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10018,6 +10788,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10042,6 +10816,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10066,6 +10844,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10090,6 +10872,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10114,6 +10900,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10138,6 +10928,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10162,6 +10956,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -10186,6 +10984,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10210,6 +11012,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10234,6 +11040,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10258,6 +11068,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10282,6 +11096,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10305,6 +11123,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10328,6 +11150,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -10370,6 +11196,9 @@ Other False True True + False + False + False @@ -10515,6 +11344,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10556,6 +11389,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10580,6 +11417,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10604,6 +11445,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10628,6 +11473,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10652,6 +11501,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -10676,6 +11529,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -10700,6 +11557,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10724,6 +11585,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10747,6 +11612,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -10770,6 +11639,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -10812,6 +11685,9 @@ Other False False True + False + False + False @@ -10957,6 +11833,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -10992,6 +11872,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11016,6 +11900,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11040,6 +11928,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11064,6 +11956,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11088,6 +11984,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11112,6 +12012,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -11136,6 +12040,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -11160,6 +12068,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -11184,6 +12096,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11208,6 +12124,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11232,6 +12152,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -11256,6 +12180,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -11280,6 +12208,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -11304,6 +12236,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -11328,6 +12264,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -11351,6 +12291,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -11374,6 +12318,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -11398,6 +12346,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -11422,6 +12374,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -11446,6 +12402,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -11520,6 +12480,9 @@ Other False False True + False + False + False @@ -11665,6 +12628,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -11738,6 +12705,10 @@ Other 0 0 flowed + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11822,6 +12793,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -11851,6 +12826,9 @@ Other False False True + False + False + False @@ -11977,6 +12955,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -12175,6 +13157,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -12210,6 +13196,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12234,6 +13224,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12258,6 +13252,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12282,6 +13280,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -12305,6 +13307,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12347,6 +13353,9 @@ Other False False True + False + False + False @@ -12513,6 +13522,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -12542,6 +13555,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12588,6 +13605,10 @@ Other 0 0 ldsbapdate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -12615,6 +13636,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Temple: @@ -12663,6 +13688,10 @@ Other 0 0 lds_bap_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -12731,6 +13760,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12756,6 +13789,10 @@ Other 0 0 endowdate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Date: @@ -12784,6 +13821,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -12809,6 +13850,10 @@ Other 0 0 lds_end_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -12919,6 +13964,10 @@ Other 0 0 sealdate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -12967,6 +14016,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13012,6 +14065,10 @@ Other 0 0 lds_seal_place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -13081,6 +14138,10 @@ Other 0 0 sealparents + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13105,6 +14166,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13119,6 +14184,9 @@ Other True + False + True + True 2 @@ -13133,6 +14201,9 @@ Other True + False + True + True 2 @@ -13147,6 +14218,9 @@ Other True + False + True + True 2 @@ -13161,6 +14235,8 @@ Other True + False + True 3 @@ -13175,6 +14251,8 @@ Other True + False + True 3 @@ -13189,6 +14267,8 @@ Other True + False + True 3 @@ -13203,6 +14283,8 @@ Other True + False + True 2 @@ -13232,6 +14314,10 @@ Other 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13263,6 +14349,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -13350,6 +14437,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13398,6 +14489,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13423,6 +14518,10 @@ Other 0 0 gid + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -13462,6 +14561,8 @@ Other True + False + True 1 @@ -13486,6 +14587,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13510,6 +14615,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13569,6 +14678,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13604,6 +14717,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13628,6 +14745,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13652,6 +14773,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13676,6 +14801,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13700,6 +14829,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13724,6 +14857,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13748,6 +14885,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -13772,6 +14913,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -13795,6 +14940,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13819,6 +14968,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13843,6 +14996,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -13866,6 +15023,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -13889,6 +15050,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -13913,6 +15078,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -13937,6 +15106,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -13960,6 +15133,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14001,6 +15178,9 @@ Other False False True + False + False + False @@ -14136,6 +15316,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -14171,6 +15355,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14195,6 +15383,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -14219,6 +15411,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14243,6 +15439,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -14267,6 +15467,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14291,6 +15495,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14315,6 +15523,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14339,6 +15551,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14362,6 +15578,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -14385,6 +15605,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -14426,6 +15650,9 @@ Other False False True + False + False + False @@ -14561,6 +15788,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -14631,6 +15862,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14715,6 +15950,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -14744,6 +15983,9 @@ Other False False True + False + False + False @@ -14867,6 +16109,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15052,6 +16298,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15087,6 +16337,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -15111,6 +16365,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15135,6 +16393,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15159,6 +16421,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15234,6 +16500,9 @@ Other True + False + True + True 2 @@ -15248,6 +16517,9 @@ Other True + False + True + True 2 @@ -15262,6 +16534,8 @@ Other True + False + True 3 @@ -15299,6 +16573,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -15338,6 +16616,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -15422,6 +16701,10 @@ Other 0.5 0 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -15465,6 +16748,10 @@ Other 0 0 place_title + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15493,6 +16780,10 @@ Other 0 0 city + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15521,6 +16812,10 @@ Other 0 0 state + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15549,6 +16844,10 @@ Other 0 0 county + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15577,6 +16876,10 @@ Other 0 0 country + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15605,6 +16908,10 @@ Other 0 0 longitude + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15633,6 +16940,10 @@ Other 0 0 latitude + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15661,6 +16972,10 @@ Other 0 0 parish + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Church Parish: @@ -15858,6 +17173,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -15883,6 +17202,10 @@ Other 0 0 postal + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15929,6 +17252,10 @@ Other 0 0 phone + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15974,6 +17301,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15998,6 +17329,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -16028,6 +17363,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16063,6 +17402,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16087,6 +17430,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16111,6 +17458,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16135,6 +17486,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16159,6 +17514,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -16183,6 +17542,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -16208,6 +17571,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -16234,6 +17601,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -16260,6 +17631,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -16284,6 +17659,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -16309,6 +17688,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -16332,6 +17715,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16356,6 +17743,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -16382,6 +17773,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -16406,6 +17801,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -16447,6 +17846,9 @@ Other False False True + False + False + False @@ -16593,6 +17995,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16663,6 +18069,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16747,6 +18157,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16782,6 +18196,9 @@ Other False False True + False + False + False @@ -16925,6 +18342,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17136,6 +18557,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17171,6 +18596,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17195,6 +18624,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -17219,6 +18652,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -17242,6 +18679,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -17266,6 +18707,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17307,6 +18752,9 @@ Other False False True + False + False + False @@ -17480,6 +18928,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17533,6 +18985,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17569,6 +19025,7 @@ Other False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -17639,6 +19096,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -17676,6 +19137,9 @@ Other False False True + False + False + False @@ -17754,6 +19218,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17783,6 +19251,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17818,6 +19290,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17865,6 +19341,10 @@ Other 3 3 lastnamegen + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17879,6 +19359,8 @@ Other True + False + True 1 @@ -17916,6 +19398,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17951,6 +19437,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18021,6 +19511,10 @@ Other 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18040,6 +19534,8 @@ Icons Only Text Only Text Below Icons Text Beside Icons + False + True 1 @@ -18077,6 +19573,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -18136,6 +19636,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18160,6 +19664,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18230,6 +19738,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18337,6 +19849,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -18373,6 +19889,10 @@ Text Beside Icons 5 5 date_format + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18397,6 +19917,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18411,6 +19935,8 @@ Text Beside Icons True + False + True 2 @@ -18448,6 +19974,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -18484,6 +20014,10 @@ Text Beside Icons 0 0 resname + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18509,6 +20043,10 @@ Text Beside Icons 0 0 resaddr + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18534,6 +20072,10 @@ Text Beside Icons 0 0 rescity + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18559,6 +20101,10 @@ Text Beside Icons 0 0 resstate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18584,6 +20130,10 @@ Text Beside Icons 0 0 rescountry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18609,6 +20159,10 @@ Text Beside Icons 0 0 respostal + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18634,6 +20188,10 @@ Text Beside Icons 0 0 resphone + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18659,6 +20217,10 @@ Text Beside Icons 0 0 resemail + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18851,6 +20413,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -18888,6 +20454,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -18924,6 +20494,10 @@ Text Beside Icons 2 2 iprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18949,6 +20523,10 @@ Text Beside Icons 2 2 fprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18974,6 +20552,10 @@ Text Beside Icons 2 2 pprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -18999,6 +20581,10 @@ Text Beside Icons 2 2 sprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19024,6 +20610,10 @@ Text Beside Icons 2 2 oprefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19153,6 +20743,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19190,6 +20784,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -19241,6 +20839,7 @@ Text Beside Icons False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -19325,6 +20924,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -19363,6 +20966,10 @@ Text Beside Icons 0 0 conf + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19388,6 +20995,10 @@ Text Beside Icons 0 0 spage + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19413,6 +21024,10 @@ Text Beside Icons 0 0 sdate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -19440,6 +21055,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -19467,6 +21086,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -19494,6 +21117,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19518,6 +21145,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19542,6 +21173,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -19566,6 +21201,10 @@ Text Beside Icons 0.5 3 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19590,6 +21229,10 @@ Text Beside Icons 0.5 3 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -19614,6 +21257,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19638,6 +21285,10 @@ Text Beside Icons 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -19865,6 +21516,8 @@ Low Normal High Very High + False + True 2 @@ -19879,6 +21532,8 @@ Very High True + False + True 2 @@ -19930,6 +21585,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -20013,6 +21669,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -20045,6 +21705,9 @@ Very High False False True + False + False + False @@ -20196,6 +21859,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -20263,6 +21927,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20288,6 +21956,9 @@ Very High True False True + False + False + False @@ -20341,6 +22012,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -20407,6 +22079,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20454,6 +22130,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -20490,6 +22170,10 @@ Very High 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -20515,6 +22199,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20538,6 +22226,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20561,6 +22253,10 @@ Very High 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -20586,6 +22282,10 @@ Very High 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -20611,6 +22311,10 @@ Very High 0.5 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -20636,6 +22340,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20659,6 +22367,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20682,6 +22394,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -20705,6 +22421,10 @@ Very High 0 0 2 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -20730,6 +22450,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20773,6 +22497,9 @@ Very High True False True + False + False + False @@ -20809,6 +22536,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -20877,6 +22605,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -20908,6 +22640,9 @@ Very High False False True + False + False + False @@ -21028,6 +22763,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -21097,6 +22833,10 @@ Very High 0.5 5 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 10 @@ -21125,6 +22865,10 @@ Very High 0 0 style_name + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -21195,6 +22939,9 @@ Very High False False True + False + False + False @@ -21234,6 +22981,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21255,6 +23006,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21282,6 +23037,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -21311,6 +23070,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -21442,6 +23205,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21466,6 +23233,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21490,6 +23261,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21514,6 +23289,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21539,6 +23318,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -21614,6 +23397,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -21663,6 +23450,10 @@ Very High 0 0 rmargin + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -21691,6 +23482,10 @@ Very High 0 0 lmargin + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -21719,6 +23514,10 @@ Very High 0 0 pad + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -21746,6 +23545,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -21770,6 +23573,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -21794,6 +23601,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -21972,6 +23783,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -21996,6 +23811,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22021,6 +23840,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -22045,6 +23868,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22069,6 +23896,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22181,6 +24012,10 @@ Very High 0 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22226,6 +24061,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -22251,6 +24090,10 @@ Very High 0 0 pad + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22281,6 +24124,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -22326,6 +24173,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -22407,6 +24255,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -22474,6 +24326,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -22498,11 +24354,14 @@ Very High - + 6 True + 2 + 2 False - 0 + 6 + 6 @@ -22518,11 +24377,18 @@ Very High 0 0 photoDescription + PANGO_ELLIPSIZE_NONE + -1 + False + 0 - 6 - False - False + 0 + 1 + 0 + 1 + fill + @@ -22539,14 +24405,38 @@ Very High False - 6 - True - True + 1 + 2 + 0 + 1 + + + + + + + True + True + Internal note + True + GTK_RELIEF_NORMAL + True + False + False + True + + + 1 + 2 + 1 + 2 + fill + - 6 + 0 False True @@ -22578,6 +24468,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -22663,6 +24554,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22709,6 +24604,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -22745,6 +24644,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22769,6 +24672,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22793,6 +24700,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22817,6 +24728,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22841,6 +24756,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22865,6 +24784,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22890,6 +24813,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22914,6 +24841,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -22973,6 +24904,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -22997,6 +24932,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23021,6 +24960,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -23045,6 +24988,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -23153,6 +25100,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23199,6 +25150,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23229,6 +25184,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23299,6 +25258,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23383,6 +25346,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23438,6 +25405,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23473,6 +25444,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23497,6 +25472,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -23521,6 +25500,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -23544,6 +25527,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -23568,6 +25555,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -23610,6 +25601,9 @@ Very High True False True + False + False + False @@ -23758,6 +25752,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23793,6 +25791,9 @@ Very High False False True + False + False + False @@ -23936,6 +25937,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -23975,6 +25980,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -24060,6 +26066,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24106,6 +26116,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -24142,6 +26156,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24166,6 +26184,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24190,6 +26212,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24214,6 +26240,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24237,6 +26267,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24261,6 +26295,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24327,6 +26365,10 @@ Very High 0 0 description + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24372,6 +26414,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24397,6 +26443,10 @@ Very High 0 0 place + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24515,6 +26565,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -24550,6 +26604,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24574,6 +26632,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24597,6 +26659,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -24621,6 +26687,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -24645,6 +26715,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24686,6 +26760,9 @@ Very High False False True + False + False + False @@ -24835,6 +26912,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -24905,6 +26986,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -24989,6 +27074,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25011,6 +27100,9 @@ Very High False False True + False + False + False @@ -25033,6 +27125,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25068,6 +27164,9 @@ Very High False False True + False + False + False @@ -25211,6 +27310,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -25247,6 +27350,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -25304,6 +27408,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25328,6 +27436,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25381,6 +27493,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -25466,6 +27579,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25510,6 +27627,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25565,6 +27686,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -25635,6 +27757,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25679,6 +27805,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25712,6 +27842,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -25782,6 +27913,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25826,6 +27961,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25859,6 +27998,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -25916,6 +28056,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25960,6 +28104,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -25993,6 +28141,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -26050,6 +28199,10 @@ Very High 0.5 6 12 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -26094,6 +28247,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -26127,6 +28284,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -26198,6 +28356,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26286,6 +28448,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26331,6 +28497,10 @@ Very High 0.5 6 24 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -26375,6 +28545,10 @@ Very High 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -26434,6 +28608,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -26521,6 +28696,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26563,6 +28742,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -26588,6 +28771,10 @@ Very High 0 0 eventDate + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -26616,6 +28803,10 @@ Very High 0 0 event_description + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -26644,6 +28835,10 @@ Very High 0 3 eventPlace + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -26672,6 +28867,10 @@ Very High 0 0 eventCause + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -26795,6 +28994,9 @@ Very High True + False + True + True 1 @@ -26852,6 +29054,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -26887,6 +29093,9 @@ Very High False False True + False + False + False @@ -27030,6 +29239,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -27103,6 +29316,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27187,6 +29404,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -27223,6 +29444,9 @@ Very High False False True + False + False + False @@ -27366,6 +29590,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -27577,6 +29805,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -27615,6 +29847,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -27699,6 +29932,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27741,6 +29978,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -27766,6 +30007,10 @@ Very High 0 0 attr_value + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -27826,6 +30071,9 @@ Very High True + False + True + True 1 @@ -27856,6 +30104,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -27891,6 +30143,9 @@ Very High False False True + False + False + False @@ -28034,6 +30289,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -28105,6 +30364,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28189,6 +30452,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -28227,6 +30494,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -28311,6 +30579,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28343,6 +30615,10 @@ Very High 0 0 city + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28371,6 +30647,10 @@ Very High 0 0 county + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28399,6 +30679,10 @@ Very High 0 0 country + PANGO_ELLIPSIZE_NONE + -1 + False + 0 Country: @@ -28428,6 +30712,10 @@ Very High 0 0 state + PANGO_ELLIPSIZE_NONE + -1 + False + 0 State: @@ -28457,6 +30745,10 @@ Very High 0 0 parish + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28591,6 +30883,10 @@ Very High 0 0 phone + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28637,6 +30933,10 @@ Very High 0 0 postal + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28701,6 +31001,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -28786,6 +31087,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -28829,6 +31134,10 @@ Very High 0 0 address_start + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28857,6 +31166,10 @@ Very High 0 0 street + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28885,6 +31198,10 @@ Very High 0 0 city + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28913,6 +31230,10 @@ Very High 0 0 state + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28941,6 +31262,10 @@ Very High 0 0 country + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -28969,6 +31294,10 @@ Very High 0 0 postal + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29146,6 +31475,10 @@ Very High 0 0 phone + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29224,6 +31557,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -29259,6 +31596,9 @@ Very High False False True + False + False + False @@ -29402,6 +31742,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -29473,6 +31817,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29557,6 +31905,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -29595,6 +31947,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -29680,6 +32033,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29712,6 +32069,10 @@ Very High 0 0 url_addr + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29740,6 +32101,10 @@ Very High 0 0 url_des + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -29865,6 +32230,7 @@ Very High False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True True @@ -29951,6 +32317,10 @@ Very High 0.5 0 10 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -29994,6 +32364,10 @@ Very High 0 0 alt_given + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30022,6 +32396,10 @@ Very High 0 0 alt_suffix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30049,6 +32427,10 @@ Very High 0 1 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30077,6 +32459,10 @@ Very High 0 0 alt_title + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30127,6 +32513,10 @@ Very High 0 0 alt_prefix + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30240,6 +32630,10 @@ Very High 0 0 patronymic + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30267,6 +32661,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30284,6 +32682,9 @@ Very High True + False + True + True 2 @@ -30333,6 +32734,10 @@ Very High 0 0 group_as + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30360,6 +32765,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30409,6 +32818,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -30436,6 +32849,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30460,6 +32877,10 @@ Very High 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30497,6 +32918,9 @@ Very High True + False + True + True 2 @@ -30514,6 +32938,8 @@ Very High Default (based on locale) Family name, Given name Given name, Family name + False + True 2 @@ -30532,6 +32958,8 @@ Given name, Family name Given name Family name Family name Given name + False + True 2 @@ -30562,6 +32990,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -30598,6 +33030,9 @@ Family name Given name False False True + False + False + False @@ -30741,6 +33176,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -30813,6 +33252,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -30897,6 +33340,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -30935,6 +33382,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -31018,6 +33466,10 @@ Family name Given name 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -31050,6 +33502,10 @@ Family name Given name 0 0 name + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -31078,6 +33534,10 @@ Family name Given name 0 0 scrolledwindow30 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -31258,6 +33718,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True False @@ -31328,6 +33789,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -31427,6 +33892,10 @@ Family name Given name 0.5 6 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -31450,6 +33919,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -31484,6 +33957,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -31508,6 +33982,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -31532,6 +34010,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -31556,6 +34038,10 @@ Family name Given name 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -31603,6 +34089,7 @@ Family name Given name False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -31682,6 +34169,10 @@ Family name Given name 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -31716,6 +34207,10 @@ Family name Given name 0 0 calendar_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -31728,6 +34223,8 @@ Family name Given name True + False + True 6 @@ -31766,6 +34263,10 @@ Family name Given name 6 0 quality_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -31781,6 +34282,8 @@ Family name Given name True + False + True 1 @@ -31808,6 +34311,10 @@ Family name Given name 6 0 type_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -31823,6 +34330,8 @@ Family name Given name True + False + True 5 @@ -31849,6 +34358,10 @@ Family name Given name 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -31874,6 +34387,10 @@ Family name Given name 0 0 start_day + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -31899,6 +34416,10 @@ Family name Given name 0 0 start_month_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -31924,6 +34445,10 @@ Family name Given name 0 0 start_year + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -31961,6 +34486,8 @@ Family name Given name True + False + True 2 @@ -32007,6 +34534,10 @@ Family name Given name 0.5 6 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -32032,6 +34563,10 @@ Family name Given name 0 0 stop_day + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -32057,6 +34592,10 @@ Family name Given name 0 0 stop_month_box + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -32082,6 +34621,10 @@ Family name Given name 0 0 stop_year + PANGO_ELLIPSIZE_NONE + -1 + False + 0 7 @@ -32119,6 +34662,8 @@ Family name Given name True + False + True 6 @@ -32179,6 +34724,10 @@ Family name Given name 0 0 date_text_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 6 @@ -32230,4 +34779,202 @@ Family name Given name + + True + + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + 500 + 450 + True + False + True + False + False + GDK_WINDOW_TYPE_HINT_DIALOG + GDK_GRAVITY_NORTH_WEST + True + False + + + + True + False + 0 + + + + True + GTK_BUTTONBOX_END + + + + True + True + True + gtk-cancel + True + GTK_RELIEF_NORMAL + True + -6 + + + + + + True + True + True + gtk-ok + True + GTK_RELIEF_NORMAL + True + -5 + + + + + 0 + False + True + GTK_PACK_END + + + + + + 6 + True + False + 6 + + + + True + + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + True + 0 + + + 0 + False + False + + + + + + True + False + 6 + + + + True + Title: + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + True + True + True + 0 + + True + * + False + + + 0 + True + True + + + + + 0 + False + True + + + + + + True + True + GTK_POLICY_NEVER + GTK_POLICY_AUTOMATIC + GTK_SHADOW_IN + GTK_CORNER_TOP_LEFT + + + + True + True + True + False + True + GTK_JUSTIFY_LEFT + GTK_WRAP_NONE + True + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + 0 + True + True + + + + + 0 + True + True + + + + + + diff --git a/gramps2/src/plugins/NavWebPage.py b/gramps2/src/plugins/NavWebPage.py index c9867c5d9..41968e72b 100644 --- a/gramps2/src/plugins/NavWebPage.py +++ b/gramps2/src/plugins/NavWebPage.py @@ -59,6 +59,7 @@ import BaseDoc from NameDisplay import displayer as _nd from DateHandler import displayer as _dd import ReportUtils +import sets _NARRATIVE = "narrative.css" @@ -134,8 +135,9 @@ class BasePage: ofile.write('
\n') ofile.write('
\n') ofile.write('
\n') - ofile.write('