aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rss/utils.rb
blob: 32940cf2a8b0ca0623284b9b6f19ecf30f857803 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module RSS

	module Utils

		def get_file_and_line_from_caller(i=0)
			tmp = caller[i].split(':')
			line = tmp.pop.to_i
			file = tmp.join(':')
			[file, line]
		end

    def html_escape(s)
      s.to_s.gsub(/&/, "&amp;").gsub(/\"/, "&quot;").gsub(/>/, "&gt;").gsub(/</, "&lt;")
    end
    alias h html_escape
		
	end

end