OSDN Git Service

Issue#long_id no more used and removed
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 5 May 2007 15:55:50 +0000 (15:55 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 5 May 2007 15:55:50 +0000 (15:55 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@510 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/issues_controller.rb
app/models/issue.rb
app/views/issues/_pdf.rfpdf
app/views/projects/move_issues.rhtml

index 99dc687..9c16d29 100644 (file)
@@ -41,7 +41,7 @@ class IssuesController < ApplicationController
   def export_pdf
     @custom_values = @issue.custom_values.find(:all, :include => :custom_field)
     @options_for_rfpdf ||= {}
-    @options_for_rfpdf[:file_name] = "#{@project.name}_#{@issue.long_id}.pdf"
+    @options_for_rfpdf[:file_name] = "#{@project.name}_#{@issue.id}.pdf"
   end
 
   def edit
index 6dc812c..52aaa09 100644 (file)
@@ -82,10 +82,6 @@ class Issue < ActiveRecord::Base
   
   def after_save
     relations_from.each(&:set_issue_to_dates)
-  end  
-  
-  def long_id
-    "%05d" % self.id
   end
   
   def custom_value_for(custom_field)
index 39dfd90..4850668 100644 (file)
@@ -1,5 +1,5 @@
 <%     pdf.SetFontStyle('B',11)        \r
-       pdf.Cell(190,10, "#{issue.project.name} - #{issue.tracker.name} # #{issue.long_id} - #{issue.subject}")\r
+       pdf.Cell(190,10, "#{issue.project.name} - #{issue.tracker.name} # #{issue.id}: #{issue.subject}")\r
     pdf.Ln\r
     \r
     y0 = pdf.GetY\r
index 57fc51e..fd8edb2 100644 (file)
@@ -6,7 +6,7 @@
 <div class="box">
 <p><label><%= l(:label_issue_plural) %>:</label>
 <% for issue in @issues %>
-    <b><%= link_to issue.long_id, :controller => 'issues', :action => 'show', :id => issue %></b> - <%=h issue.subject %>
+    <%= link_to_issue issue %>: <%=h issue.subject %>
     <%= hidden_field_tag "issue_ids[]", issue.id %><br />
 <% end %>
 <i>(<%= @issues.length%> <%= lwr(:label_issue, @issues.length)%>)</i></p>