Page MenuHomePhabricator

Add a "/source/..." URI for Diffusion commits which redirects
ClosedPublic

Authored by epriestley on Oct 3 2017, 7:52 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Dec 15, 2:47 PM
Unknown Object (File)
Mon, Dec 9, 5:09 PM
Unknown Object (File)
Sun, Dec 8, 9:37 PM
Unknown Object (File)
Wed, Dec 4, 11:44 PM
Unknown Object (File)
Sun, Dec 1, 12:34 AM
Unknown Object (File)
Tue, Nov 26, 10:16 PM
Unknown Object (File)
Tue, Nov 26, 6:40 PM
Unknown Object (File)
Sat, Nov 23, 1:19 PM
Subscribers
None

Details

Summary

See PHI112. The install presumably wants to generate links to Diffusion commits from an external tool, but only knows the short name of the repository.

Provide a /source/phabricator/commit/abcdef908273 URI which redirects to the canonical URI for the commit.

Test Plan
  • Visited /source/ URI for a commit, got a redirect.
  • Visited normal URI for a commit, got a commit page.
  • Visited /branches/ and /tags/ for a /source/ repository, got proper pages.

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Just out of curiosity, what happens if a commit identifier collides with more than one commit hash?

This revision is now accepted and ready to land.Oct 3 2017, 8:05 PM

Hmm.. bad stuff, but pre-existing bad stuff:

$ git log --oneline --format=%H | cut -c1-6 | sort | uniq -c | sort -n
...
   2 bd3c23

Yields this:

https://secure.phabricator.com/rPbd3c23

...which fatals, probably on executeOne().

Expected a single result!

Better behavior would be to execute(), then special case for multiple results.

This revision was automatically updated to reflect the committed changes.