Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

codahale/faster-builder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FasterBuilder

Differences from Builder::XmlMarkup

  • Does not allow for unescaped text to be appended to element contents:

    xml.dip do
      xml << "<blorp>"
    end
    xml.target! #=> "<dip>&lt;blorp&gt;</dip>" instead of <dip><blorp></dip>
    

    This is a security/validity issue and isn't going to change.

  • Does not allow XML prologs to be inserted in the middle of the document:

    xml.dip do
      xml.instruct!
    end
    xml.target! #=> '<?xml version="1.0" encoding="UTF-8"?>\n<dip/>'
    

    This is a security/validity issue and isn't going to change.

  • Does not allow for unescaped symbol attribute values:

    xml.dingo(:name => :"SUPA<<FREAK")
    xml.target! #=> '<dingo name="SUPA&lt;&lt;FREAK"/>'
    

    This is a security/validity issue and isn't going to change.

  • Doesn't detect and avoid double-escaping. (I'm working on this.)

  • Doesn't generate declarations. (I'm working on this.)

  • Doesn't generate non-XML prologs. (I'm working on this.)

  • Doesn't generate standalone XML prologs. (I'm working on this.)

  • Doesn't support indentation options. (I'm working on this.)

About

[ABANDONED] A drop-in replacement for Builder::XmlMarkup which uses libxml for speed and security.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages