Class: RSS::Atom::Feed::Entry
| Relationships & Source Files | |
| Namespace Children | |
| 
       Classes: 
      
     | |
| Super Chains via Extension / Inclusion / Inheritance | |
| 
         Class Chain: 
        
       | 
    |
| 
         Instance Chain: 
        
       | 
    |
| Inherits: | 
        RSS::Element
        
  | 
    
| Defined in: | lib/rss/atom.rb, lib/rss/dublincore/atom.rb  | 
    
Overview
Defines a child ::RSS::Atom Entry element of an ::RSS::Atom Feed element. It has the following attributes:
- 
author
 - 
category
 - 
categories
 - 
content
 - 
contributor
 - 
id
 - 
link
 - 
published
 - 
rights
 - 
source
 - 
summary
 - 
title
 - 
updated
 
Reference: validator.w3.org/feed/docs/rfc4287.html#element.entry
Constant Summary
- 
    Author =
    
    # File 'lib/rss/atom.rb', line 601    
Feed::Author
 - 
    Category =
    
    # File 'lib/rss/atom.rb', line 603    
Feed::Category
 - 
    Contributor =
    
    # File 'lib/rss/atom.rb', line 776    
Feed::Contributor
 - 
    Id =
    
    # File 'lib/rss/atom.rb', line 778    
Feed::Id
 - 
    Link =
    
    # File 'lib/rss/atom.rb', line 780    
Feed::Link
 - 
    Rights =
    
    # File 'lib/rss/atom.rb', line 792    
Feed::Rights
 - 
    Title =
    
    # File 'lib/rss/atom.rb', line 874    
Feed::Title
 - 
    Updated =
    
    # File 'lib/rss/atom.rb', line 876    
Feed::Updated
 
::RSS::Element - Inherited
  GET_ATTRIBUTES, HAVE_CHILDREN_ELEMENTS, INDENT, MODELS, MUST_CALL_VALIDATORS, NEED_INITIALIZE_VARIABLES, PLURAL_FORMS, TO_ELEMENT_METHODS
::RSS::Atom::CommonModel - Included
  
  ::RSS::DublinCoreModel - Included
  
Class Attribute Summary
::RSS::Element - Inherited
Class Method Summary
::RSS::Element - Inherited
::RSS::Utils::InheritedReader - Extended
::RSS::BaseModel - Extended
::RSS::Utils - Included
| element_initialize_arguments? | This method is used inside of several different objects to determine if special behavior is needed in the constructor.  | 
    
| get_file_and_line_from_caller | Returns an array of two elements: the filename where the calling method is located, and the line number where it is defined.  | 
    
| h, | |
| html_escape | Takes a string   | 
    
| new_with_value_if_need | If   | 
    
| to_class_name | Given a   | 
    
Instance Attribute Summary
- #have_required_elements? ⇒ Boolean readonly private
 
::RSS::Element - Inherited
Instance Method Summary
- 
    
      #have_author?(check_parent = true)  ⇒ Boolean 
    
    
Returns whether any of the following are true:
 - #atom_validate(ignore_unknown_element, tags, uri) private
 - #maker_target(items) private
 
::RSS::Atom::DuplicateLinkChecker - Included
| #validate_duplicate_links | Checks if there are duplicate links with the same type and hreflang attributes that have an alternate (or empty) rel attribute.  | 
    
::RSS::Element - Inherited
::RSS::SetupMaker - Included
| #setup_maker, #maker_target, #not_need_to_call_setup_maker_variables, #setup_maker_attributes, #setup_maker_element, #setup_maker_elements | 
::RSS::Utils - Included
| #element_initialize_arguments? | This method is used inside of several different objects to determine if special behavior is needed in the constructor.  | 
    
| #get_file_and_line_from_caller | Returns an array of two elements: the filename where the calling method is located, and the line number where it is defined.  | 
    
| #h, | |
| #html_escape | Takes a string   | 
    
| #new_with_value_if_need | If   | 
    
| #to_class_name | Given a   | 
    
Constructor Details
This class inherits a constructor from RSS::Element
Instance Attribute Details
    #have_required_elements?  ⇒ Boolean  (readonly, private)
  
  [ GitHub ]
# File 'lib/rss/atom.rb', line 588
def have_required_elements? super and end
Instance Method Details
#atom_validate(ignore_unknown_element, tags, uri) (private)
[ GitHub ]# File 'lib/rss/atom.rb', line 581
def atom_validate(ignore_unknown_element, , uri) unless raise MissingTagError.new("author", tag_name) end validate_duplicate_links(links) end
    #have_author?(check_parent = true)  ⇒ Boolean 
  
Returns whether any of the following are true:
- 
There are any authors in the feed
 - 
If the parent element has an author and the
check_parentparameter was given. - 
There is a source element that has an author
 
# File 'lib/rss/atom.rb', line 574
def (check_parent=true) .any? {|| !.to_s.empty?} or (check_parent and @parent and @parent.) or (source and source.) end