class RSS::REXMLListener

公共类方法

raise_for_undefined_entity?() 点击切换源代码
# File rss-0.3.1/lib/rss/rexmlparser.rb, line 36
def raise_for_undefined_entity?
  false
end

公共实例方法

xmldecl(version, encoding, standalone) 点击切换源代码
调用父类方法 RSS::ListenerMixin#xmldecl
# File rss-0.3.1/lib/rss/rexmlparser.rb, line 41
def xmldecl(version, encoding, standalone)
  super(version, encoding, standalone == "yes")
  # Encoding is converted to UTF-8 when REXML parse XML.
  @encoding = 'UTF-8'
end