git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5108 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
e4103aab16
commit
d48a7e148e
|
@ -220,13 +220,11 @@ module Redmine
|
|||
end
|
||||
|
||||
# Returns list of nodes in the specified branch
|
||||
def nodes_in_branch(branch, path=nil, identifier_from=nil, identifier_to=nil, options={})
|
||||
p1 = scm_iconv(@path_encoding, 'UTF-8', path)
|
||||
def nodes_in_branch(branch, options={})
|
||||
hg_args = ['rhlog', '--template', '{node|short}\n', '--rhbranch', CGI.escape(branch)]
|
||||
hg_args << '--from' << CGI.escape(hgrev(identifier_from))
|
||||
hg_args << '--to' << CGI.escape(hgrev(identifier_to))
|
||||
hg_args << '--from' << CGI.escape(branch)
|
||||
hg_args << '--to' << '0'
|
||||
hg_args << '--limit' << options[:limit] if options[:limit]
|
||||
hg_args << CGI.escape(hgtarget(p1)) unless path.blank?
|
||||
hg(*hg_args) { |io| io.readlines.map { |e| e.chomp } }
|
||||
end
|
||||
|
||||
|
|
|
@ -286,21 +286,21 @@ begin
|
|||
'test_branch.latin-1',
|
||||
'test-branch-00',
|
||||
].each do |bra|
|
||||
nib0 = @adapter.nodes_in_branch(bra, '', bra, 0)
|
||||
nib0 = @adapter.nodes_in_branch(bra)
|
||||
assert nib0
|
||||
nib1 = @adapter.nodes_in_branch(bra, '', bra, 0, :limit => 1)
|
||||
nib1 = @adapter.nodes_in_branch(bra, :limit => 1)
|
||||
assert_equal 1, nib1.size
|
||||
case bra
|
||||
when 'branch (1)[2]&,%.-3_4'
|
||||
assert_equal 3, nib0.size
|
||||
assert_equal nib0[0], 'afc61e85bde7'
|
||||
nib2 = @adapter.nodes_in_branch(bra, '', bra, 0, :limit => 2)
|
||||
nib2 = @adapter.nodes_in_branch(bra, :limit => 2)
|
||||
assert_equal 2, nib2.size
|
||||
assert_equal nib2[1], '933ca60293d7'
|
||||
when @branch_char_1
|
||||
assert_equal 2, nib0.size
|
||||
assert_equal nib0[1], '08ff3227303e'
|
||||
nib2 = @adapter.nodes_in_branch(bra, '', bra, 0, :limit => 1)
|
||||
nib2 = @adapter.nodes_in_branch(bra, :limit => 1)
|
||||
assert_equal 1, nib2.size
|
||||
assert_equal nib2[0], '7bbf4c738e71'
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue