From 79dc6d05d7ef509f59d0a36d233b41566dbd0bf0 Mon Sep 17 00:00:00 2001 From: Brian Matherly Date: Mon, 6 Nov 2006 03:15:44 +0000 Subject: [PATCH] * src/plugins/NarrativeWeb.py: Add street to place page. svn: r7559 --- ChangeLog | 3 +++ src/plugins/NarrativeWeb.py | 10 +++++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index bce91cf06..df50669fa 100644 --- a/ChangeLog +++ b/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/src/plugins/NarrativeWeb.py b/src/plugins/NarrativeWeb.py index a9f40df4f..5780180e1 100644 --- a/src/plugins/NarrativeWeb.py +++ b/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])