* src/Marriage.py: fix lds_data_object problem
svn: r5098
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
2005-08-17 Don Allingham <don@gramps-project.org>
|
2005-08-17 Don Allingham <don@gramps-project.org>
|
||||||
|
* src/Marriage.py: fix lds_data_object problem
|
||||||
* src/GrampsDBCallback.py: look for GRAMPS_SIGNAL environment
|
* src/GrampsDBCallback.py: look for GRAMPS_SIGNAL environment
|
||||||
variable equal to 1 to enable signal debugging
|
variable equal to 1 to enable signal debugging
|
||||||
* src/ChooseParents.py: disconnect signals on close, do fewer
|
* src/ChooseParents.py: disconnect signals on close, do fewer
|
||||||
|
@@ -24,11 +24,6 @@
|
|||||||
|
|
||||||
<title>Known Bugs and Limitations</title>
|
<title>Known Bugs and Limitations</title>
|
||||||
|
|
||||||
<para>The bugs are tracked through the
|
|
||||||
<ulink url="http://sourceforge.net/tracker/?group_id=25770&atid=385137" type="http">
|
|
||||||
sourceforge.net tracking system</ulink>.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>The known limitations include the BSDDB performance issues related
|
<para>The known limitations include the BSDDB performance issues related
|
||||||
to caching and the memory size. As long as the BSDDB cache fits completely
|
to caching and the memory size. As long as the BSDDB cache fits completely
|
||||||
into the available memory on the system, the performance should be
|
into the available memory on the system, the performance should be
|
||||||
|
@@ -289,18 +289,6 @@ The best thing you can do is to fix the bug and send the patch to
|
|||||||
<ulink url="mailto:gramps-devel@lists.sf.net"
|
<ulink url="mailto:gramps-devel@lists.sf.net"
|
||||||
type="mailto">gramps-devel@lists.sf.net</ulink> :-)</para>
|
type="mailto">gramps-devel@lists.sf.net</ulink> :-)</para>
|
||||||
|
|
||||||
<para>
|
|
||||||
The next best thing would be to submit a good bug report. This can be done in
|
|
||||||
one of the two ways: (1) send your report to
|
|
||||||
<ulink url="mailto:gramps-bugs@lists.sf.net"
|
|
||||||
type="mailto">gramps-bugs@lists.sf.net</ulink>
|
|
||||||
or (2) file your report with the bug tracker system at
|
|
||||||
<ulink url="http://sf.net/tracker/?group_id=25770" type="http">
|
|
||||||
http://sf.net/tracker/?group_id=25770&atid=385137</ulink>
|
|
||||||
(this function is also available by selecting
|
|
||||||
<menuchoice><guisubmenu>Help</guisubmenu><guimenuitem>Report a
|
|
||||||
bug</guimenuitem></menuchoice> from gramps main menu). </para>
|
|
||||||
|
|
||||||
<para>A good bug report would include: </para>
|
<para>A good bug report would include: </para>
|
||||||
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
|
@@ -226,17 +226,6 @@
|
|||||||
<releaseinfo>This manual describes version &appversion; of GRAMPS.
|
<releaseinfo>This manual describes version &appversion; of GRAMPS.
|
||||||
</releaseinfo>
|
</releaseinfo>
|
||||||
|
|
||||||
<legalnotice>
|
|
||||||
<title>Feedback</title>
|
|
||||||
<para>
|
|
||||||
To report a bug or make a suggestion regarding this application or
|
|
||||||
this manual, use the help menu in &app;, or follow the directions
|
|
||||||
found on <ulink url="http://gramps-project.org/index.php?module=pagemaster&PAGE_user_op=view_page&PAGE_id=3"
|
|
||||||
type="http">this site</ulink>.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<!-- Translators may also add here feedback address for translations -->
|
|
||||||
</legalnotice>
|
|
||||||
</bookinfo>
|
</bookinfo>
|
||||||
|
|
||||||
<!-- ============= Document Body ============================= -->
|
<!-- ============= Document Body ============================= -->
|
||||||
|
@@ -244,7 +244,9 @@ class Marriage:
|
|||||||
AutoComp.fill_combo(self.lds_place, place_list)
|
AutoComp.fill_combo(self.lds_place, place_list)
|
||||||
|
|
||||||
lds_ord = self.family.get_lds_sealing()
|
lds_ord = self.family.get_lds_sealing()
|
||||||
|
self.seal_stat = 0
|
||||||
|
|
||||||
|
self.lds_date_object = Date.Date()
|
||||||
if GrampsKeys.get_uselds() or lds_ord:
|
if GrampsKeys.get_uselds() or lds_ord:
|
||||||
if lds_ord:
|
if lds_ord:
|
||||||
place_handle = lds_ord.get_place_handle()
|
place_handle = lds_ord.get_place_handle()
|
||||||
@@ -257,8 +259,6 @@ class Marriage:
|
|||||||
self.lds_date_object = lds_ord.get_date_object()
|
self.lds_date_object = lds_ord.get_date_object()
|
||||||
else:
|
else:
|
||||||
self.lds_place.child.set_text("")
|
self.lds_place.child.set_text("")
|
||||||
self.seal_stat = 0
|
|
||||||
self.lds_date_object = Date.Date()
|
|
||||||
self.lds_label.show()
|
self.lds_label.show()
|
||||||
self.get_widget('lds_page').show()
|
self.get_widget('lds_page').show()
|
||||||
else:
|
else:
|
||||||
|
Reference in New Issue
Block a user