In .:
2007-02-04 Don Allingham <don@gramps-project.org> * src/DataViews/_RelationView.py: default Relationship buttons to insenstive. Setting an active person will reenable them. 2007-02-03 Brian Matherly <brian@gramps-project.org> * src/plugins/NarrativeWeb.py: fix 0000894: syntax error on Narrative web plugin 2007-02-03 Brian Matherly <brian@gramps-project.org> * src/plugins/NarrativeWeb.py: fix 0000894: syntax error on Narrative web plugin * src/DateHandler/_DateParser.py (DateParser.init_strings): fix date parsing to allow for spaces in numerical format. #892 In po: 2007-02-03 Zdenek Hatas <zdenek.hatas@gmail.com> * cs.po: Minor translation update. svn: r8054
This commit is contained in:
parent
3a69a0145e
commit
6caacadb2d
12
ChangeLog
12
ChangeLog
@ -1,3 +1,10 @@
|
||||
2007-02-04 Don Allingham <don@gramps-project.org>
|
||||
* src/DataViews/_RelationView.py: default Relationship buttons to insenstive.
|
||||
Setting an active person will reenable them.
|
||||
|
||||
2007-02-03 Brian Matherly <brian@gramps-project.org>
|
||||
* src/plugins/NarrativeWeb.py: fix 0000894: syntax error on Narrative web plugin
|
||||
|
||||
2007-02-04 Richard Taylor <rjt-gramps@thegrindstone.me.uk>
|
||||
* src/GrampsDb/_GrampsDbBase.py: add initial cursor iter impl.
|
||||
* src/GrampsDb/_CursorIterator.py: add initial cursor iter impl.
|
||||
@ -96,7 +103,12 @@
|
||||
* src/GrampsLocale.py: refactor GrampsDb and clean RelLib deps
|
||||
* src/DbLoader.py: refactor GrampsDb and clean RelLib deps
|
||||
|
||||
2007-02-03 Brian Matherly <brian@gramps-project.org>
|
||||
* src/plugins/NarrativeWeb.py: fix 0000894: syntax error on Narrative web plugin
|
||||
|
||||
2007-02-03 Don Allingham <don@gramps-project.org>
|
||||
* src/DateHandler/_DateParser.py (DateParser.init_strings): fix date parsing to allow
|
||||
for spaces in numerical format. #892
|
||||
* src/Editors/_EditFamily.py (EditFamily.check_for_family_change): fix
|
||||
warning message.
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
2007-02-03 Zdenek Hatas <zdenek.hatas@gmail.com>
|
||||
* cs.po: Minor translation update.
|
||||
|
||||
2007-01-29 Piotr Czubaszek <pioterus@gmail.com>
|
||||
* pl.po: Translation update.
|
||||
|
||||
|
@ -333,6 +333,7 @@ class RelationshipView(PageView.PersonNavView):
|
||||
self.show_siblings)
|
||||
|
||||
self.order_action.set_sensitive(self.reorder_sensitive)
|
||||
self.family_action.set_sensitive(False)
|
||||
|
||||
def siblings_toggle(self, obj):
|
||||
self.show_siblings = obj.get_active()
|
||||
@ -1010,6 +1011,8 @@ class RelationshipView(PageView.PersonNavView):
|
||||
from Editors import EditFamily
|
||||
family = RelLib.Family()
|
||||
person = self.dbstate.active
|
||||
if not person:
|
||||
return
|
||||
|
||||
if person.gender == RelLib.Person.MALE:
|
||||
family.set_father_handle(person.handle)
|
||||
|
@ -281,7 +281,7 @@ class DateParser:
|
||||
re.IGNORECASE)
|
||||
self._itext2 = re.compile('(\d+)?\s+?%s\s*((\d+)(/\d+)?)?\s*$' % self._imon_str,
|
||||
re.IGNORECASE)
|
||||
self._numeric = re.compile("((\d+)[/\.])?((\d+)[/\.])?(\d+)\s*$")
|
||||
self._numeric = re.compile("((\d+)[/\.]\s*)?((\d+)[/\.]\s*)?(\d+)\s*$")
|
||||
self._iso = re.compile("(\d+)(/(\d+))?-(\d+)-(\d+)\s*$")
|
||||
self._rfc = re.compile("(%s,)?\s+(\d|\d\d)\s+%s\s+(\d+)\s+\d\d:\d\d(:\d\d)?\s+(\+|-)\d\d\d\d"
|
||||
% (self._rfc_day_str,self._rfc_mon_str))
|
||||
|
Loading…
Reference in New Issue
Block a user