Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93197022
DiffusionSvnRawDiffQuery.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Nov 26, 23:00
Size
848 B
Mime Type
text/x-php
Expires
Thu, Nov 28, 23:00 (2 d)
Engine
blob
Format
Raw Data
Handle
22593831
Attached To
rPH Phabricator
DiffusionSvnRawDiffQuery.php
View Options
<?php
final
class
DiffusionSvnRawDiffQuery
extends
DiffusionRawDiffQuery
{
protected
function
executeQuery
()
{
$drequest
=
$this
->
getRequest
();
$repository
=
$drequest
->
getRepository
();
$commit
=
$drequest
->
getCommit
();
$arc_root
=
phutil_get_library_root
(
'arcanist'
);
$against
=
$this
->
getAgainstCommit
();
if
(
$against
===
null
)
{
$against
=
$commit
-
1
;
}
$future
=
$repository
->
getRemoteCommandFuture
(
'diff --diff-cmd %s -x -U%d -r %d:%d %s'
,
$arc_root
.
'/../scripts/repository/binary_safe_diff.sh'
,
$this
->
getLinesOfContext
(),
$against
,
$commit
,
$repository
->
getSubversionPathURI
(
$drequest
->
getPath
()));
if
(
$this
->
getTimeout
())
{
$future
->
setTimeout
(
$this
->
getTimeout
());
}
list
(
$raw_diff
)
=
$future
->
resolvex
();
return
$raw_diff
;
}
}
Event Timeline
Log In to Comment