Class: XMLRPC::XMLWriter::Simple
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
Abstract
|
|
Instance Chain:
self,
Abstract
|
|
Inherits: |
XMLRPC::XMLWriter::Abstract
|
Defined in: | lib/xmlrpc/create.rb |
Instance Method Summary
- #document(*params)
- #document_to_str(doc)
- #element(name, attrs, *children)
- #pi(name, *params)
- #text(txt)
Abstract - Inherited
Instance Method Details
#document(*params)
[ GitHub ]# File 'lib/xmlrpc/create.rb', line 32
def document(*params) params.join("") end
#document_to_str(doc)
[ GitHub ]# File 'lib/xmlrpc/create.rb', line 28
def document_to_str(doc) doc end
#element(name, attrs, *children)
[ GitHub ]# File 'lib/xmlrpc/create.rb', line 40
def element(name, attrs, *children) raise "attributes not yet implemented" unless attrs.nil? if children.empty? "<#{name}/>" else "<#{name}>" + children.join("") + "</#{name}>" end end
#pi(name, *params)
[ GitHub ]# File 'lib/xmlrpc/create.rb', line 36
def pi(name, *params) "<?#{name} " + params.join(" ") + " ?>" end
#text(txt)
[ GitHub ]# File 'lib/xmlrpc/create.rb', line 49
def text(txt) cleaned = txt.dup cleaned.gsub!(/&/, '&') cleaned.gsub!(/</, '<') cleaned.gsub!(/>/, '>') cleaned end