Mercurial > hg > soundsoftware-site
view app/controllers/gantts_controller.rb @ 894:4cea72d9bcb4 feature_55
Close obsolete branch feature_55
author | Chris Cannam |
---|---|
date | Fri, 04 Feb 2011 15:54:00 +0000 |
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