diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index bce91cf06..df50669fa 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,6 @@ +2006-11-05 Brian Matherly + * src/plugins/NarrativeWeb.py: Add street to place page. + 2006-11-05 Don Allingham * src/plugins/Makefile.am: add RemoveUnused.py * src/plugins/RemoveUnused.py: remove unused sources and events diff --git a/gramps2/src/plugins/NarrativeWeb.py b/gramps2/src/plugins/NarrativeWeb.py index a9f40df4f..5780180e1 100644 --- a/gramps2/src/plugins/NarrativeWeb.py +++ b/gramps2/src/plugins/NarrativeWeb.py @@ -753,9 +753,13 @@ class PlacePage(BasePage): if place.main_loc: ml = place.main_loc - for val in [(_('City'),ml.city),(_('Church Parish'),ml.parish), - (_('County'),ml.county),(_('State/Province'),ml.state), - (_('Postal Code'),ml.postal),(_('Country'),ml.country)]: + for val in [(_('Street'),ml.street), + (_('City'),ml.city), + (_('Church Parish'),ml.parish), + (_('County'),ml.county), + (_('State/Province'),ml.state), + (_('Postal Code'),ml.postal), + (_('Country'),ml.country)]: if val[1]: of.write('%s\n' % val[0]) of.write('%s\n' % val[1])