Methods
- I
- O
- X
Included Modules
Instance Public methods
inline_html?()
Link
Source: show
# File lib/rss/maker/base.rb, line 899 def inline_html? @type == "html" end
inline_other?()
Link
Source: show
# File lib/rss/maker/base.rb, line 907 def inline_other? !out_of_line? and ![nil, "text", "html", "xhtml"].include?(@type) end
inline_other_base64?()
Link
Source: show
# File lib/rss/maker/base.rb, line 921 def inline_other_base64? return false if @type.nil? or out_of_line? @type.include?("/") and !inline_other_text? and !inline_other_xml? end
inline_other_text?()
Link
Source: show
# File lib/rss/maker/base.rb, line 911 def inline_other_text? return false if @type.nil? or out_of_line? /\Atext\//i.match(@type) ? true : false end
inline_other_xml?()
Link
Source: show
# File lib/rss/maker/base.rb, line 916 def inline_other_xml? return false if @type.nil? or out_of_line? /[\+\/]xml\z/i.match(@type) ? true : false end
inline_text?()
Link
Source: show
# File lib/rss/maker/base.rb, line 895 def inline_text? [nil, "text", "html"].include?(@type) end
inline_xhtml?()
Link
Source: show
# File lib/rss/maker/base.rb, line 903 def inline_xhtml? @type == "xhtml" end