##// END OF EJS Templates
Applied the flash notices patch by Matt Jones (slightly edited)....
Applied the flash notices patch by Matt Jones (slightly edited). flash[:notice] and flash[:error] are now used for notice/error messages. git-svn-id: http://redmine.rubyforge.org/svn/trunk@600 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r284:6a875eb69184
r597:2d5ac54d2eb9
Show More
export_pdf.rfpdf
9 lines | 306 B | text/plain | TextLexer
Jean-Philippe Lang
fix for #8973: Export feature(to csv/pdf) doesn't work in Japanese...
r284 <% pdf=IfpdfHelper::IFPDF.new(current_language)
Jean-Philippe Lang
Title property added for pdf export of an issue...
r223 pdf.SetTitle("#{@project.name} - ##{@issue.tracker.name} #{@issue.id}")
Jean-Philippe Lang
* single/multiple issues pdf export added...
r35 pdf.AliasNbPages
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@51 e93f8b46-1217-0410-a6f0-8f06a7374b81
r49 pdf.footer_date = format_date(Date.today)
Jean-Philippe Lang
* single/multiple issues pdf export added...
r35 pdf.AddPage
render :partial => 'issues/pdf', :locals => { :pdf => pdf, :issue => @issue }
%>
<%= pdf.Output %>