summaryrefslogtreecommitdiff
path: root/lib/rss/utils.rb
blob: cd0f9da739835afa45334577bdedd9145351ffc3 (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