Method: Dispatch#display_content

Defined in:
lib/forge/app/models/dispatch.rb

#display_contentObject



30
31
32
33
34
35
36
# File 'lib/forge/app/models/dispatch.rb', line 30

def display_content
  doc = Hpricot(self.content)
  self.dispatch_links.each do |dispatch_link|
    doc.search('a')[dispatch_link.position]["href"] = "#{MySettings.site_url}/dispatches/#{self.id}/links/#{dispatch_link.id}" if doc.search('a')[dispatch_link.position]
  end
  return doc.to_s
end