Mercurial > hg > soundsoftware-site
view app/controllers/gantts_controller.rb @ 866:2cd212a468b6 bug_152
Close obsolete branch bug_152
author | Chris Cannam |
---|---|
date | Wed, 11 May 2011 10:08:34 +0100 |
parents | 40f7cfd4df19 |
children | cbce1fd3b1b7 |
line wrap: on
line source
class GanttsController < ApplicationController menu_item :gantt before_filter :find_optional_project rescue_from Query::StatementInvalid, :with => :query_statement_invalid helper :gantt helper :issues helper :projects helper :queries include QueriesHelper helper :sort include SortHelper include Redmine::Export::PDF def show @gantt = Redmine::Helpers::Gantt.new(params) @gantt.project = @project retrieve_query @query.group_by = nil @gantt.query = @query if @query.valid? basename = (@project ? "#{@project.identifier}-" : '') + 'gantt' respond_to do |format| format.html { render :action => "show", :layout => !request.xhr? } format.png { send_data(@gantt.to_image, :disposition => 'inline', :type => 'image/png', :filename => "#{basename}.png") } if @gantt.respond_to?('to_image') format.pdf { send_data(@gantt.to_pdf, :type => 'application/pdf', :filename => "#{basename}.pdf") } end end def update show end end