# File lib/puppet/util/rdoc/generators/puppet_generator.rb, line 412
412:         def http_url(full_name, prefix)
413:             path = full_name.dup
414:             if path['<<']
415:                 path.gsub!(/<<\s*(\w*)/) { "from-#$1" }
416:             end
417:             File.join(prefix, path.split("::")) + ".html"
418:         end