This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_1_378) is shown here.
cvs_url(url, full_path)
public
Build a webcvs URL with the given ‘url’ argument. URLs with a ‘%s’
in them get the file’s path sprintfed into them; otherwise they’re just
catenated together.
# File lib/rdoc/generator.rb, line 100
def cvs_url(url, full_path)
if /%s/ =~ url
return sprintf( url, full_path )
else
return url + full_path
end
end