##// END OF EJS Templates
Fixed: error on account/register when validation fails....
Fixed: error on account/register when validation fails. git-svn-id: http://redmine.rubyforge.org/svn/trunk@925 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r799:fa094a3fe5f8
r912:866e9e250371
Show More
show.rfpdf
10 lines | 308 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 }
%>
Jean-Philippe Lang
Merged IssuesController#export_pdf into IssuesController#show....
r799 <%= pdf.Output %>