##// END OF EJS Templates
Gantt chart can now be exported to a graphic file (png)....
Gantt chart can now be exported to a graphic file (png). This functionality is only available if RMagick is present. git-svn-id: http://redmine.rubyforge.org/svn/trunk@666 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r660:edba1f692b5a
r660:edba1f692b5a
Show More
redmine.rb
11 lines | 287 B | text/x-ruby | RubyLexer
Jean-Philippe Lang
Added "Watch" functionality on issues. It allows users to receive mail notifications about issue changes....
r450 require 'redmine/version'
Jean-Philippe Lang
Text files can now be viewed online when browsing the repository....
r518 require 'redmine/mime_type'
Jean-Philippe Lang
Added "Watch" functionality on issues. It allows users to receive mail notifications about issue changes....
r450 require 'redmine/acts_as_watchable/init'
Jean-Philippe Lang
Added basic support for CVS and Mercurial SCMs....
r556
Jean-Philippe Lang
Gantt chart can now be exported to a graphic file (png)....
r660 begin
require_library_or_gem 'rmagick' unless Object.const_defined?(:Magick)
rescue LoadError
# RMagick is not available
end
Jean-Philippe Lang
Added Darcs basic support....
r570 REDMINE_SUPPORTED_SCM = %w( Subversion Darcs Mercurial Cvs )