mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
No description
5660684d7f
Summary: Fixes T5304. Mercurial features a "{branches}" template keyword, documented as: ``` branches List of strings. The name of the branch on which the changeset was committed. Will be empty if the branch name was default. ``` At some time long in the past, I misinterpreted this to mean "list of branches where the branch head is a descendant of the commit". It is more like "list of zero or one elements, possibly containing the name of the branch the commit was originally made to, if that branch was not 'default'". In fact, it seems like this is because a //very// long time in the past, Mercurial worked roughly like I expected: > Ages ago (2005), we had a very different and ultimately unworkable > approach to named branches that worked vaguely like .hgtags and allowed > multiple branch names per revision. http://marc.info/?l=mercurial-devel&m=129883069414855 This appears to be deprecated in modern Mercurial (it's not in the modern web documentation) although I can't find a commit about it so maybe that's just a documentation issue. In any case, `{branches}` seems to never be useful: `{branch}` provides the same information without the awkward "default-if-empty" case. Switch from `{branches}` to either `{branch}` (where that's good enough, notably in the hook engine) or `(descendants(%s) and head())`, which is equivalent to `--contains` in Git. This fixes pushing to branches with spaces in their names, and makes the "Branches" / "Contains" queries moderately more consistent. Test Plan: - Pushed to a Mercurial branch with a space in it. - Viewed list of branches in a Mercurial repository. - Viewed containing branches of a Mercurial commit in Diffusion. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T5304 Differential Revision: https://secure.phabricator.com/D9453 |
||
---|---|---|
bin | ||
conf | ||
externals | ||
resources | ||
scripts | ||
src | ||
support | ||
webroot | ||
.arcconfig | ||
.arclint | ||
.editorconfig | ||
.gitignore | ||
LICENSE | ||
NOTICE | ||
README |
Phabricator is an open source collection of web applications which help software companies build better software. Phabricator includes applications for: - reviewing and auditing source code; - hosting and browsing repositories; - assembling a party to venture forth; - tracking bugs; - hiding stuff from coworkers; and - also some other things. You can learn more about the project (and find links to documentation and resources) here: http://phabricator.org/ Phabricator is developed and maintained by Phacility. The first version of Phabricator was originally built at Facebook. LICENSE Phabricator is released under the Apache 2.0 license except as otherwise noted.