提交 ec432122 编写于 作者: J Jeremy Kemper

r4732@asus: jeremy | 2006-06-29 13:51:32 -0700

 Chop RAILS_ROOT from file path for readability. Preserve non-alphanumeric characters for uniqueness.


git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4514 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 f3aa7c1e
......@@ -474,7 +474,10 @@ def compiled_method_name(extension, template, file_name)
def compiled_method_name_file_path_segment(file_name)
if file_name
File.expand_path(file_name).gsub(/[^a-zA-Z0-9_]/, '_')
s = File.expand_path(file_name)
s.sub!(/^#{Regexp.escape(File.expand_path(RAILS_ROOT))}/, '') if defined?(RAILS_ROOT)
s.gsub!(/([^a-zA-Z0-9_])/) { $1[0].to_s }
s
else
(@@inline_template_count += 1).to_s
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册