Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F427044
DiffusionMercurialCommitParentsQuery.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
950 B
Referenced Files
None
Subscribers
None
DiffusionMercurialCommitParentsQuery.php
View Options
<?php
final
class
DiffusionMercurialCommitParentsQuery
extends
DiffusionCommitParentsQuery
{
protected
function
executeQuery
()
{
$drequest
=
$this
->
getRequest
();
$repository
=
$drequest
->
getRepository
();
list
(
$stdout
)
=
$repository
->
execxLocalCommand
(
'log --debug --limit 1 --template={parents} --rev %s'
,
$drequest
->
getStableCommitName
());
$hashes
=
preg_split
(
'/
\s
+/'
,
trim
(
$stdout
));
foreach
(
$hashes
as
$key
=>
$value
)
{
// Mercurial parents look like "23:ad9f769d6f786fad9f76d9a" -- we want
// to strip out the local rev part.
list
(
$local
,
$global
)
=
explode
(
':'
,
$value
);
$hashes
[
$key
]
=
$global
;
// With --debug we get 40-character hashes but also get the "000000..."
// hash for missing parents; ignore it.
if
(
preg_match
(
'/^0+$/'
,
$global
))
{
unset
(
$hashes
[
$key
]);
}
}
return
self
::
loadCommitsByIdentifiers
(
$hashes
,
$drequest
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 3, 3:50 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
58585
Default Alt Text
DiffusionMercurialCommitParentsQuery.php (950 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment