mirror of
https://github.com/github/rails.git
synced 2026-01-30 00:38:00 -05:00
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
This commit is contained in:
@@ -474,7 +474,10 @@ module ActionView #:nodoc:
|
||||
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user