Class: Hpricot::XMLDecl
- Defined in:
- lib/ext/hpricot/tag.rb,
lib/ext/hpricot/modules.rb,
lib/ext/hpricot/modules.rb
Defined Under Namespace
Modules: Trav
Constant Summary
Constants included from Hpricot
AttrCore, AttrEvents, AttrFocus, AttrHAlign, AttrI18n, AttrVAlign, Attrs, ElementContent, ElementExclusions, ElementInclusions, FORM_TAGS, NamedCharacters, NamedCharactersPattern, OmittedAttrName, SELF_CLOSING_TAGS
Instance Method Summary collapse
Methods included from Leaf::Trav
#traverse_all_element, #traverse_some_element, #traverse_text_internal
Methods included from Traverse
#after, #at, #before, #bogusetag?, #children_of_type, #clean_path, #comment?, #css_path, #doc?, #doctype?, #elem?, filter, #following, #get_subnode, #html, #index, #inner_html=, #inner_text, #make, #next, #node_position, #nodes_at, #position, #preceding, #previous, #procins?, #search, #swap, #text?, #to_html, #to_original_html, #to_plain_text, #traverse_element, #traverse_text, #xmldecl?, #xpath
Methods included from Leaf
Methods included from Node
#altered!, #clear_raw, #html_quote, #if_output, #inspect_tree
Methods included from Hpricot
XML, build, make, parse, uxs, xchr, xs
Instance Method Details
#output(out, opts = {}) ⇒ Object
150 151 152 153 154 155 156 157 158 |
# File 'lib/ext/hpricot/tag.rb', line 150 def output(out, opts = {}) out << if_output(opts) do "<?xml version=\"#{version}\"" + (encoding ? " encoding=\"#{encoding}\"" : "") + (standalone != nil ? " standalone=\"#{standalone ? 'yes' : 'no'}\"" : "") + "?>" end end |
#pathname ⇒ Object
149 |
# File 'lib/ext/hpricot/tag.rb', line 149 def pathname; "xmldecl()" end |