Contains or links to the content of the Entry. It has the following attributes:
type
src
Reference: validator.w3.org/feed/docs/rfc4287.html#element.content
Raises a MissingAttributeError, NotAvailableValueError, MissingTagError or NotExpectedTagError if the element is not properly formatted.
# File rss/atom.rb, line 669 def atom_validate(ignore_unknown_element, tags, uri) if out_of_line? raise MissingAttributeError.new(tag_name, "type") if @type.nil? unless (content.nil? or content.empty?) raise NotAvailableValueError.new(tag_name, content) end elsif inline_xhtml? if @xml.nil? raise MissingTagError.new("div", tag_name) end unless @xml.name == "div" and @xml.uri == XHTML_URI raise NotExpectedTagError.new(@xml.name, @xml.uri, tag_name) end end end
Returns true if the element has inline XML content.
# File rss/atom.rb, line 638 def have_xml_content? inline_xhtml? or inline_other_xml? end
Returns true if the element contains inline content that has a HTML media type.
# File rss/atom.rb, line 693 def inline_html? return false if out_of_line? @type == "html" or mime_split == ["text", "html"] end
Returns true if the element contains inline content that has a MIME media type.
# File rss/atom.rb, line 706 def inline_other? return false if out_of_line? media_type, subtype = mime_split return false if media_type.nil? or subtype.nil? true end
Returns true if the element contains inline content encoded in base64.
# File rss/atom.rb, line 742 def inline_other_base64? inline_other? and !inline_other_text? and !inline_other_xml? end
Returns true if the element contains inline content that has a text media type.
# File rss/atom.rb, line 715 def inline_other_text? return false unless inline_other? return false if inline_other_xml? media_type, = mime_split return true if "text" == media_type.downcase false end
Returns true if the element contains inline content that has a XML media type.
# File rss/atom.rb, line 726 def inline_other_xml? return false unless inline_other? media_type, subtype = mime_split normalized_mime_type = "#{media_type}/#{subtype}".downcase if /(?:\+xml|^xml)$/ =~ subtype or %w(text/xml-external-parsed-entity application/xml-external-parsed-entity application/xml-dtd).find {|x| x == normalized_mime_type} return true end false end
Returns true if the element contains inline content that has a text or HTML media type, or no media type at all.
# File rss/atom.rb, line 687 def inline_text? !out_of_line? and [nil, "text", "html"].include?(@type) end
Returns true if the element contains inline content that has a XHTML media type.
# File rss/atom.rb, line 700 def inline_xhtml? !out_of_line? and @type == "xhtml" end
Splits the type attribute into an array, e.g. [“text”, “xml”]
# File rss/atom.rb, line 752 def mime_split media_type = subtype = nil if /\A\s*([a-z]+)\/([a-z\+]+)\s*(?:;.*)?\z/i =~ @type.to_s media_type = $1.downcase subtype = $2.downcase end [media_type, subtype] end
Returns true if the content needs to be encoded in base64.
# File rss/atom.rb, line 762 def need_base64_encode? inline_other_base64? end
Returns true if the element contains linked content.
# File rss/atom.rb, line 747 def out_of_line? not @src.nil? end
Returns the element content in XHTML.
# File rss/atom.rb, line 658 def xhtml if inline_xhtml? xml else nil end end
Returns or builds the element content in XML.
# File rss/atom.rb, line 643 def xml return @xml unless inline_xhtml? return @xml if @xml.nil? if @xml.is_a?(XML::Element) and [@xml.name, @xml.uri] == ["div", XHTML_URI] return @xml end children = @xml children = [children] unless children.is_a?(Array) XML::Element.new("div", nil, XHTML_URI, {"xmlns" => XHTML_URI}, children) end