Page MenuHomePhabricator

Remarkup links to link to short url instead of long and fix commenting on Phurl's
ClosedPublic

Authored by lpriestley on Nov 13 2015, 10:54 PM.
Tags
None
Referenced Files
F18783081: D14477.id35080.diff
Mon, Oct 13, 3:31 AM
F18767744: D14477.diff
Wed, Oct 8, 12:09 AM
F18767698: D14477.id35017.diff
Tue, Oct 7, 11:52 PM
F18717803: D14477.diff
Mon, Sep 29, 2:29 PM
F18673548: D14477.id.diff
Thu, Sep 25, 11:06 AM
F18623949: D14477.id35017.diff
Mon, Sep 15, 6:13 PM
F18597665: D14477.diff
Sep 13 2025, 3:25 AM
F18590073: D14477.diff
Sep 12 2025, 5:07 AM
Subscribers

Details

Summary

Ref T6049, remarkup links to use short URLs and make commenting on Phurl's actually work

Test Plan
  • Create Phurl U123
  • Comment on that Phurl ((123))

Comment should link to /u/123

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

lpriestley retitled this revision from to Remarkup links to link to short url instead of long and fix commenting on Phurl's.
lpriestley updated this object.
lpriestley edited the test plan for this revision. (Show Details)
lpriestley added a reviewer: epriestley.
epriestley edited edge metadata.
epriestley added inline comments.
src/applications/phurl/remarkup/PhabricatorPhurlLinkRemarkupRule.php
10

(Possibly we should make ((U123)) and ((123)) equivalent at some point, or maybe even require the U... form.)

51–52

I think these should probably become methods on PhurlURL, like getDisplayName() and getRedirectURI() or similar: specifically, I think they'll have more callsites.

The $redirect logic should also probably be like this?

if (strlen($phurl->getAlias())) {
  return '/u/alias';
} else {
  return '/u/id';
}
This revision is now accepted and ready to land.Nov 15 2015, 4:44 PM
lpriestley marked an inline comment as done.
lpriestley edited edge metadata.

((U123)) should also remarkup as a redirect link to the URI for U123

This revision was automatically updated to reflect the committed changes.