protected Method

WhiteListSanitizer.contains_bad_protocols?(attr_name, value)

There's no documentation for this item.

Source Code

# File action_controller/vendor/html-scanner/html/sanitizer.rb, line 168
def contains_bad_protocols?(attr_name, value)
  uri_attributes.include?(attr_name) && 
  (value =~ /(^[^\/:]*):|(&#0*58)|(&#x70)|(%|%)3A/ && !allowed_protocols.include?(value.split(protocol_separator).first))
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.