##// END OF EJS Templates
Redirect to issue page after creating a new issue...
Redirect to issue page after creating a new issue Previous behavior was to redirect to the issue list with a "successful creation" message. This patch will redirect to the page for the newly-created issue, still with the "successful creation" message. This matches the behavior after editing an issue and also provides instant feedback for the user to see if anything went wrong. Closes #261 and uses the patch contained therein git-svn-id: http://redmine.rubyforge.org/svn/trunk@1243 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1024:6ae87d7c4c10
r1229:c67c375357ff
Show More
load_default_data.rake
29 lines | 810 B | text/x-ruby | RubyLexer
/ lib / tasks / load_default_data.rake
desc 'Load Redmine default configuration data'
namespace :redmine do
task :load_default_data => :environment do
include GLoc
set_language_if_valid('en')
puts
while true
print "Select language: "
print GLoc.valid_languages.sort {|x,y| x.to_s <=> y.to_s }.join(", ")
print " [#{GLoc.current_language}] "
lang = STDIN.gets.chomp!
break if lang.empty?
break if set_language_if_valid(lang)
puts "Unknown language!"
end
puts "===================================="
begin
Redmine::DefaultData::Loader.load(current_language)
puts "Default configuration data loaded."
rescue => error
puts "Error: " + error
puts "Default configuration data was not loaded."
end
end
end