Submitter | Yuya Nishihara |
---|---|
Date | Jan. 6, 2016, 3:29 p.m. |
Message ID | <0735de9eefe1567c0129.1452094167@mimosa> |
Download | mbox | patch |
Permalink | /patch/12569/ |
State | Accepted |
Headers | show |
Comments
Yuya Nishihara <yuya@tcha.org> writes: > # HG changeset patch > # User Yuya Nishihara <yuya@tcha.org> > # Date 1450877844 -32400 > # Wed Dec 23 22:37:24 2015 +0900 > # Node ID 0735de9eefe1567c0129d2acefd4be129a4c567f > # Parent 0e0d6e2c37cfe0c211bbfe250dee203ab93ab135 > chgserver: mark as a built-in extension Sure, that sounds fine to me. As chg becomes more tested, we can later move parts of it into (hopefully) core command server.
On Thu, 2016-01-07 at 00:29 +0900, Yuya Nishihara wrote: > # HG changeset patch > # User Yuya Nishihara <yuya@tcha.org> > # Date 1450877844 -32400 > # Wed Dec 23 22:37:24 2015 +0900 > # Node ID 0735de9eefe1567c0129d2acefd4be129a4c567f > # Parent 0e0d6e2c37cfe0c211bbfe250dee203ab93ab135 > chgserver: mark as a built-in extension These are queued for default, thanks. -- Mathematics is the supreme nostalgia of our time.
Patch
diff --git a/hgext/chgserver.py b/hgext/chgserver.py --- a/hgext/chgserver.py +++ b/hgext/chgserver.py @@ -48,6 +48,12 @@ from mercurial import ( util, ) +# Note for extension authors: ONLY specify testedwith = 'internal' for +# extensions which SHIP WITH MERCURIAL. Non-mainline extensions should +# be specifying the version(s) of Mercurial they are tested with, or +# leave the attribute unspecified. +testedwith = 'internal' + _log = commandserver.log # copied from hgext/pager.py:uisetup()