Page MenuHomePhabricator

D10977.id26357.diff
No OneTemporary

D10977.id26357.diff

diff --git a/src/applications/diffusion/conduit/DiffusionDiffQueryConduitAPIMethod.php b/src/applications/diffusion/conduit/DiffusionDiffQueryConduitAPIMethod.php
--- a/src/applications/diffusion/conduit/DiffusionDiffQueryConduitAPIMethod.php
+++ b/src/applications/diffusion/conduit/DiffusionDiffQueryConduitAPIMethod.php
@@ -159,6 +159,14 @@
$change = $changes[$path->getPath()];
+ foreach ($this->getSVNProperties($old) as $prop_name => $prop_value) {
+ $change->setOldProperty($prop_name, $prop_value);
+ }
+
+ foreach ($this->getSVNProperties($new) as $prop_name => $prop_value) {
+ $change->setNewProperty($prop_name, $prop_value);
+ }
+
return array($change);
}
@@ -195,6 +203,28 @@
$repository->getSubversionPathURI($ref, $rev));
}
+ private function getSVNProperties($spec) {
+ if (!$spec) {
+ return null;
+ }
+
+ $drequest = $this->getDiffusionRequest();
+ $repository = $drequest->getRepository();
+
+ list($ref, $rev) = $spec;
+ list($stdout) = $repository->execxRemoteCommand(
+ 'proplist -v %s --xml',
+ $repository->getSubversionPathURI($ref, $rev));
+
+ $properties = array();
+ $proplist = new SimpleXMLElement($stdout);
+ foreach ($proplist->target->property as $property) {
+ $properties[(string)$property['name']] = (string)$property;
+ }
+
+ return $properties;
+ }
+
private function getGitOrMercurialResult(ConduitAPIRequest $request) {
$drequest = $this->getDiffusionRequest();
$repository = $drequest->getRepository();

File Metadata

Mime Type
text/plain
Expires
Sat, Mar 22, 6:43 AM (2 w, 17 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7686114
Default Alt Text
D10977.id26357.diff (1 KB)

Event Timeline