зеркало из https://github.com/github/ruby.git
Should match the beginning/end of string
This commit is contained in:
Родитель
3ee63cfe88
Коммит
e62a60927e
|
@ -112,7 +112,7 @@ class RDoc::Servlet < WEBrick::HTTPServlet::AbstractServlet
|
|||
# GET request entry point. Fills in +res+ for the path, etc. in +req+.
|
||||
|
||||
def do_GET req, res
|
||||
req.path.sub!(/^#{Regexp.escape @mount_path}/o, '') if @mount_path
|
||||
req.path.sub!(/\A#{Regexp.escape @mount_path}/o, '') if @mount_path
|
||||
|
||||
case req.path
|
||||
when '/' then
|
||||
|
@ -150,9 +150,9 @@ class RDoc::Servlet < WEBrick::HTTPServlet::AbstractServlet
|
|||
|
||||
if klass = store.find_class_or_module(name) then
|
||||
res.body = generator.generate_class klass
|
||||
elsif page = store.find_text_page(name.sub(/_([^_]*)$/, '.\1')) then
|
||||
elsif page = store.find_text_page(name.sub(/_([^_]*)\z/, '.\1')) then
|
||||
res.body = generator.generate_page page
|
||||
elsif page = store.find_text_page(text_name.sub(/_([^_]*)$/, '.\1')) then
|
||||
elsif page = store.find_text_page(text_name.sub(/_([^_]*)\z/, '.\1')) then
|
||||
res.body = generator.generate_page page
|
||||
else
|
||||
not_found generator, req, res
|
||||
|
@ -419,7 +419,7 @@ version. If you're viewing Ruby's documentation, include the version of ruby.
|
|||
RDoc::Store.new RDoc::RI::Paths.system_dir, :system
|
||||
when 'site' then
|
||||
RDoc::Store.new RDoc::RI::Paths.site_dir, :site
|
||||
when /^extra-(\d+)$/ then
|
||||
when /\Aextra-(\d+)\z/ then
|
||||
index = $1.to_i - 1
|
||||
ri_dir = installed_docs[index][4]
|
||||
RDoc::Store.new ri_dir, :extra
|
||||
|
|
Загрузка…
Ссылка в новой задаче