eBooru/app/presenters/presenter.rb

20 lines
217 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
2010-03-12 19:27:54 -05:00
class Presenter
2010-11-06 12:16:24 -04:00
def self.h(s)
CGI.escapeHTML(s.to_s)
2010-11-06 12:16:24 -04:00
end
2013-03-19 08:10:10 -04:00
2010-11-06 12:16:24 -04:00
def self.u(s)
URI.escape(s)
end
2013-03-19 08:10:10 -04:00
2010-03-12 19:27:54 -05:00
def h(s)
CGI.escapeHTML(s)
end
2013-03-19 08:10:10 -04:00
def u(s)
2018-10-29 20:46:01 -04:00
CGI.escape(s)
end
2010-03-12 19:27:54 -05:00
end