# File lib/cgikit/template_store.rb, line 84
  def terminate_template?( template, component )
    (component.will_parse_template and \
     (component.will_parse_template != template.template_string)) or \
    (template.template_mtime and \
     (File.mtime(component.template_file) > template.template_mtime))
  end