diff options
author | Nicholas Seckar <nseckar@gmail.com> | 2005-10-27 17:09:00 +0000 |
---|---|---|
committer | Nicholas Seckar <nseckar@gmail.com> | 2005-10-27 17:09:00 +0000 |
commit | a7aa26906c31ad5ca3069e390085c1089c24311c (patch) | |
tree | 3aa7dda40ae208c373b354c2cb60c53175125c06 /actionpack | |
parent | e0332f59e446c43cd9815dfa70a590b7471e016e (diff) | |
download | rails-a7aa26906c31ad5ca3069e390085c1089c24311c.tar.gz rails-a7aa26906c31ad5ca3069e390085c1089c24311c.tar.bz2 rails-a7aa26906c31ad5ca3069e390085c1089c24311c.zip |
Recognize ./#{RAILS_ROOT} as RAILS_ROOT in error traces
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2769 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/CHANGELOG | 2 | ||||
-rw-r--r-- | actionpack/lib/action_controller/templates/rescues/_trace.rhtml | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index f7cccf98f9..cf11452c4b 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Recognize ./#{RAILS_ROOT} as RAILS_ROOT in error traces [Nicholas Seckar] + * Remove ARStore session fingerprinting. [Nicholas Seckar] * Fix obscure bug in ARStore. [Nicholas Seckar] diff --git a/actionpack/lib/action_controller/templates/rescues/_trace.rhtml b/actionpack/lib/action_controller/templates/rescues/_trace.rhtml index c773230f09..59dcf3d9e6 100644 --- a/actionpack/lib/action_controller/templates/rescues/_trace.rhtml +++ b/actionpack/lib/action_controller/templates/rescues/_trace.rhtml @@ -5,7 +5,7 @@ ["Full Trace", @exception.clean_backtrace] ] if defined?(RAILS_ROOT) - traces.each { |name, trace| trace.map! { |p| p.gsub(/^#{RAILS_ROOT}/, '<b>#{RAILS_ROOT}</b>') } } + traces.each { |name, trace| trace.map! { |p| p.gsub(/^(?:\.\/)?#{RAILS_ROOT}/, '<b>#{RAILS_ROOT}</b>') } } end names = traces.collect {|name, trace| name} %> |