####################################################################### # File: tasks_helper.rb # # (C) Hipposoft 2006 # # # # Purpose: Helper functions for the Tasks view. # # # # Author: A.D.Hodgkinson # # # # History: 17-Oct-2006 (ADH): Adapted from Clubhouse. # ####################################################################### module TasksHelper def exception_info data = '
' if (defined?(@exception_data) && @exception_data && !@exception_data.empty?) data << "

Technical data:

#{h(@exception_data)}" else data << "

Further technical information on this failure is not available." end return data + '

' end end