Actions
Patch #1808
closedswitch depreciated rhtml to html.erb
Status:
Closed
Priority:
Normal
Assignee:
-
Category:
-
Target version:
-
Start date:
2008-08-25
Due date:
% Done:
0%
Estimated time:
Description
here's a rake task to do this while preserving svn history:
namespace 'views' do desc 'Renames all your rhtml views to erb' task 'rename' do Dir.glob('app/views/**/*.rhtml').each do |file| puts `svn mv #{file} #{file.gsub(/\.rhtml$/, '.html.erb')}` end end end
Updated by Jared Moody about 16 years ago
- Status changed from New to Resolved
- % Done changed from 0 to 100
closed via #1951
Updated by Jared Moody about 16 years ago
Updated by Mischa The Evil about 16 years ago
- Status changed from Resolved to Closed
- Target version set to 0.8
- Resolution set to Fixed
Updated by Eric Davis about 16 years ago
- Status changed from Closed to Reopened
- Target version deleted (
0.8) - % Done changed from 100 to 0
- Resolution deleted (
Fixed)
r1951 only renamed the plugin generator files and did not change the core views of Redmine.
Updated by Jean-Philippe Lang almost 16 years ago
- Tracker changed from Defect to Patch
Updated by Jan Niggemann (redmine.org team member) almost 12 years ago
- Status changed from Reopened to Closed
Closing this one, there's currently no file in 2.2.0 whose name contains rhtml.
Actions