Snapping git

2017-05-10 Thread Alan Pope
Hello! I work at Canonical as part of the engineering team around Ubuntu and Snapcraft [1]. We’re working on snaps, a platform to enable ISVs to directly control delivery of software updates to their users, and make their software available on many Linux distributions to a wide audience via our

[ANNOUNCE] Git for Windows 2.13.0

2017-05-10 Thread Johannes Schindelin
Dear Git users, It is my pleasure to announce that Git for Windows 2.13.0 is available from: https://git-for-windows.github.io/ Changes since Git for Windows v2.12.2(2) (April 5th 2017) New Features * Comes with Git v2.13.0. * Comes with cURL v7.54.0. * Comes with Git LFS

Re: [Query] Override sendemail.tocmd

2017-05-10 Thread Ævar Arnfjörð Bjarmason
On Wed, May 10, 2017 at 9:23 AM, Viresh Kumar wrote: > Hi, > > I have a use case and wanted help from you guys.. > > I have set the sendemail.tocmd option in my kernel's .git/config > file and that works very well. But sometimes I want to avoid that > (for example sending

Re: [Query] Override sendemail.tocmd

2017-05-10 Thread Viresh Kumar
On 10-05-17, 12:18, Ævar Arnfjörð Bjarmason wrote: > On Wed, May 10, 2017 at 9:23 AM, Viresh Kumar wrote: > > Hi, > > > > I have a use case and wanted help from you guys.. > > > > I have set the sendemail.tocmd option in my kernel's .git/config > > file and that works

Re: [PATCH v2] archive-tar: fix a sparse 'constant too large' warning

2017-05-10 Thread Johannes Schindelin
Hi Junio, On Wed, 10 May 2017, Junio C Hamano wrote: > Ramsay Jones writes: > > > Yeah, I had a similar comment in the commit message (but much more > > verbose than your concise addition above), but I edited it several > > times, without finding a wording that I

Re: [Query] Override sendemail.tocmd

2017-05-10 Thread Viresh Kumar
On 10-05-17, 16:04, Viresh Kumar wrote: > On 10-05-17, 12:18, Ævar Arnfjörð Bjarmason wrote: > > On Wed, May 10, 2017 at 9:23 AM, Viresh Kumar > > wrote: > > > Hi, > > > > > > I have a use case and wanted help from you guys.. > > > > > > I have set the sendemail.tocmd

Re: [Query] Override sendemail.tocmd

2017-05-10 Thread Viresh Kumar
On 10 May 2017 at 12:59, Viresh Kumar wrote: > On 10 May 2017 at 12:53, Viresh Kumar wrote: >> Hi, >> >> I have a use case and wanted help from you guys.. >> >> I have set the sendemail.tocmd option in my kernel's .git/config >> file and that

Re: What's cooking in git.git (May 2017, #03; Wed, 10)

2017-05-10 Thread Jean-Noël AVILA
Le mercredi 10 mai 2017, 10:08:14 CEST Ævar Arnfjörð Bjarmason a écrit : > > * ja/doc-l10n (2017-03-20) 3 commits > > . SQUASH??? > > . l10n: add git-add.txt to localized man pages > > . l10n: introduce framework for localizing man pages > > > > A proposal to use po4a to localize our manual

Schönen Tag

2017-05-10 Thread Santander Consumer Finance
Schönen Tag, Ich bin Frau Ana Botin, die Vorsitzende von Santander Consumer Finance. Incase Sie haben eine schlechte Kredit oder brauchen Geld, um Ihre Rechnungen und Investitionen zu bezahlen, hier ist der richtige Ort, um finanziert werden. Unser Zinssatz beträgt 3%. Füllen Sie das

Re: [PATCH v3 1/1] t0027: tests are not expensive; remove t0025

2017-05-10 Thread Junio C Hamano
Torstem Bögershausen writes: >> Am 10.05.2017 um 17:52 schrieb Johannes Schindelin >> : >> >> ... >> While at it, retire t0025: Recent "stress" tests show that t0025 if >> flaky, reported by Lars Schneider , but all >> tests

Re: [PATCH] status: show in-progress info for short status

2017-05-10 Thread Junio C Hamano
Jacob Keller writes: > On Wed, Apr 12, 2017 at 11:09 PM, Junio C Hamano wrote: >> Jacob Keller writes: >> >>> Personally, I would want this to become the default and not have a new >>> option to trigger it. I think we could

Re: [PATCH v3] fetch-pack: always allow fetching of literal SHA1s

2017-05-10 Thread Jonathan Nieder
Hi, Jonathan Tan wrote: > fetch-pack, when fetching a literal SHA-1 from a server that is not > configured with uploadpack.allowtipsha1inwant (or similar), always > returns an error message of the form "Server does not allow request for > unadvertised object %s". However, it is sometimes the

Re: [PATCH 8/8] pathspec: convert parse_pathspec to take an index

2017-05-10 Thread Junio C Hamano
Brandon Williams writes: > ls-files is the only command (that I know of) which does cache pruning > based on the common prefix of all pathspecs given. If there is a > submodule named 'sub' and you provided a pathspec 'sub/', the matching > logic can handle this but the cache

Re: [PATCH v2 2/3] read-tree -m: make error message for merging 0 trees less smart aleck

2017-05-10 Thread Junio C Hamano
Jean-Noel Avila writes: > "git read-tree -m" requires a tree argument to name the tree to be > merged in. Git uses a cutesy error message to say so and why: > > $ git read-tree -m > warning: read-tree: emptying the index with no arguments is > deprecated; use

[PATCH v2 2/2] perf: add test showing exponential growth in path globbing

2017-05-10 Thread Ævar Arnfjörð Bjarmason
Add a test showing that ls-files times grow exponentially in the face of some pathological globs, whereas refglobs via for-each-ref don't in practice suffer from the same issue. As noted in the test description this is a test to see whether Git suffers from the issue noted in an article Russ Cox

[PATCH v2 1/2] perf: add function to setup a fresh test repo

2017-05-10 Thread Ævar Arnfjörð Bjarmason
Add a function to setup a fresh test repo via 'git init' to compliment the existing functions to copy over a normal & large repo. Some performance tests don't need any existing repository data at all to be significant, e.g. tests which stress glob matches against revisions or files, which I'm

[PATCH v2 0/2] perf: show that wildmatch() regressed for pathological cases in v2.0

2017-05-10 Thread Ævar Arnfjörð Bjarmason
This is a re-send of <20170424211249.28553-1-ava...@gmail.com> (https://public-inbox.org/git/20170424211249.28553-1-ava...@gmail.com/) which fell through the cracks at the time. The only change is a typo fix in the description of the test in 2/2. Ævar Arnfjörð Bjarmason (2): perf: add function

Re: [PATCH v2 1/2] perf: add function to setup a fresh test repo

2017-05-10 Thread Jonathan Nieder
Hi, Ævar Arnfjörð Bjarmason wrote: [...] > # call at least one of these to establish an appropriately-sized repository > +test_perf_fresh_repo () { > + repo="${1:-$TRASH_DIRECTORY}" > + "$MODERN_GIT" init -q "$repo" && > + cd "$repo" && > + test_perf_do_repo_symlink_config_ > +}

Re: [PATCH v2 1/2] perf: add function to setup a fresh test repo

2017-05-10 Thread Ævar Arnfjörð Bjarmason
On Thu, May 11, 2017 at 1:30 AM, Jonathan Nieder wrote: > Hi, > > Ęvar Arnfjörš Bjarmason wrote: > > [...] >> # call at least one of these to establish an appropriately-sized repository >> +test_perf_fresh_repo () { >> + repo="${1:-$TRASH_DIRECTORY}" >> +

Re: t6134 test failure in 'pu'

2017-05-10 Thread Junio C Hamano
Thanks for a quick report. Yes, that was a stupid mismerge. Will correct in my rerere database X-<.

Re: [PATCH v2 1/2] perf: add function to setup a fresh test repo

2017-05-10 Thread Junio C Hamano
Ævar Arnfjörð Bjarmason writes: > On Thu, May 11, 2017 at 1:30 AM, Jonathan Nieder wrote: >> Hi, >> >> Ęvar Arnfjörš Bjarmason wrote: >> >> [...] >>> # call at least one of these to establish an appropriately-sized repository >>> +test_perf_fresh_repo () {

Re: What's cooking in git.git (May 2017, #03; Wed, 10)

2017-05-10 Thread Junio C Hamano
Jean-Noël AVILA writes: > Le mercredi 10 mai 2017, 10:08:14 CEST Ævar Arnfjörð Bjarmason a écrit : >> > * ja/doc-l10n (2017-03-20) 3 commits >> > . SQUASH??? >> > . l10n: add git-add.txt to localized man pages >> > . l10n: introduce framework for localizing man pages >> > >>

Re: [PATCH 8/8] pathspec: convert parse_pathspec to take an index

2017-05-10 Thread Johannes Sixt
Am 11.05.2017 um 03:48 schrieb Junio C Hamano: But perhaps you are right---it may be wrong for the contents of the current index (or any index) to affect how a pathspec element is parsed in the first place. If the current code (before this series) uses the_index only for error checking, we may

Re: What's cooking in git.git (May 2017, #03; Wed, 10)

2017-05-10 Thread Junio C Hamano
Ævar Arnfjörð Bjarmason writes: >> * ab/grep-pcre-v2 (2017-05-02) 19 commits > ... > This can just be ejected. ... > > * ab/grep-threading-cleanup (2017-04-16) 8 commits > ... > Can also be discarded, will re-send in a different form soon. Will do and wait for replacements.

Re: [PATCH v2 1/3] usability: don't ask questions if no reply is required

2017-05-10 Thread Junio C Hamano
Jean-Noel Avila writes: > diff --git a/builtin/am.c b/builtin/am.c > index a95dd8b4e..f5afa438d 100644 > --- a/builtin/am.c > +++ b/builtin/am.c > @@ -1312,7 +1312,7 @@ static int parse_mail(struct am_state *state, const > char *mail) > } > > if

Re: [PATCH 8/8] pathspec: convert parse_pathspec to take an index

2017-05-10 Thread Junio C Hamano
Johannes Sixt writes: > Am 11.05.2017 um 03:48 schrieb Junio C Hamano: >> But perhaps you are right---it may be wrong for the contents of the >> current index (or any index) to affect how a pathspec element is >> parsed in the first place. If the current code (before this series)

Re: [PATCH v2 2/2] perf: add test showing exponential growth in path globbing

2017-05-10 Thread Jonathan Nieder
Hi, Ævar Arnfjörð Bjarmason wrote: > Add a test showing that ls-files times grow exponentially in the face > of some pathological globs, whereas refglobs via for-each-ref don't in > practice suffer from the same issue. Cool. [...] > --- /dev/null > +++ b/t/perf/p0100-globbing.sh > @@ -0,0

Re: What's cooking in git.git (May 2017, #03; Wed, 10)

2017-05-10 Thread Junio C Hamano
Ævar Arnfjörð Bjarmason writes: > On Wed, May 10, 2017 at 7:18 AM, Junio C Hamano wrote: >> [New Topics] >> >> * ab/compat-regex-update (2017-05-09) 2 commits >> - compat/regex: update the gawk regex engine from upstream >> - compat/regex: add a README

Re: [PATCH v2 3/3] git-filter-branch: make the error msg when missing branch more open

2017-05-10 Thread Junio C Hamano
Jean-Noel Avila writes: > git-filter-branch requires the specification of a branch by one way or > another. If no branch appears to have been specified, we know the user > got the usage wrong but we don't know what they were trying to do --- > e.g. maybe they specified the ref

[PATCH] read-tree: "read-tree -m --empty" does not make sense

2017-05-10 Thread Junio C Hamano
fb1bb965 ("read-tree: deprecate syntax without tree-ish args", 2010-09-10) wanted to deprecate "git read-tree" without any tree, which used to be the way to empty the index, and encourage use of "git read-tree --empty" instead. However, when used with "-m", "--empty" does not make any sense,

Re: Automating Coverity, was Re: [PATCH 00/26] Address a couple of issues identified by Coverity

2017-05-10 Thread Johannes Schindelin
Hi Stefan, On Fri, 5 May 2017, Johannes Schindelin wrote: > On Fri, 28 Apr 2017, Johannes Schindelin wrote: > > > On Fri, 28 Apr 2017, Stefan Beller wrote: > > > > > On Thu, Apr 27, 2017 at 3:50 PM, Johannes Schindelin > > > wrote: > > > > > > > I still have to

Re: [PATCH v3 1/1] t0027: tests are not expensive; remove t0025

2017-05-10 Thread Torstem Bögershausen
Ok for me, thanks for helping out. > Am 10.05.2017 um 17:52 schrieb Johannes Schindelin > : > > Hi, > >> On Wed, 10 May 2017, tbo...@web.de wrote: >> >> From: Torsten Bögershausen >> >> The purpose of t0027 is to test all CRLF related conversions

git worktrees must exist even if locked

2017-05-10 Thread taylor, david
The Git documentation in describing worktrees says that one reason why you might want to lock a worktree is to prevent it from being pruned if it is on a removable media that isn't currently mounted. So, my expectation was that if the worktree is inaccessible (and locked), Git would pretend that

Re: [PATCH] fetch-pack: always allow fetching of literal SHA1s

2017-05-10 Thread Ævar Arnfjörð Bjarmason
On Wed, May 10, 2017 at 6:46 AM, Mike Hommey wrote: > On Wed, May 10, 2017 at 12:33:44AM -0400, Jeff King wrote: >> On Tue, May 09, 2017 at 09:22:11PM -0700, Shawn Pearce wrote: >> >> > > Hmm. That makes sense generally, as the request should succeed. But it >> > > seems like

Re: [PATCH] fetch-pack: always allow fetching of literal SHA1s

2017-05-10 Thread Jonathan Nieder
Hi, Ævar Arnfjörð Bjarmason wrote: > Just a side question, what are the people who use this feature using > it for? The only thing I can think of myself is some out of band ref > advertisement because you've got squillions of refs as a hack around > git's limitations in that area. That's one

bug with git add and .gitignore

2017-05-10 Thread Orgad Shaneh
Hi, When a not-ignored file inside an ignore directory is added along with other files, a false alarm is shown: git init echo /d/ > .gitignore mkdir d touch d/file foo git add -f d/file foo git add d/file # fine git add d/file foo # The following paths are ignored by one of your .gitignore

[PATCH v3 1/1] t0027: tests are not expensive; remove t0025

2017-05-10 Thread tboegi
From: Torsten Bögershausen The purpose of t0027 is to test all CRLF related conversions at "git checkout" and "git add". Running t0027 under Git for Windows takes 3-4 minutes, so the whole script had been marked as "EXPENSIVE". The source code for "Git for Windows" overrides

Re: [Query] Override sendemail.tocmd

2017-05-10 Thread Ævar Arnfjörð Bjarmason
On Wed, May 10, 2017 at 12:43 PM, Viresh Kumar wrote: > On 10-05-17, 16:04, Viresh Kumar wrote: >> On 10-05-17, 12:18, Ćvar Arnfjörđ Bjarmason wrote: >> > On Wed, May 10, 2017 at 9:23 AM, Viresh Kumar >> > wrote: >> > > Hi, >> > > >> > > I have

git log --follow after subtree merge

2017-05-10 Thread Jonny Gilchrist
Hi, After doing a subtree merge, using 'git log' and 'git log --follow' on files in the subtree show only the merge commit in which they were added. After reading around I understand that the issue is that git log --follow doesn't track renames that occur during a merge. Has there been any work

Re: [PATCH v3 1/1] t0027: tests are not expensive; remove t0025

2017-05-10 Thread Johannes Schindelin
Hi, On Wed, 10 May 2017, tbo...@web.de wrote: > From: Torsten Bögershausen > > The purpose of t0027 is to test all CRLF related conversions at "git checkout" > and "git add". > > Running t0027 under Git for Windows takes 3-4 minutes, so the whole script had > been marked as

Re: [PATCH 3/8] pathspec: change PATHSPEC_STRIP_SUBMODULE_SLASH_EXPENSIVE flag

2017-05-10 Thread Brandon Williams
On 05/10, Junio C Hamano wrote: > Brandon Williams writes: > > > It's confusing to have two different 'strip submodule slash' flags which > > do subtly different things. Both > > PATHSPEC_STRIP_SUBMODULE_SLASH_EXPENSIVE and > > PATHSPEC_STRIP_SUBMODULE_SLASH_CHEAP will

[PATCH v2] fetch-pack: always allow fetching of literal SHA1s

2017-05-10 Thread Jonathan Tan
fetch-pack, when fetching a literal SHA-1 from a server that is not configured with uploadpack.allowtipsha1inwant (or similar), always returns an error message of the form "Server does not allow request for unadvertised object %s". However, it is sometimes the case that such object is advertised.

t6134 test failure in 'pu'

2017-05-10 Thread Ramsay Jones
Hi Junio, t6134 fails for me in 'pu', but I think it is just a question of merge 641f3ad90a3 dropping the last line of the test from the change introduced by commit bdab972153. In other words, this fixes the test for me: $ git diff diff --git a/t/t6134-pathspec-in-submodule.sh

Good day

2017-05-10 Thread FDF
-- Did you receive my previous message about my donation to you?

Re: [PATCH] fetch-pack: always allow fetching of literal SHA1s

2017-05-10 Thread Jonathan Nieder
Hi, Jeff King wrote: > Right, makes sense. I wondered if GitHub should be turning on > allowTipSHA1InWant, but it really doesn't make sense to. We _do_ hide > some internal refs[1], and they're things that users wouldn't want to > fetch. The problem for your case really is just on the client

Possible bug in includeIf / conditional includes

2017-05-10 Thread raphael . stolt
Hi there, I might have stumbled over a bug in includeIf / conditional includes or maybe it's just as intended. Current configuration which finds the conditional configuration. ~/.gitconfig [includeIf "gitdir:~/Work/git-repos/oss/"] path = ~/Work/git-repos/oss/.oss-gitconfig Expected

Re: [PATCH 8/8] pathspec: convert parse_pathspec to take an index

2017-05-10 Thread Brandon Williams
On 05/10, Junio C Hamano wrote: > Brandon Williams writes: > > > Convert 'parse_pathspec()' to take an index parameter. > > > > Since the index is only needed when the PATHSPEC_SUBMODULE_LEADING_PATH > > and PATHSPEC_STRIP_SUBMODULE_SLASH flags are given, add a check > >

Re: [noob] is this normal behavior

2017-05-10 Thread Harry Putnam
Igor Djordjevic writes: [...] snipped detailed reply [To Anyone who lands here on a search: Please read Igor D's full answer in this thread... ] > Just pay attention that untracked files are not affected, you still > need to add them first to tell Git to start

Re: [PATCH v2] fetch-pack: always allow fetching of literal SHA1s

2017-05-10 Thread Jonathan Nieder
Hi, Jonathan Tan wrote: > fetch-pack, when fetching a literal SHA-1 from a server that is not > configured with uploadpack.allowtipsha1inwant (or similar), always > returns an error message of the form "Server does not allow request for > unadvertised object %s". However, it is sometimes the

Re: [PATCH] fetch-pack: always allow fetching of literal SHA1s

2017-05-10 Thread Jonathan Nieder
On Wed, May 10, 2017 at 12:48:37PM -0600, Martin Fick wrote: >> Ævar Arnfjörð Bjarmason wrote: >>> Just a side question, what are the people who use this >>> feature using it for? The only thing I can think of >>> myself is some out of band ref advertisement because >>> you've got squillions of

Re: [PATCH] fetch-pack: always allow fetching of literal SHA1s

2017-05-10 Thread Martin Fick
On Wednesday, May 10, 2017 11:20:49 AM Jonathan Nieder wrote: > Hi, > > Ævar Arnfjörð Bjarmason wrote: > > Just a side question, what are the people who use this > > feature using it for? The only thing I can think of > > myself is some out of band ref advertisement because > > you've got

Re: [PATCH] fetch-pack: always allow fetching of literal SHA1s

2017-05-10 Thread Sebastian Schuberth
On 2017-05-10 19:00, Jonathan Nieder wrote: Right, makes sense. I wondered if GitHub should be turning on allowTipSHA1InWant, but it really doesn't make sense to. We _do_ hide some internal refs[1], and they're things that users wouldn't want to fetch. The problem for your case really is just

Re: [PATCH 8/8] pathspec: convert parse_pathspec to take an index

2017-05-10 Thread Junio C Hamano
Brandon Williams writes: > Convert 'parse_pathspec()' to take an index parameter. > > Since the index is only needed when the PATHSPEC_SUBMODULE_LEADING_PATH > and PATHSPEC_STRIP_SUBMODULE_SLASH flags are given, add a check > requiring a non-NULL index when either of these

Re: [Query] Override sendemail.tocmd

2017-05-10 Thread Viresh Kumar
On 10 May 2017 at 12:53, Viresh Kumar wrote: > Hi, > > I have a use case and wanted help from you guys.. > > I have set the sendemail.tocmd option in my kernel's .git/config > file and that works very well. But sometimes I want to avoid that > (for example sending the

[Query] Override sendemail.tocmd

2017-05-10 Thread Viresh Kumar
Hi, I have a use case and wanted help from you guys.. I have set the sendemail.tocmd option in my kernel's .git/config file and that works very well. But sometimes I want to avoid that (for example sending the patch to someone without the list and maintainers). The suppress-cc=all option works

Re: What's cooking in git.git (May 2017, #03; Wed, 10)

2017-05-10 Thread Ævar Arnfjörð Bjarmason
On Wed, May 10, 2017 at 7:18 AM, Junio C Hamano wrote: > * mg/status-in-progress-info (2017-04-14) 1 commit > - status: show in-progress info for short status > > "git status" learns an option to report various operations > (e.g. "merging") that the user is in the middle

Re: What's cooking in git.git (May 2017, #03; Wed, 10)

2017-05-10 Thread Ævar Arnfjörð Bjarmason
On Wed, May 10, 2017 at 7:18 AM, Junio C Hamano wrote: > [New Topics] > > * ab/compat-regex-update (2017-05-09) 2 commits > - compat/regex: update the gawk regex engine from upstream > - compat/regex: add a README with a maintenance guide > > Will merge to 'next'. [Sent

Re: Possible bug in includeIf / conditional includes

2017-05-10 Thread Raphael Stolt
> Am 10.05.2017 um 23:21 schrieb Raphael Stolt : > >> >> Am 10.05.2017 um 21:48 schrieb Ævar Arnfjörð Bjarmason : >> >> On Wed, May 10, 2017 at 8:58 PM, Sebastian Schuberth >> wrote: >>> On 2017-05-10 19:00,

Re: Possible bug in includeIf / conditional includes

2017-05-10 Thread Raphael Stolt
> > Am 10.05.2017 um 21:48 schrieb Ævar Arnfjörð Bjarmason : > > On Wed, May 10, 2017 at 8:58 PM, Sebastian Schuberth > wrote: >> On 2017-05-10 19:00, raphael.st...@gmail.com wrote: >> >>> Current configuration which finds the conditional configuration.

[PATCH v3] fetch-pack: always allow fetching of literal SHA1s

2017-05-10 Thread Jonathan Tan
fetch-pack, when fetching a literal SHA-1 from a server that is not configured with uploadpack.allowtipsha1inwant (or similar), always returns an error message of the form "Server does not allow request for unadvertised object %s". However, it is sometimes the case that such object is advertised.

Re: git log --follow after subtree merge

2017-05-10 Thread Samuel Lijin
On Wed, May 10, 2017 at 9:46 AM, Jonny Gilchrist wrote: > Hi, > > After doing a subtree merge, using 'git log' and 'git log --follow' on > files in the subtree show only the merge commit in which they were > added. > > After reading around I understand that the issue is

Re: Possible bug in includeIf / conditional includes

2017-05-10 Thread Sebastian Schuberth
On 2017-05-10 19:00, raphael.st...@gmail.com wrote: Current configuration which finds the conditional configuration. ~/.gitconfig [includeIf "gitdir:~/Work/git-repos/oss/"] path = ~/Work/git-repos/oss/.oss-gitconfig Expected configuration which doesn't find the conditional configuration:

Re: Possible bug in includeIf / conditional includes

2017-05-10 Thread Ævar Arnfjörð Bjarmason
On Wed, May 10, 2017 at 8:58 PM, Sebastian Schuberth wrote: > On 2017-05-10 19:00, raphael.st...@gmail.com wrote: > >> Current configuration which finds the conditional configuration. >> >> ~/.gitconfig >> [includeIf "gitdir:~/Work/git-repos/oss/"] >>path =

Re: Automating Coverity, was Re: [PATCH 00/26] Address a couple of issues identified by Coverity

2017-05-10 Thread Stefan Beller
On Wed, May 10, 2017 at 12:48 PM, Johannes Schindelin wrote: > Hi Stefan, > > On Fri, 5 May 2017, Johannes Schindelin wrote: > >> On Fri, 28 Apr 2017, Johannes Schindelin wrote: >> >> > On Fri, 28 Apr 2017, Stefan Beller wrote: >> > >> > > On Thu, Apr 27, 2017 at 3:50