This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
cvs_url(url, full_path)
public
Build a webcvs URL starting for the given url with
full_path appended as the destination path. If url
contains ā%sā full_path will be will replace the %s using
sprintf on the url.
# File lib/rdoc/generator/markup.rb, line 49
def cvs_url(url, full_path)
if /%s/ =~ url then
sprintf url, full_path
else
url + full_path
end
end