Page MenuHomePhabricator

Tokenize external editor links so they can be safely materialized on the client
ClosedPublic

Authored by epriestley on Apr 18 2020, 9:31 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Mar 21, 10:33 AM
Unknown Object (File)
Feb 7 2024, 3:09 PM
Unknown Object (File)
Feb 5 2024, 3:57 AM
Unknown Object (File)
Feb 3 2024, 1:51 AM
Unknown Object (File)
Jan 17 2024, 8:18 PM
Unknown Object (File)
Jan 5 2024, 1:25 PM
Unknown Object (File)
Dec 29 2023, 4:28 PM
Unknown Object (File)
Dec 23 2023, 8:04 PM
Subscribers
None

Details

Summary

Ref T13515. Currently, opening a file to a particular line in an external editor relies on replacing "%l" with "%l" (which is escaped as "%25l") on the server, and then replacing "%25l" with the line number on the client. This will fail if the file path (or any other variable) contains "%l" in its unencoded form.

The parser also can't identify invalid variables.

Pull the parser out, formalize it, and make it generate an intermediate representation which can be sent to the client and reconstituted.

(This temporarily breaks Diffusion and permanently removes the weird, ancient integration in Dark Console.)

Test Plan
  • Added a bunch of tests for the actual parser.
  • Used "Open in Editor" in Differential.

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

This revision was not accepted when it landed; it landed in state Needs Review.Apr 19 2020, 4:02 PM
This revision was automatically updated to reflect the committed changes.