Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15426272
D9595.id22987.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D9595.id22987.diff
View Options
diff --git a/src/differential/ArcanistDifferentialCommitMessage.php b/src/differential/ArcanistDifferentialCommitMessage.php
--- a/src/differential/ArcanistDifferentialCommitMessage.php
+++ b/src/differential/ArcanistDifferentialCommitMessage.php
@@ -19,27 +19,20 @@
$obj = new ArcanistDifferentialCommitMessage();
$obj->rawCorpus = $corpus;
- // Parse older-style "123" fields, or newer-style full-URI fields.
- // TODO: Remove support for older-style fields.
-
$match = null;
if (preg_match('/^Differential Revision:\s*(.*)/im', $corpus, $match)) {
$revision_id = trim($match[1]);
if (strlen($revision_id)) {
- if (preg_match('/^D?\d+$/', $revision_id)) {
- $obj->revisionID = (int)trim($revision_id, 'D');
+ $uri = new PhutilURI($revision_id);
+ $path = $uri->getPath();
+ $path = trim($path, '/');
+ if (preg_match('/^D\d+$/', $path)) {
+ $obj->revisionID = (int)trim($path, 'D');
} else {
- $uri = new PhutilURI($revision_id);
- $path = $uri->getPath();
- $path = trim($path, '/');
- if (preg_match('/^D\d+$/', $path)) {
- $obj->revisionID = (int)trim($path, 'D');
- } else {
- throw new ArcanistUsageException(
- "Invalid 'Differential Revision' field. The field should have a ".
- "Phabricator URI like 'http://phabricator.example.com/D123', ".
- "but has '{$match[1]}'.");
- }
+ throw new ArcanistUsageException(
+ "Invalid 'Differential Revision' field. The field should have a ".
+ "Phabricator URI like 'http://phabricator.example.com/D123', ".
+ "but has '{$match[1]}'.");
}
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Mar 24, 7:54 AM (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7719886
Default Alt Text
D9595.id22987.diff (1 KB)
Attached To
Mode
D9595: Drop support for parsing non-URL differential IDs from commit message.
Attached
Detach File
Event Timeline
Log In to Comment