[Rails] URI::Generic methods
URL normalization :- http://en.wikipedia.org/wiki/URL_normalization - I
just read this source.
I found a method uri#normalization :
http://www.ruby-doc.org/stdlib-2.0/libdoc/uri/rdoc/URI/Generic.html#method-i-normalize-21
But not able to figure out how this method works:
require 'uri'
uri = URI.parse("http://www.example.com/../a/b/../c/./d.html")
p uri.normalize.to_s
#=> "http://www.example.com/../a/b/../c/./d.html"
But I expect " http://www.example.com/a/c/d.html"
Nothing any thing change encountered. So any one out there have any good
example to understand this method?
Thanks
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/c134dadaa651c05945f2091d843630dd%40ruby-forum.com?hl=en-US.
For more options, visit https://groups.google.com/groups/opt_out.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home