kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
246 lines
9.6 KiB
246 lines
9.6 KiB
15 years ago
|
require 'rubygems'
|
||
|
require 'prawn'
|
||
|
require 'prawn/measurement_extensions'
|
||
|
require 'net/http'
|
||
|
require 'rexml/document'
|
||
|
|
||
|
require 'yaml'
|
||
|
|
||
15 years ago
|
module Cards
|
||
15 years ago
|
class TaskboardCards
|
||
15 years ago
|
include Redmine::I18n
|
||
15 years ago
|
LABELS = YAML::load_file(File.dirname(__FILE__) + '/labels.yaml')
|
||
|
|
||
|
def self.selected_label
|
||
|
return nil if not Setting.plugin_redmine_backlogs[:card_spec]
|
||
|
return LABELS[Setting.plugin_redmine_backlogs[:card_spec]]
|
||
|
end
|
||
|
|
||
15 years ago
|
def initialize(lang)
|
||
|
set_language_if_valid lang
|
||
|
|
||
15 years ago
|
label = TaskboardCards.selected_label
|
||
|
raise "No label spec selected" if label.nil?
|
||
|
|
||
|
geom = Prawn::Document::PageGeometry::SIZES[label['papersize']]
|
||
|
raise "Paper size '#{label['papersize']} not supported" if geom.nil?
|
||
|
|
||
|
@paper_width = geom[0]
|
||
|
@paper_height = geom[1]
|
||
|
|
||
|
@top_margin = topts(label['top_margin'])
|
||
|
@vertical_pitch = topts(label['vertical_pitch'])
|
||
|
@height = topts(label['height'])
|
||
|
|
||
|
@left_margin = topts(label['left_margin'])
|
||
|
@horizontal_pitch = topts(label['horizontal_pitch'])
|
||
|
@width = topts(label['width'])
|
||
|
|
||
|
@across = label['across']
|
||
|
@down = label['down']
|
||
|
|
||
|
@inner_margin = topts(label['inner_margin']) || 1.mm
|
||
|
|
||
|
@pdf = Prawn::Document.new(
|
||
|
:page_layout => :portrait,
|
||
|
:left_margin => 0,
|
||
|
:right_margin => 0,
|
||
|
:top_margin => 0,
|
||
|
:bottom_margin => 0,
|
||
|
:page_size => label['papersize'])
|
||
|
|
||
|
@cards = 0
|
||
|
end
|
||
|
|
||
|
def self.fetch_labels
|
||
|
['avery-iso-templates.xml',
|
||
|
'avery-other-templates.xml',
|
||
|
'avery-us-templates.xml',
|
||
|
'brother-other-templates.xml',
|
||
|
'dymo-other-templates.xml',
|
||
|
'maco-us-templates.xml',
|
||
|
'misc-iso-templates.xml',
|
||
|
'misc-other-templates.xml',
|
||
|
'misc-us-templates.xml',
|
||
|
'pearl-iso-templates.xml',
|
||
|
'uline-us-templates.xml',
|
||
|
'worldlabel-us-templates.xml',
|
||
|
'zweckform-iso-templates.xml'].each {|url|
|
||
|
labels = Net::HTTP.get_response(URI.parse("http://git.gnome.org/browse/glabels/plain/templates/#{url}")).body
|
||
|
doc = REXML::Document.new(labels)
|
||
|
|
||
|
doc.elements.each('Glabels-templates/Template') do |specs|
|
||
|
label = nil
|
||
|
|
||
|
papersize = specs.attributes['size']
|
||
|
papersize = 'Letter' if papersize = 'US-Letter'
|
||
|
|
||
|
specs.elements.each('Label-rectangle') do |geom|
|
||
|
margin = nil
|
||
|
geom.elements.each('Markup-margin') do |m|
|
||
|
margin = m.attributes['size']
|
||
|
end
|
||
|
margin = "1mm" if margin.nil?
|
||
|
|
||
|
geom.elements.each('Layout') do |layout|
|
||
|
label = {
|
||
|
'inner_margin' => margin,
|
||
|
'across' => Integer(layout.attributes['nx']),
|
||
|
'down' => Integer(layout.attributes['ny']),
|
||
|
'top_margin' => layout.attributes['y0'],
|
||
|
'height' => geom.attributes['height'],
|
||
|
'vertical_pitch' => layout.attributes['dx'],
|
||
|
'left_margin' => layout.attributes['x0'],
|
||
|
'width' => geom.attributes['width'],
|
||
|
'horizontal_pitch' => layout.attributes['dy'],
|
||
|
'papersize' => papersize,
|
||
|
'source' => 'glabel'
|
||
|
}
|
||
|
end
|
||
|
end
|
||
|
|
||
|
next if label.nil?
|
||
|
|
||
|
key = "#{specs.attributes['brand']} #{specs.attributes['part']}"
|
||
|
|
||
|
LABELS[key] = label if not LABELS[key] or LABELS[key]['source'] == 'glabel'
|
||
|
|
||
|
specs.elements.each('Alias') do |also|
|
||
|
key = "#{also.attributes['brand']} #{also.attributes['part']}"
|
||
|
LABELS[key] = label.dup if not LABELS[key] or LABELS[key]['source'] == 'glabel'
|
||
|
end
|
||
|
end
|
||
|
}
|
||
|
|
||
|
File.open(File.dirname(__FILE__) + '/labels.yaml', 'w') do |dump|
|
||
|
YAML.dump(LABELS, dump)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
attr_reader :pdf
|
||
|
|
||
|
def task_header(t)
|
||
|
return "#{t.id}: #{t.subject}"
|
||
|
end
|
||
|
|
||
|
def story_header(s)
|
||
|
pos = (s.position.nil? ? '?' : s.position)
|
||
|
return "#{pos} / #{s.id}: #{s.subject}"
|
||
|
end
|
||
|
|
||
|
def card(issue, type)
|
||
|
row = (@cards % @down) + 1
|
||
|
col = ((@cards / @down) % @across) + 1
|
||
|
@cards += 1
|
||
|
|
||
|
@pdf.start_new_page if row == 1 and col == 1 and @cards != 1
|
||
|
|
||
|
parent_story = issue.story
|
||
|
|
||
|
# card bounds
|
||
|
@pdf.bounding_box self.top_left(row, col), :width => @width, :height => @height do
|
||
|
@pdf.line_width = 0.5
|
||
|
@pdf.stroke do
|
||
|
@pdf.stroke_bounds
|
||
|
|
||
|
# card margin
|
||
|
@pdf.bounding_box [@inner_margin, @height - @inner_margin],
|
||
|
:width => @width - (2 * @inner_margin),
|
||
|
:height => @height - (2 * @inner_margin) do
|
||
|
|
||
|
scoresize = 0
|
||
|
@y = @pdf.bounds.height
|
||
|
@pdf.font_size(12) do
|
||
|
score = (type == :task ? issue.estimated_hours : issue.story_points)
|
||
|
score ||= '?'
|
||
|
score = "#{score} #{type == :task ? l(:label_hours) : l(:label_points)}"
|
||
|
scoresize = @pdf.width_of(" #{score} ")
|
||
|
|
||
|
text_box(score, {
|
||
|
:width => scoresize,
|
||
|
:height => @pdf.font.height
|
||
|
}, pdf.bounds.width - scoresize)
|
||
|
end
|
||
|
|
||
|
@y = @pdf.bounds.height
|
||
|
pos = parent_story.position ? parent_story.position : l(:label_not_prioritized)
|
||
|
trail = (issue.self_and_ancestors.reverse.collect{|i| "#{i.tracker.name} ##{i.id}"}.join(" : ")) + " (#{pos})"
|
||
|
@pdf.font_size(6) do
|
||
|
text_box(trail, {
|
||
|
:width => pdf.bounds.width - scoresize,
|
||
|
:height => @pdf.font.height,
|
||
|
:style => :italic
|
||
|
})
|
||
|
end
|
||
|
|
||
|
|
||
|
@pdf.font_size(6) do
|
||
|
parent = (type == :task ? parent_story.subject : (issue.fixed_version ? issue.fixed_version.name : I18n.t(:backlogs_product_backlog)))
|
||
|
text_box parent, {
|
||
|
:width => pdf.bounds.width - scoresize,
|
||
|
:height => @pdf.font.height
|
||
|
}
|
||
|
end
|
||
|
|
||
|
text_box issue.subject, {
|
||
|
:width => pdf.bounds.width,
|
||
|
:height => @pdf.font.height * 2
|
||
|
}
|
||
|
@pdf.line [0, @y], [pdf.bounds.width, @y]
|
||
|
@y -= 2
|
||
|
|
||
|
@pdf.font_size(8) do
|
||
|
text_box issue.description || issue.subject , {
|
||
|
:width => pdf.bounds.width,
|
||
|
:height => @y - 8
|
||
|
}
|
||
|
end
|
||
|
|
||
|
@pdf.font_size(6) do
|
||
|
category = issue.category ? "#{l(:field_category)}: #{issue.category.name}" : ''
|
||
|
catsize = @pdf.width_of(" #{category} ")
|
||
|
text_box(category, {
|
||
|
:width => catsize,
|
||
|
:height => @pdf.font.height
|
||
|
}, pdf.bounds.width - catsize)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def add(story, add_tasks = true)
|
||
|
if add_tasks
|
||
|
story.descendants.each {|task|
|
||
|
card(task, :task)
|
||
|
}
|
||
|
end
|
||
|
|
||
|
card(story, :story)
|
||
|
end
|
||
|
|
||
|
def text_box(s, options, x = 0)
|
||
|
box = Prawn::Text::Box.new(s, options.merge(:overflow => :ellipses, :at => [x, @y], :document => @pdf))
|
||
|
box.render
|
||
|
@y -= (options[:height] + (options[:size] || @pdf.font_size) / 2)
|
||
|
return box
|
||
|
end
|
||
|
|
||
|
def topts(m)
|
||
|
return nil if m.class == NilClass
|
||
|
return Integer(m[0..-3]).mm if m =~ /mm$/
|
||
|
return Integer(m[0..-3]).cm if m =~ /cm$/
|
||
|
return Integer(m[0..-3]).in if m =~ /in$/
|
||
|
return Integer(m[0..-3]).pt if m =~ /pt$/
|
||
|
return Integer(m)
|
||
|
end
|
||
|
|
||
|
def top_left(row, col)
|
||
|
top = @paper_height - (@top_margin + @vertical_pitch * (row - 1))
|
||
|
left = @left_margin + (@horizontal_pitch * (col - 1))
|
||
|
return [left, top]
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|