@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #267 from taichi/escape_file_path

escape svn repository file paths.

+2 -2
+1 -1
src/applications/diffusion/query/diff/DiffusionSvnDiffQuery.php
··· 140 140 return $repository->getRemoteCommandFuture( 141 141 'cat %s%s@%d', 142 142 $repository->getRemoteURI(), 143 - $ref, 143 + phutil_escape_uri($ref), 144 144 $rev); 145 145 } 146 146
+1 -1
src/applications/diffusion/query/filecontent/DiffusionSvnFileContentQuery.php
··· 16 16 '%C %s%s@%s', 17 17 $this->getNeedsBlame() ? 'blame --force' : 'cat', 18 18 $remote_uri, 19 - $path, 19 + phutil_escape_uri($path), 20 20 $commit); 21 21 } catch (CommandException $ex) { 22 22 $stderr = $ex->getStdErr();