mercurial@45273: 3 new changesets (3 on stable)

2020-08-03 Thread Mercurial Commits
3 new changesets (3 on stable) in mercurial: https://www.mercurial-scm.org/repo/hg/rev/7fc3c5fbc65f changeset: 45271:7fc3c5fbc65f branch: stable tag: 5.5 parent: 45253:9b5723784aac user:Pulkit Goyal <7895pul...@gmail.com> date:Sat Aug 01 18:39:28 2020 +0530

mercurial@45270: 19 new changesets (2 on stable)

2020-08-03 Thread Mercurial Commits
19 new changesets (2 on stable) in mercurial: https://www.mercurial-scm.org/repo/hg/rev/20d110e6eea6 changeset: 45252:20d110e6eea6 branch: stable parent: 45240:53a6febafc66 user:Gregory Szorc date:Sun Jul 26 12:46:04 2020 -0700 summary: clonebundles: document

Re: [PATCH] mergestate: fix BC breakage introduced because of removal of a merge record

2020-08-03 Thread Augie Fackler
queued for stable, thanks > On Aug 1, 2020, at 09:09, Pulkit Goyal <7895pul...@gmail.com> wrote: > > # HG changeset patch > # User Pulkit Goyal <7895pul...@gmail.com> > # Date 1596287368 -19800 > # Sat Aug 01 18:39:28 2020 +0530 > # Branch stable > # Node ID

Re: Website: add a blog?

2020-08-03 Thread Pulkit Goyal
On Mon, Aug 3, 2020 at 9:23 PM Raphaël Gomès wrote: > > > On 03/08/2020 17:39, Augie Fackler wrote: > > Oh, and if we wanted to take this as an opportunity to try and move to a > > more common static-site-generator rather than a custom flask app, I'd be in > > favor of that too... ;) > + 1 > >>

Re: Website: add a blog?

2020-08-03 Thread Raphaël Gomès
On 03/08/2020 17:39, Augie Fackler wrote: Oh, and if we wanted to take this as an opportunity to try and move to a more common static-site-generator rather than a custom flask app, I'd be in favor of that too... ;) + 1 On Aug 3, 2020, at 11:37, Augie Fackler wrote: Howdy folks, I've been

Re: Website: add a blog?

2020-08-03 Thread Augie Fackler
Oh, and if we wanted to take this as an opportunity to try and move to a more common static-site-generator rather than a custom flask app, I'd be in favor of that too... ;) > On Aug 3, 2020, at 11:37, Augie Fackler wrote: > > Howdy folks, > > I've been (slowly) working with conservancy on

Website: add a blog?

2020-08-03 Thread Augie Fackler
Howdy folks, I've been (slowly) working with conservancy on some various things, and one thing they suggested that I agree with is that we should probably have some kind of dev-blog on mercurial-scm.org where we can talk about neat things in Mercurial etc. I'm happy to write for it, but I lack

D8872: rhg: make output of `files` relative to the current directory and the root

2020-08-03 Thread acezar (Antoine Cezar)
acezar created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches. REVISION SUMMARY This matches the behavior of `hg files`. The util is added in `hg-core` instead of `rhg` because this operation could be useful for other external tools. (this

D8873: rhg: add harness tests for rhg files

2020-08-03 Thread acezar (Antoine Cezar)
acezar created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches. REPOSITORY rHG Mercurial BRANCH default REVISION DETAIL https://phab.mercurial-scm.org/D8873 AFFECTED FILES tests/test-rhg.t CHANGE DETAILS diff --git a/tests/test-rhg.t

D8868: rhg: add a `Files` `Command` to prepare the `rhg files` subcommand

2020-08-03 Thread acezar (Antoine Cezar)
acezar created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches. REPOSITORY rHG Mercurial BRANCH default REVISION DETAIL https://phab.mercurial-scm.org/D8868 AFFECTED FILES rust/hg-core/src/lib.rs rust/rhg/src/commands.rs

D8871: rhg: handle broken pipe error for stderr

2020-08-03 Thread acezar (Antoine Cezar)
acezar created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches. REPOSITORY rHG Mercurial BRANCH default REVISION DETAIL https://phab.mercurial-scm.org/D8871 AFFECTED FILES rust/rhg/src/ui.rs CHANGE DETAILS diff --git

D8870: rhg: extract function handle_stdout_error

2020-08-03 Thread acezar (Antoine Cezar)
acezar created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches. REVISION SUMMARY Avoid repeating the logic of handling stdout write errors. REPOSITORY rHG Mercurial BRANCH default REVISION DETAIL https://phab.mercurial-scm.org/D8870

D8865: rhg: ask the error message from `CommandError`

2020-08-03 Thread acezar (Antoine Cezar)
acezar created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches. REVISION SUMMARY Avoid repeating the display of the same error messages in different commands. REPOSITORY rHG Mercurial BRANCH default REVISION DETAIL

D8869: rhg: add a limited `rhg files` subcommand

2020-08-03 Thread acezar (Antoine Cezar)
acezar created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches. REPOSITORY rHG Mercurial BRANCH default REVISION DETAIL https://phab.mercurial-scm.org/D8869 AFFECTED FILES rust/rhg/src/main.rs CHANGE DETAILS diff --git

D8867: rhg: simply `FindRootError` handling

2020-08-03 Thread acezar (Antoine Cezar)
acezar created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches. REPOSITORY rHG Mercurial BRANCH default REVISION DETAIL https://phab.mercurial-scm.org/D8867 AFFECTED FILES rust/rhg/src/commands/root.rs rust/rhg/src/error.rs CHANGE

D8862: hg-core: remove the `Operation` trait

2020-08-03 Thread acezar (Antoine Cezar)
acezar created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches. REVISION SUMMARY There is no way to currently define a trait which can both return references to `self` and to passed data, which is what we would need. Generic Associated

D8866: rhg: add buffered stdout writing possibility

2020-08-03 Thread acezar (Antoine Cezar)
acezar created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches. REVISION SUMMARY Improve batch stdout writing performance. At some point line buffered output should be introduced. REPOSITORY rHG Mercurial BRANCH default REVISION DETAIL

D8864: rhg: Do not return error when when we really mean ok in commands

2020-08-03 Thread acezar (Antoine Cezar)
acezar created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches. REVISION SUMMARY Before when a command was successfull `Err(CommandErrorKind::Ok.into())` was returned which is an oxymoron. Using `Ok(())` when everything is ok seems more

D8863: hg-core: define a `ListTrackedFiles` `Operation`

2020-08-03 Thread acezar (Antoine Cezar)
acezar created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches. REVISION SUMMARY List files under Mercurial control in the working directory. REPOSITORY rHG Mercurial BRANCH default REVISION DETAIL https://phab.mercurial-scm.org/D8863

D8861: hg-core: make parse_dirstate return references rather than update hashmaps

2020-08-03 Thread acezar (Antoine Cezar)
acezar created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches. REVISION SUMMARY Returing a vec is faster than updating a hashmap when the hashmap is not needed like in `hg files` which just list tracked files. Returning references

D8860: rhg: add harness tests for rhg files

2020-08-03 Thread acezar (Antoine Cezar)
acezar created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches. REPOSITORY rHG Mercurial BRANCH default REVISION DETAIL https://phab.mercurial-scm.org/D8860 AFFECTED FILES tests/test-rhg.t CHANGE DETAILS diff --git a/tests/test-rhg.t