Author: ajack
Date: Mon Aug 16 17:29:51 2004
New Revision: 36484
Modified:
gump/trunk/python/gump/document/xdocs/documenter.py
Log:
Applied Bill Barker's patch.
Modified: gump/trunk/python/gump/document/xdocs/documenter.py
==============================================================================
--- gump/trunk/python/gump/document/xdocs/documenter.py (original)
+++ gump/trunk/python/gump/document/xdocs/documenter.py Mon Aug 16 17:29:51 2004
@@ -1757,12 +1757,13 @@
detailsList.createEntry('Redistributable: ', `project.isRedistributable()`)
# Display nag information
- if project.hasNotifys() and project.isVerboseOrDebug():
- for pair in project.getNotifys():
- toaddr=pair.getToAddress()
- fromaddr=pair.getFromAddress()
- detailsList.createEntry('Notify To:
').createFork('mailto:'+toaddr,toaddr)
- detailsList.createEntry('Notify From:
').createFork('mailto:'+fromaddr,fromaddr)
+ if project.hasNotifys():
+ if project.isVerboseOrDebug():
+ for pair in project.getNotifys():
+ toaddr=pair.getToAddress()
+ fromaddr=pair.getFromAddress()
+ detailsList.createEntry('Notify To:
').createFork('mailto:'+toaddr,toaddr)
+ detailsList.createEntry('Notify From:
').createFork('mailto:'+fromaddr,fromaddr)
elif not project.isPackaged() and project.hasBuilder():
document.createWarning('This project does not utilize Gump
notification.')
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]