Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F426985
DiffusionMercurialMergedCommitsQuery.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
DiffusionMercurialMergedCommitsQuery.php
View Options
<?php
final
class
DiffusionMercurialMergedCommitsQuery
extends
DiffusionMergedCommitsQuery
{
protected
function
executeQuery
()
{
$request
=
$this
->
getRequest
();
$repository
=
$request
->
getRepository
();
list
(
$parents
)
=
$repository
->
execxLocalCommand
(
'parents --template=%s --rev %s'
,
'{node}
\\
n'
,
$request
->
getCommit
());
$parents
=
explode
(
"
\n
"
,
trim
(
$parents
));
if
(
count
(
$parents
)
<
2
)
{
// Not a merge commit.
return
array
();
}
// NOTE: In Git, the first parent is the "mainline". In Mercurial, the
// second parent is the "mainline" (the way 'git merge' and 'hg merge'
// work is also reversed).
$last_parent
=
last
(
$parents
);
list
(
$logs
)
=
$repository
->
execxLocalCommand
(
'log --template=%s --follow --limit %d --rev %s:0 --prune %s --'
,
'{node}
\\
n'
,
$this
->
getLimit
()
+
1
,
$request
->
getCommit
(),
$last_parent
);
$hashes
=
explode
(
"
\n
"
,
trim
(
$logs
));
// Remove the merge commit.
$hashes
=
array_diff
(
$hashes
,
array
(
$request
->
getCommit
()));
return
DiffusionQuery
::
loadHistoryForCommitIdentifiers
(
$hashes
,
$request
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 3, 3:44 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
58545
Default Alt Text
DiffusionMercurialMergedCommitsQuery.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment