Re: [PATCH 1 of 7] vfs: use propertycache for open

2016-08-11 Thread Augie Fackler
On Fri, Aug 05, 2016 at 03:59:14PM +0200, Pierre-Yves David wrote: > # HG changeset patch > # User Pierre-Yves David > # Date 1470322610 -7200 > # Thu Aug 04 16:56:50 2016 +0200 > # Node ID 9b65c0820c940442454e5f92a9475c4ec97f705c > # Parent

Re: [PATCH 3 of 3] debugobsolete: add formatter support (issue5134)

2016-08-16 Thread Augie Fackler
On Tue, Aug 16, 2016 at 05:00:37PM +0900, Yuya Nishihara wrote: > # HG changeset patch > # User Yuya Nishihara > # Date 1471244875 -32400 > # Mon Aug 15 16:07:55 2016 +0900 > # Node ID d80c1a19fa4c15953f312b75f0403ec897ec7fbd > # Parent

Re: [PATCH] obsolete: move branch cache debug message to proper location

2016-08-16 Thread Augie Fackler
On Mon, Aug 08, 2016 at 10:05:57PM -0700, Gregory Szorc wrote: > # HG changeset patch > # User Gregory Szorc > # Date 1470719070 25200 > # Mon Aug 08 22:04:30 2016 -0700 > # Node ID a35b82be446e0fe4d35ad9a858f9fcc7ad1b3cd5 > # Parent

Re: [PATCH 5 of 5 V2] py3: import builtin wrappers automagically by code transformer

2016-08-16 Thread Augie Fackler
On Tue, Aug 16, 2016 at 05:50:46PM +0900, Yuya Nishihara wrote: > # HG changeset patch > # User Yuya Nishihara > # Date 1471318515 -32400 > # Tue Aug 16 12:35:15 2016 +0900 > # Node ID 30c0fc2f9d07b0251e24ff1a61a23416038022c4 > # Parent

Re: [PATCH 3 of 3] listkeypattern: add listkeypattern wireproto method

2016-08-17 Thread Augie Fackler
On Tue, Aug 16, 2016 at 06:39:38PM -0700, Gregory Szorc wrote: > On Tue, Aug 16, 2016 at 5:22 PM, Pierre-Yves David > wrote: > > On 08/14/2016 07:17 PM, Gregory Szorc wrote: [snip] > >> I think introducing a new wire protocol command is the correct way to > >>

Re: [PATCH 9 of 9 RFC] profiling: make statprof the default profiler (BC)

2016-08-17 Thread Augie Fackler
On Mon, Aug 15, 2016 at 10:25:16PM -0700, Gregory Szorc wrote: > # HG changeset patch > # User Gregory Szorc > # Date 1471221528 25200 > # Sun Aug 14 17:38:48 2016 -0700 > # Node ID d88d80210ff4351734d63b50e1af75f398af8963 > # Parent

Re: [PATCH 2 of 2] match: remove matchessubrepo method

2016-08-17 Thread Augie Fackler
On Tue, Aug 16, 2016 at 03:42:34PM +, Hannes Oldenburg wrote: > # HG changeset patch > # User Hannes Oldenburg > # Date 1471335676 0 > # Tue Aug 16 08:21:16 2016 + > # Node ID 1dc53807ae73733ab5655e22f56ccf99ab7688ff > # Parent

[PATCH] cmdutil: remove forwarding methods per deprecation policy

2017-02-03 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486155679 18000 # Fri Feb 03 16:01:19 2017 -0500 # Node ID 88a67501322af79870758125007ecd1a71c6fc89 # Parent 1791be8a95c5d59cb8dd96b1479e24ad4470a9b6 cmdutil: remove forwarding methods per deprecation policy diff

Re: [PATCH v3 rebased] pager: migrate heavily-used extension into core

2017-02-06 Thread Augie Fackler
> On Feb 6, 2017, at 14:47, Bryan O'Sullivan wrote: > > # HG changeset patch > # User Bryan O'Sullivan > # Date 1486160890 28800 > # Fri Feb 03 14:28:10 2017 -0800 > # Node ID ae22925dafd4a270cb80a7bb54c9d70bce49a633 > # Parent

Re: [PATCH] chg: verify XDG_RUNTIME_DIR

2017-02-06 Thread Augie Fackler
> On Feb 6, 2017, at 20:03, Jun Wu wrote: > > # HG changeset patch > # User Jun Wu > # Date 1486429266 28800 > # Mon Feb 06 17:01:06 2017 -0800 > # Node ID 8081cb8c346f1ccfa8c98e94d7e25cdfccafeb06 > # Parent b6c051cd1231910b0981edb01b173cd53a3338d0 > #

Re: [PATCH v2] pager: migrate heavily-used extension into core

2017-02-06 Thread Augie Fackler
> On Feb 6, 2017, at 19:26, Jun Wu wrote: > >> As a sketch of where this is headed, API-wise: >> >> class ui: >> def pager(self, command, category): > > Just to confirm if I understand correctly, command and category are only > used to find out the actual pager command from the

Re: [PATCH] check-code: permit functools.reduce

2017-02-06 Thread Augie Fackler
> On Feb 6, 2017, at 17:22, Yedidya Feldblum wrote: > > # HG changeset patch > # User Yedidya Feldblum > # Date 1485038593 28800 > # Sat Jan 21 14:43:13 2017 -0800 > # Node ID 47d8e895ccb734f0219dd046795b042da002b06b > # Parent

Re: [PATCH v2] pager: migrate heavily-used extension into core

2017-02-06 Thread Augie Fackler
> On Feb 6, 2017, at 18:32, Sean Farley <s...@farley.io> wrote: > > Augie Fackler <r...@durin42.com> writes: > >>> On Feb 6, 2017, at 18:04, Sean Farley <s...@farley.io> wrote: >>> >>> Augie Fackler <r...@durin42.com> writes: &

Re: [PATCH 1 of 3 pager-in-core-prep] pager: add a test of --pager=no functionality

2017-02-07 Thread Augie Fackler
great way in mind to split that series, so it's probably worth someone's time to eyeball things in advance a bit. On Tue, Feb 7, 2017 at 5:20 PM, Augie Fackler <r...@durin42.com> wrote: > # HG changeset patch > # User Augie Fackler <au...@google.com> > # Date 1486433735 18000 >

[PATCH 1 of 3 pager-in-core-prep] pager: add a test of --pager=no functionality

2017-02-07 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486433735 18000 # Mon Feb 06 21:15:35 2017 -0500 # Node ID f95d0ac806b945d821ca131a2e59b7cf778bcd5a # Parent a68510b69f413545722c086eaeb840dd5e8305b4 pager: add a test of --pager=no functionality I'm about to

[PATCH 3 of 3 pager-in-core-prep] tests: switch "this command isn't paged" example to id

2017-02-07 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486443452 18000 # Mon Feb 06 23:57:32 2017 -0500 # Node ID 07e0e3c7182191c8e7a8dc91596dba2c7984 # Parent 91de753aae7cc8594e77b20e26b2a1f8cb017e8f tests: switch "this command isn't paged" example

[PATCH 2 of 3 pager-in-core-prep] tests: update test-i18n.t to not depend on the pager extension

2017-02-07 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486505321 18000 # Tue Feb 07 17:08:41 2017 -0500 # Node ID 91de753aae7cc8594e77b20e26b2a1f8cb017e8f # Parent f95d0ac806b945d821ca131a2e59b7cf778bcd5a tests: update test-i18n.t to not depend on the pager extension I'm

Re: Backwards compatibility before all else? [was Re: [PATCH v2] pager: migrate heavily-used extension into core]

2017-02-06 Thread Augie Fackler
> On Feb 6, 2017, at 15:00, Bryan O'Sullivan <b...@serpentine.com> wrote: > > On Sun, Feb 5, 2017 at 7:24 PM, Augie Fackler <r...@durin42.com> wrote: > > > I'm inclined to *not* add special code to see if the old pager extension > > has been disabled. That

Re: Google Summer of Code 2017.

2017-02-06 Thread Augie Fackler
> On Feb 5, 2017, at 18:45, Pulkit Goyal <7895pul...@gmail.com> wrote: > > The wiki page for Python GSoC 2017 states that interested organisations need > to apply as a sub-org before 8th Feb[1]. Taking part under the Python > Software Foundation umbrella will be good, we participated last time

Re: [PATCH v2] pager: migrate heavily-used extension into core

2017-02-06 Thread Augie Fackler
> On Feb 6, 2017, at 18:04, Sean Farley <s...@farley.io> wrote: > > Augie Fackler <r...@durin42.com> writes: > >> (sending again because this seems to have gotten stuck somewhere...) >> (+yuya explicitly for chg thoughts, +smf so someone else can forward

Re: [PATCH v2] pager: migrate heavily-used extension into core

2017-02-06 Thread Augie Fackler
(sending again because this seems to have gotten stuck somewhere...) (+yuya explicitly for chg thoughts, +smf so someone else can forward to the list if it's stuck again) On Fri, Feb 03, 2017 at 04:16:09PM -0800, Bryan O'Sullivan wrote: > # HG changeset patch > # User Bryan O'Sullivan

Re: [PATCH] dispatch: treat SIGPIPE as a termination signal (BC)

2017-02-07 Thread Augie Fackler
> On Feb 7, 2017, at 15:28, Simon Farnsworth wrote: > > On 07/02/2017 20:17, Jun Wu wrote: >> This approach looks good to me. The only problem is it will print "killed!" >> on SIGPIPE so maybe a follow-up to make it silent. >> > > Is there a practical case where "killed!" on

Re: [PATCH 1 of 6 v2] pager: don't terminate with extreme prejudice on SIGPIPE (BC)

2017-02-07 Thread Augie Fackler
On Tue, Feb 7, 2017 at 2:05 PM, Jun Wu wrote: > Excerpts from Yuya Nishihara's message of 2017-02-03 22:59:07 +0900: >> On Thu, 2 Feb 2017 12:04:09 -0800, Bryan O'Sullivan wrote: >> > On Thu, Feb 2, 2017 at 11:18 AM, Simon Farnsworth wrote: >> > >> > > pager: don't

Re: [PATCH v2] pager: migrate heavily-used extension into core

2017-02-05 Thread Augie Fackler
> On Feb 5, 2017, at 9:29 PM, Bryan O'Sullivan wrote: > > > On Sun, Feb 5, 2017 at 1:44 AM, Yuya Nishihara wrote: > I like the direction of this patch, but this still involves a behavior > change. If PAGER variable is set but pager extension disabled, pager

Re: [PATCH 2 of 3 stable] tests: correct (I think) command in test-largefiles-update

2017-02-01 Thread Augie Fackler
> On Jan 31, 2017, at 19:50, Mads Kiilerich wrote: > > IIRC, some of the random failures I have seen wasn't in --check failing the > check. Instead, later operations showed that this --check silently had failed > to detect changes. Turning it into --clean would thus not

Re: [PATCH STABLE] test-highlight: add normalization rule for Pygments 2.2

2017-01-30 Thread Augie Fackler
> On Jan 30, 2017, at 09:47, Anton Shestakov wrote: > > On Mon, 30 Jan 2017 23:12:56 +0900 > Yuya Nishihara wrote: > >> # HG changeset patch >> # User Yuya Nishihara >> # Date 1485784220 -32400 >> # Mon Jan 30 22:50:20 2017 +0900 >> #

Re: [PATCH] help: replace patterns with matching

2017-01-30 Thread Augie Fackler
> On Jan 30, 2017, at 12:16, Martin von Zweigbergk > wrote: > > On Mon, Jan 30, 2017 at 5:55 AM, Yuya Nishihara wrote: >> On Tue, 24 Jan 2017 21:39:45 -0500, Matt Harbison wrote: >>> On Tue, 24 Jan 2017 01:42:09 -0500, timeless wrote:

[PATCH 2 of 3 stable] tests: correct (I think) command in test-largefiles-update

2017-01-30 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1485817397 18000 # Mon Jan 30 18:03:17 2017 -0500 # Branch stable # Node ID b4118549138f0872c218835d3ae10c9e70d867de # Parent d717001c36eb9d184b6c83874feb600adc22e8e7 tests: correct (I think) command in test-larg

[PATCH 1 of 3 stable] tests: expand flags to long form in test-largefiles-update.t

2017-01-30 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1485817041 18000 # Mon Jan 30 17:57:21 2017 -0500 # Branch stable # Node ID d717001c36eb9d184b6c83874feb600adc22e8e7 # Parent 312b861924c89716d9bdd28dd8698665ef6d0498 tests: expand flags to long form in test-larg

Re: [PATCH 3 of 3 stable] tests: document probable bug in test-largefiles-update.t

2017-01-30 Thread Augie Fackler
(+marmoute, martinvonz per irc chat, +kiilerix since you touched this area most recently) > On Jan 30, 2017, at 6:54 PM, Augie Fackler <r...@durin42.com> wrote: > > # HG changeset patch > # User Augie Fackler <au...@google.com> > # Date 1485817557 18000 > #

Re: [PATCH 1 of 4] runtests: add a function to test if IPv6 is available

2017-02-15 Thread Augie Fackler
On Wed, Feb 15, 2017 at 06:57:37PM -0800, Jun Wu wrote: > Excerpts from Augie Fackler's message of 2017-02-15 21:32:38 -0500: > > On Wed, Feb 15, 2017 at 06:26:11PM -0800, Jun Wu wrote: > > > Excerpts from Augie Fackler's message of 2017-02-15 21:23:37 -0500: > > > > I'm not overjoyed at the

Re: [PATCH] runtests: check ports on IPv6 address

2017-02-15 Thread Augie Fackler
> On Feb 9, 2017, at 8:59 AM, Jun Wu wrote: > > # HG changeset patch > # User Jun Wu > # Date 1486648674 28800 > # Thu Feb 09 05:57:54 2017 -0800 > # Node ID 93e23f7b87a4ab456053b6ba573615be16c6c4b0 > # Parent a68510b69f413545722c086eaeb840dd5e8305b4 > #

Re: [PATCH 1 of 4] runtests: add a function to test if IPv6 is available

2017-02-15 Thread Augie Fackler
On Wed, Feb 15, 2017 at 04:50:14PM -0800, Jun Wu wrote: > # HG changeset patch > # User Jun Wu > # Date 1487204311 28800 > # Wed Feb 15 16:18:31 2017 -0800 > # Node ID a70fa1e0fcdb11980338d72dde33dfe047bda7c2 > # Parent e5363cb96233861fc99f7e9b85d7884d3121558c > # Available At

Re: [PATCH] runtests: check ports on IPv6 address

2017-02-15 Thread Augie Fackler
> On Feb 15, 2017, at 11:24 PM, Martin von Zweigbergk <martinv...@google.com> > wrote: > > On Wed, Feb 15, 2017 at 8:23 PM, Martin von Zweigbergk > <martinv...@google.com> wrote: >> On Wed, Feb 15, 2017 at 8:12 PM, Augie Fackler <r...@durin42.com> wrot

Re: [PATCH] bookmarks: fix HG_PENDING handling

2017-02-15 Thread Augie Fackler
foozy, how does this (and timeless' other patch in the same basic area) relate to the patches you said you've got coming? Thanks! Augie On Tue, Feb 14, 2017 at 04:19:45PM +, timeless wrote: > # HG changeset patch > # User timeless > # Date 1487089111 0 > # Tue Feb

Re: [PATCH 1 of 4] runtests: add a function to test if IPv6 is available

2017-02-15 Thread Augie Fackler
On Wed, Feb 15, 2017 at 06:26:11PM -0800, Jun Wu wrote: > Excerpts from Augie Fackler's message of 2017-02-15 21:23:37 -0500: > > I'm not overjoyed at the static default. Is there a reason to use the > > static default instead of checking HGPORT, so that multiple users on a > > single box (such as

Re: [PATCH 4 of 4] runtests: unindent an "if True" block

2017-02-15 Thread Augie Fackler
On Wed, Feb 15, 2017 at 04:50:17PM -0800, Jun Wu wrote: > # HG changeset patch > # User Jun Wu > # Date 1487204998 28800 > # Wed Feb 15 16:29:58 2017 -0800 > # Node ID c5bdb942d324dcd732d277457d11eff7dc6aacc3 > # Parent bacc5256a49b34d07616c1e60e119a74ac721b7a > # Available At

Re: [PATCH 8 of 9 pager v2] annotate: migrate to modern pager API

2017-02-19 Thread Augie Fackler
> On Feb 18, 2017, at 9:32 PM, Jun Wu <qu...@fb.com> wrote: > > Excerpts from Yuya Nishihara's message of 2017-02-19 11:04:19 +0900: >> On Sat, 18 Feb 2017 15:39:08 -0500, Augie Fackler wrote: >>> >>>> On Feb 18, 2017, at 3:11 PM, Martin von Zwei

Re: [PATCH 2 of 2 RESEND] serve: mark --stdio and --cmdserver as "(ADVANCED)" flags

2017-02-23 Thread Augie Fackler
On Wed, Feb 22, 2017 at 06:30:02PM -0800, Jun Wu wrote: > # HG changeset patch > # User Jun Wu > # Date 1487816772 28800 > # Wed Feb 22 18:26:12 2017 -0800 > # Node ID 8bc0039a28785dce6e9aa05e7323986b92833068 > # Parent a9d70a1a09e4e391f8ec22d10831999d7c3e5294 > # Available At

Re: [PATCH] journal: enable pager

2017-02-23 Thread Augie Fackler
On Thu, Feb 23, 2017 at 10:48:29PM +0900, Yuya Nishihara wrote: > On Thu, 23 Feb 2017 00:35:25 -0800, Aaron Kushner wrote: > > # HG changeset patch > > # User Aaron Kushner > > # Date 1487833298 28800 > > # Wed Feb 22 23:01:38 2017 -0800 > > # Node ID

Re: [PATCH 2 of 2] pager: do not try to run an empty pager command

2017-02-23 Thread Augie Fackler
On Thu, Feb 23, 2017 at 10:06:55PM +0900, Yuya Nishihara wrote: > # HG changeset patch > # User Yuya Nishihara > # Date 1487852845 -32400 > # Thu Feb 23 21:27:25 2017 +0900 > # Node ID 84acad766a0fdd0591c68783ff02ce688e45968b > # Parent

[PATCH 04 of 19 pager] log: migrate to modern pager API

2017-02-19 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486439965 18000 # Mon Feb 06 22:59:25 2017 -0500 # Node ID 173c95da11848036895410797f8228c6562ce1d3 # Parent c263fdd944aa367df3fce4dc30c901eb7fdadd26 log: migrate to modern pager API diff --git a/hgext/pager.py b

[PATCH 06 of 19 pager] config: activate pager if not starting an editor

2017-02-19 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486440102 18000 # Mon Feb 06 23:01:42 2017 -0500 # Node ID 22e4e9bdff5ebdd7feabb9ed7a1ff6b72c0fe7e8 # Parent 047682a5c9af676f0ac0e8169715f4e0b29f3dc0 config: activate pager if not starting an editor This demons

[PATCH 07 of 19 pager] files: enable pager

2017-02-19 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486440168 18000 # Mon Feb 06 23:02:48 2017 -0500 # Node ID a7e54c6d8835bcda8aed14284046be7489a460a2 # Parent 22e4e9bdff5ebdd7feabb9ed7a1ff6b72c0fe7e8 files: enable pager diff --git a/mercurial/commands.py b/mer

[PATCH pager annotate-fix] annotate: start pager after we're sure we wont abort

2017-02-19 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1487534981 18000 # Sun Feb 19 15:09:41 2017 -0500 # Node ID 7353b9603c574678314f9525b3e56f31a4497bb9 # Parent 2c9e619ba9ee8e72370cc0f27f59da39947773b6 annotate: start pager after we're sure we wont abort This

[PATCH 02 of 19 pager] diff: migrate to modern pager API

2017-02-19 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486439906 18000 # Mon Feb 06 22:58:26 2017 -0500 # Node ID c0e57f44ebed1240c000850ce256d928cdb69312 # Parent 2832edeb9d5358b483ad0babbbf3f1dfb43aaf4c diff: migrate to modern pager API diff --git a/hgext/pager.py b

[PATCH 16 of 19 pager] status: enable pager

2017-02-19 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486440392 18000 # Mon Feb 06 23:06:32 2017 -0500 # Node ID efe1daeb054101ccdd14057062be826c2bd1180d # Parent bd38eff9de15d07ea9be63da3d79edd2d41f667d status: enable pager diff --git a/mercurial/commands.py b/mer

[PATCH 14 of 19 pager] paths: enable pager

2017-02-19 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486440361 18000 # Mon Feb 06 23:06:01 2017 -0500 # Node ID 500ccd82255b5769cd8199c379333139f172420d # Parent 1a66b4d02263e729191c832b6c1ede112a698279 paths: enable pager diff --git a/mercurial/commands.py b/mer

[PATCH 18 of 19 pager] tags: enable pager

2017-02-19 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486440436 18000 # Mon Feb 06 23:07:16 2017 -0500 # Node ID 190fc3b8c22dff15bf147ea74cc507757327251e # Parent 2bbd0d7759e102d7ed0a95e41b6f48bc7bddae48 tags: enable pager diff --git a/mercurial/commands.py b/mer

[PATCH 12 of 19 pager] manifest: enable pager

2017-02-19 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486440266 18000 # Mon Feb 06 23:04:26 2017 -0500 # Node ID 8068b33f645ab0e7770f709e9b9d8dd24f67d762 # Parent fbd10f8b093b23fb9dba972b5a05c7bcdfb904f2 manifest: enable pager diff --git a/mercurial/commands.py b/mer

[PATCH 17 of 19 pager] summary: enable pager

2017-02-19 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486440419 18000 # Mon Feb 06 23:06:59 2017 -0500 # Node ID 2bbd0d7759e102d7ed0a95e41b6f48bc7bddae48 # Parent efe1daeb054101ccdd14057062be826c2bd1180d summary: enable pager diff --git a/mercurial/commands.py b/mer

[PATCH 10 of 19 pager] incoming: enable pager

2017-02-19 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486440228 18000 # Mon Feb 06 23:03:48 2017 -0500 # Node ID b6f05836ba20bb8b25469a30aeed1b3506392bbf # Parent f6f080904a6ecac993f137b92d50bf4991f8d07c incoming: enable pager The design of incoming means we have to ac

[PATCH 03 of 19 pager] export: migrate to modern pager API

2017-02-19 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486439934 18000 # Mon Feb 06 22:58:54 2017 -0500 # Node ID c263fdd944aa367df3fce4dc30c901eb7fdadd26 # Parent c0e57f44ebed1240c000850ce256d928cdb69312 export: migrate to modern pager API diff --git a/hgext/pager.py b

[PATCH 11 of 19 pager] locate: enable pager

2017-02-19 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486440250 18000 # Mon Feb 06 23:04:10 2017 -0500 # Node ID fbd10f8b093b23fb9dba972b5a05c7bcdfb904f2 # Parent b6f05836ba20bb8b25469a30aeed1b3506392bbf locate: enable pager diff --git a/mercurial/commands.py b/mer

[PATCH 09 of 19 pager] help: enable pager

2017-02-19 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486440561 18000 # Mon Feb 06 23:09:21 2017 -0500 # Node ID f6f080904a6ecac993f137b92d50bf4991f8d07c # Parent 6dd615d163eb069405ba71fe968980d3340d4702 help: enable pager diff --git a/mercurial/commands.py b/mer

[PATCH 15 of 19 pager] resolve: enable pager

2017-02-19 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486440370 18000 # Mon Feb 06 23:06:10 2017 -0500 # Node ID bd38eff9de15d07ea9be63da3d79edd2d41f667d # Parent 500ccd82255b5769cd8199c379333139f172420d resolve: enable pager diff --git a/mercurial/commands.py b/mer

[PATCH 13 of 19 pager] outgoing: enable pager

2017-02-19 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486440284 18000 # Mon Feb 06 23:04:44 2017 -0500 # Node ID 1a66b4d02263e729191c832b6c1ede112a698279 # Parent 8068b33f645ab0e7770f709e9b9d8dd24f67d762 outgoing: enable pager The structure here is similar to in

[PATCH 19 of 19 pager] version: enable pager if --verbose is specified

2017-02-19 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486440529 18000 # Mon Feb 06 23:08:49 2017 -0500 # Node ID 2a054d530fa6763f0cf97a6e7193870ff8f2378b # Parent 190fc3b8c22dff15bf147ea74cc507757327251e version: enable pager if --verbose is specified `hg version`

Re: [PATCH 8 of 9 pager v2] annotate: migrate to modern pager API

2017-02-18 Thread Augie Fackler
> On Feb 18, 2017, at 3:11 PM, Martin von Zweigbergk > wrote: > >> > --- a/mercurial/commands.py >> > +++ b/mercurial/commands.py >> > @@ -361,6 +361,7 @@ def annotate(ui, repo, *pats, **opts): >> > >> > Returns 0 on success. >> > """ >> > +

Re: [PATCH py3] ui: construct _keepalnum list in a python3-friendly way

2017-02-19 Thread Augie Fackler
> On Feb 19, 2017, at 9:29 AM, Yuya Nishihara <y...@tcha.org> wrote: > > On Sat, 18 Feb 2017 22:58:10 +, Martijn Pieters wrote: >> On 16 Feb 2017, at 16:35, Augie Fackler <r...@durin42.com >> <mailto:r...@durin42.com>> wrote: >>> +if pycompa

Re: [PATCH] histedit: improve documentation and behaviour of dates (issue4820)

2017-02-19 Thread Augie Fackler
> On Feb 19, 2017, at 8:23 PM, Augie Fackler <r...@durin42.com> wrote: > > On Sun, Feb 19, 2017 at 02:51:46PM +1100, Ben Schmidt wrote: >> # HG changeset patch >> # User Ben Schmidt <insightf...@users.noreply.github.com> >> # Date 1487413828 -39600 &

Re: [PATCH 3 of 3] (RFC) scmutil: proxy revrange() through repo to break import cycles

2017-02-19 Thread Augie Fackler
On Sun, Feb 19, 2017 at 10:12:06PM +0900, Yuya Nishihara wrote: > # HG changeset patch > # User Yuya Nishihara > # Date 1487502018 -32400 > # Sun Feb 19 20:00:18 2017 +0900 > # Node ID fd48908e928243b8d06faaef518f1b862d8f2579 > # Parent

Re: RFC: bitmap storage for precursors and phases

2017-02-19 Thread Augie Fackler
On Fri, Feb 17, 2017 at 09:59:48PM +, Stanislau Hlebik wrote: > Excerpts from Bryan O'Sullivan's message of 2017-02-17 13:29:58 -0800: > > On Fri, Feb 17, 2017 at 10:30 AM, Jun Wu wrote: > > > > > Excerpts from Stanislau Hlebik's message of 2017-02-17 11:24:34 +: > > > > As

Re: RFC: bitmap storage for precursors and phases

2017-02-19 Thread Augie Fackler
On Fri, Feb 17, 2017 at 07:14:12PM -0800, Jun Wu wrote: > Excerpts from Bryan O'Sullivan's message of 2017-02-17 13:29:58 -0800: > > I think there are multiple topics being discussed: > > > > 1. How to solve the overhead loading hiddenrevs with minimal changes? > > 2. Why is the bitmap format

Re: [PATCH] histedit: improve documentation and behaviour of dates (issue4820)

2017-02-19 Thread Augie Fackler
> On Feb 20, 2017, at 12:00 AM, timeless wrote: > > Fwiw, recently someone identified that if's are roughly as expensive > as method calls. > > I /think/ that means it'd be better for: > +if self.firstdate(): > +commitopts['date'] = ctx.date() > +

Re: [PATCH 07 of 10 ipv6 V2] tests: use LOCALIP

2017-02-19 Thread Augie Fackler
> On Feb 19, 2017, at 8:06 PM, Martin von Zweigbergk <martinv...@google.com> > wrote: > > > > On Sun, Feb 19, 2017, 16:57 Augie Fackler <r...@durin42.com> wrote: >> On Feb 19, 2017, at 7:56 PM, Martin von Zweigbergk <martinv...@google.com> >> w

[PATCH 2 of 2 pager-tweaks] dispatch: consolidate pager flag handling to a single place

2017-02-19 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1487553371 18000 # Sun Feb 19 20:16:11 2017 -0500 # Node ID 86a8d5ba8a05485fa1f90927c41ead4e7bb84b54 # Parent 147cbbe59b257eac92c779361894ae361a788f83 dispatch: consolidate pager flag handling to a single place This

[PATCH 1 of 2 pager-tweaks] ui: rename neverpager to disablepager

2017-02-19 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1487553172 18000 # Sun Feb 19 20:12:52 2017 -0500 # Node ID 147cbbe59b257eac92c779361894ae361a788f83 # Parent 2c9e619ba9ee8e72370cc0f27f59da39947773b6 ui: rename neverpager to disablepager I agree this is a cleare

Re: [PATCH] histedit: improve documentation and behaviour of dates (issue4820)

2017-02-19 Thread Augie Fackler
On Sun, Feb 19, 2017 at 02:51:46PM +1100, Ben Schmidt wrote: > # HG changeset patch > # User Ben Schmidt > # Date 1487413828 -39600 > # Sat Feb 18 21:30:28 2017 +1100 > # Node ID 4037ff1c9713d73b21ddc182580eacacba254ea7 > # Parent

Re: [PATCH] help: add pointer how to narrow list of resolved/unresolved files (issue5469)

2017-02-19 Thread Augie Fackler
On Sat, Feb 18, 2017 at 06:48:27PM +0900, Yuya Nishihara wrote: > # HG changeset patch > # User Yuya Nishihara > # Date 1487408401 -32400 > # Sat Feb 18 18:00:01 2017 +0900 > # Node ID ceef988474afe31056a2d8fcef67526cf43c2d6f > # Parent

[PATCH 1 of 2 pager-tweaks] incoming: delay pager activation until right before printing changes

2017-02-21 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1487692393 18000 # Tue Feb 21 10:53:13 2017 -0500 # Node ID 54759a9a01b70dc90fe8db95023f18244b50a7c4 # Parent 59e69ed81776f0186cb6e6c69f8d7659afab26b7 incoming: delay pager activation until right before printing c

[PATCH 2 of 2 pager-endgame] pager: add a config knob to just globally turn off the pager

2017-02-21 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486505605 18000 # Tue Feb 07 17:13:25 2017 -0500 # Node ID 390e26db66994cc2f627933815db02353958289f # Parent 589dcabe2b7a2b9f2d49646d710335e5a70ad492 pager: add a config knob to just globally turn off the pager diff

[PATCH 1 of 2 pager-endgame] pager: move most help to a new help topic and deprecate extension

2017-02-21 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1486444073 18000 # Tue Feb 07 00:07:53 2017 -0500 # Node ID 589dcabe2b7a2b9f2d49646d710335e5a70ad492 # Parent 59e69ed81776f0186cb6e6c69f8d7659afab26b7 pager: move most help to a new help topic and deprecate extension

[PATCH 2 of 2 pager-dispatch-tweaks] dispatch: rearrange 'unknown command' code to better employ pager

2017-02-21 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1487704805 18000 # Tue Feb 21 14:20:05 2017 -0500 # Node ID 52083816be40edfac2e3e052ebe4d828c6c4a1c6 # Parent f489d1ec2070f25a09f571177b97d8284b3b1932 dispatch: rearrange 'unknown command' code to better employ

[PATCH 1 of 2 pager-dispatch-tweaks] help: move rst formatting of help documents into help.py

2017-02-21 Thread Augie Fackler
# HG changeset patch # User Augie Fackler <au...@google.com> # Date 1487704651 18000 # Tue Feb 21 14:17:31 2017 -0500 # Node ID f489d1ec2070f25a09f571177b97d8284b3b1932 # Parent 59e69ed81776f0186cb6e6c69f8d7659afab26b7 help: move rst formatting of help documents into help.py This

Re: [PATCH] histedit: improve documentation and behaviour of dates (issue4820)

2017-02-21 Thread Augie Fackler
On Mon, Feb 20, 2017 at 12:17 AM, Ben Schmidt wrote: > I recognise there are probably use cases for the current 'roll' > behaviour as well. What I'm primarily interested in is solving the > problems raised in the bug, so if we can do that another way, such as >

Re: [PATCH 09 of 19 pager] help: enable pager

2017-02-21 Thread Augie Fackler
> On Feb 21, 2017, at 07:58, Yuya Nishihara <y...@tcha.org> wrote: > > On Sun, 19 Feb 2017 18:13:00 -0500, Augie Fackler wrote: >> # HG changeset patch >> # User Augie Fackler <au...@google.com> >> # Date 1486440561 18000 >> #

Re: [PATCH 3 of 4 V3] update: also suggest --merge when non-linear update is aborted

2017-02-21 Thread Augie Fackler
> On Feb 20, 2017, at 05:38, Gábor STEFANIK wrote: > >> On Wed, Feb 15, 2017 at 12:56:41PM -0800, Martin von Zweigbergk via >> Mercurial-devel wrote: >>> # HG changeset patch >>> # User Martin von Zweigbergk # Date >> 1487140898 >>> 28800 >>> #

Re: [PATCH] repoview: separate cache hash computation from cache reading

2017-02-21 Thread Augie Fackler
On Mon, Feb 20, 2017 at 01:56:19AM -0800, Stanislau Hlebik wrote: > # HG changeset patch > # User Stanislau Hlebik > # Date 1487584447 28800 > # Mon Feb 20 01:54:07 2017 -0800 > # Node ID cb1151ce14f7ec9e2ca991bc8bd590020ec4b061 > # Parent

Re: [PATCH 5 of 5] localrepo: check HG_PENDING strictly

2017-02-21 Thread Augie Fackler
On Tue, Feb 21, 2017 at 01:28:04AM +0900, FUJIWARA Katsunori wrote: > # HG changeset patch > # User FUJIWARA Katsunori > # Date 1487607660 -32400 > # Tue Feb 21 01:21:00 2017 +0900 > # Node ID 0eebac024d47de9c94968f49bc9a0dcb2c8d3d2b > # Parent

Re: [PATCH 2 of 2] lock: include Linux pid namespace identifier in prefix

2017-02-13 Thread Augie Fackler
On Fri, Feb 10, 2017 at 04:50:55PM -0800, Jun Wu wrote: > I'd like to note that although this patch prevents repo corruption when > running hg inside different containers (which has different pid namespaces), > it does not prevent deadlock - if an hg process is SIGKILL-ed, every other > process

Re: [PATCH 2 of 2] serve: make the URL the same for `hg serve` and `hg serve -S`

2017-02-13 Thread Augie Fackler
> On Feb 13, 2017, at 15:13, mharbiso...@gmail.com wrote: > > On Feb 13, 2017 2:51 PM, Augie Fackler <r...@durin42.com> wrote: > > On Sun, Feb 12, 2017 at 09:37:45PM -0500, Matt Harbison wrote: > > # HG changeset patch > > # User Matt Harbison <matt_harbi.

Re: [PATCH 6 of 6] debugcommands: move 'debugrevlog' in the new module

2017-02-14 Thread Augie Fackler
On Tue, Feb 14, 2017 at 07:36:23PM +0100, Pierre-Yves David wrote: > # HG changeset patch > # User Pierre-Yves David > # Date 1486026160 -3600 > # Thu Feb 02 10:02:40 2017 +0100 > # Node ID 9e0fc045b53a2a6d875913514903f386fff8 > # Parent

Re: [PATCH 3 of 6] debugcommands: move 'debuglabelcomplete' in the new module

2017-02-13 Thread Augie Fackler
> On Feb 13, 2017, at 15:22, Augie Fackler <r...@durin42.com> wrote: > > >> On Feb 13, 2017, at 14:24, Augie Fackler <r...@durin42.com> wrote: >> >>> Meant to be removed from commands.py too, right? >> >> Looks like it. I've queued p

Re: [PATCH] bundle2: fix assertion that 'compression' hasn't been set

2017-02-13 Thread Augie Fackler
On Mon, Feb 13, 2017 at 12:41:59PM -0800, Siddharth Agarwal wrote: > # HG changeset patch > # User Siddharth Agarwal > # Date 1487014992 28800 > # Mon Feb 13 11:43:12 2017 -0800 > # Node ID 130eeba1cccdc63677da88a0f0dabe7fc39f963a > # Parent

Re: [PATCH 2 of 2] lock: include Linux pid namespace identifier in prefix

2017-02-13 Thread Augie Fackler
> On Feb 13, 2017, at 17:32, Simon Farnsworth <simon...@fb.com> wrote: > > On 13/02/2017 19:55, Augie Fackler wrote: >> On Fri, Feb 10, 2017 at 04:50:55PM -0800, Jun Wu wrote: > >>> >>> I think if we do know the repo is not on NFS, and the system

Re: [PATCH] test-bdiff: move import inside the function to avoid test failure

2017-02-13 Thread Augie Fackler
On Tue, Feb 14, 2017 at 01:59:48AM +0530, Pulkit Goyal wrote: > # HG changeset patch > # User Pulkit Goyal <7895pul...@gmail.com> > # Date 1487017336 -19800 > # Tue Feb 14 01:52:16 2017 +0530 > # Node ID a099a0633b39efcac1a8c1e018e5bc284f0b00a3 > # Parent

Re: [PATCH 2 of 2] py3: convert the mode argument of os.fdopen to unicodes (2 of 2)

2017-02-13 Thread Augie Fackler
On Tue, Feb 14, 2017 at 01:59:15AM +0530, Pulkit Goyal wrote: > # HG changeset patch > # User Pulkit Goyal <7895pul...@gmail.com> > # Date 1487004328 -19800 > # Mon Feb 13 22:15:28 2017 +0530 > # Node ID 437f594e299aa68682783223e8fe60da230ee4a1 > # Parent

Re: [PATCH 3 of 6] debugcommands: move 'debuglabelcomplete' in the new module

2017-02-13 Thread Augie Fackler
> On Feb 13, 2017, at 14:24, Augie Fackler <r...@durin42.com> wrote: > >> Meant to be removed from commands.py too, right? > > Looks like it. I've queued patches 1,2, 4-6 of this series, we can get > this one on a resend. Sigh. I'm getting test-completion.t failures

Re: [PATCH RFC v10] scmutil: add a simple key-value file helper

2017-02-13 Thread Augie Fackler
On Fri, Feb 03, 2017 at 02:47:26AM -0800, Kostia Balytskyi wrote: > # HG changeset patch > # User Kostia Balytskyi > # Date 1484824655 28800 > # Thu Jan 19 03:17:35 2017 -0800 > # Node ID 19a449c91ef14e691cf1347748473e0094fedc86 > # Parent

Re: [PATCH RFC v10] scmutil: add a simple key-value file helper

2017-02-13 Thread Augie Fackler
On Fri, Feb 03, 2017 at 02:47:26AM -0800, Kostia Balytskyi wrote: > # HG changeset patch > # User Kostia Balytskyi > # Date 1484824655 28800 > # Thu Jan 19 03:17:35 2017 -0800 > # Node ID 19a449c91ef14e691cf1347748473e0094fedc86 > # Parent

Re: [PATCH 2 of 2] py3: convert the mode argument of os.fdopen to unicodes (2 of 2)

2017-02-13 Thread Augie Fackler
> On Feb 13, 2017, at 17:32, Augie Fackler <r...@durin42.com> wrote: > > On Tue, Feb 14, 2017 at 01:59:15AM +0530, Pulkit Goyal wrote: >> # HG changeset patch >> # User Pulkit Goyal <7895pul...@gmail.com> >> # Date 1487004328 -19800 >> #

Re: [PATCH 4 of 5 v2] statprof: allow rendering in the Chrome trace viewer format

2017-02-13 Thread Augie Fackler
On Sun, Feb 12, 2017 at 10:39:56PM -0800, Bryan O'Sullivan wrote: > # HG changeset patch > # User Bryan O'Sullivan > # Date 1486966820 28800 > # Sun Feb 12 22:20:20 2017 -0800 > # Node ID 9c4ac8a20bd95c4069a20cf03a84b2c5c7b58def > # Parent

Re: [PATCH 04 of 10] localrepo: move ui loading to baselocalrepository

2017-02-13 Thread Augie Fackler
On Fri, Feb 10, 2017 at 01:07:49PM -0800, Jun Wu wrote: > Side-effects are basically everything related to writes, like mutating > (wrapping) internal Python objects, etc. They are done by Python code > provided by an extension out of core's control. Usually that means > reposetup, uisetup, etc.

Re: Inconsistent HG_PENDING handling

2017-02-13 Thread Augie Fackler
(+foozy, marmoute for transaction musing) On Sun, Feb 12, 2017 at 07:06:49PM -0500, timeless wrote: > bookmarks.py > if 'HG_PENDING' in encoding.environ: > try: > bkfile = repo.vfs('bookmarks.pending') > > dirstate.py > def _trypending(root, vfs, filename): > '''Open

Re: [PATCH] zeroconf: fail nicely on IPv6 only system

2017-02-09 Thread Augie Fackler
On Wed, Feb 08, 2017 at 08:10:48AM -0800, Simon Farnsworth wrote: > # HG changeset patch > # User Simon Farnsworth > # Date 1486570121 28800 > # Wed Feb 08 08:08:41 2017 -0800 > # Node ID a847eb00fcfeffce458e11b80ad38d4d4e7a700f > # Parent

Re: [PATCH 2 of 2 V2] commandserver: handle backlog before exiting

2017-02-09 Thread Augie Fackler
On Wed, Feb 08, 2017 at 02:52:31PM -0800, Jun Wu wrote: > # HG changeset patch > # User Jun Wu > # Date 1486593930 28800 > # Wed Feb 08 14:45:30 2017 -0800 > # Node ID cb56fce57eceef2cf4cd9893d387b9fe2b3cecd6 > # Parent 5fc577761fb78168fcbd7ec93d911a1b7b4989c9 > # Available At

Re: [PATCH 2 of 2] py3: fix the way we produce bytes list in store.py

2017-02-09 Thread Augie Fackler
On Wed, Feb 08, 2017 at 11:23:46PM +0530, Pulkit Goyal wrote: > # HG changeset patch > # User Pulkit Goyal <7895pul...@gmail.com> > # Date 1486490137 -19800 > # Tue Feb 07 23:25:37 2017 +0530 > # Node ID 47e72d467dd8da66092ca6b6a91235d8432e2dc1 > # Parent

Re: [PATCH] runtests: check ports on IPv6 address

2017-02-09 Thread Augie Fackler
On Thu, Feb 09, 2017 at 05:59:35AM -0800, Jun Wu wrote: > # HG changeset patch > # User Jun Wu > # Date 1486648674 28800 > # Thu Feb 09 05:57:54 2017 -0800 > # Node ID 93e23f7b87a4ab456053b6ba573615be16c6c4b0 > # Parent a68510b69f413545722c086eaeb840dd5e8305b4 > # Available At

Re: [PATCH STABLE] doc: update year in copyright lines

2017-02-09 Thread Augie Fackler
On Thu, Feb 09, 2017 at 05:53:02PM +0900, FUJIWARA Katsunori wrote: > At Thu, 09 Feb 2017 02:19:45 +0900, > FUJIWARA Katsunori wrote: >> >> # HG changeset patch >> # User FUJIWARA Katsunori >> # Date 1486572068 -32400 >> # Thu Feb 09 01:41:08 2017 +0900 >> # Branch

  1   2   3   4   5   6   7   8   9   10   >