[dev] [surf] [patch] 13 patches from my Universal Same-Origin Policy branch

2015-03-24 Thread Ben Woolley
Hi list, I merged my big patch with the latest master, and finally got around to splitting up my big patch into 13 smaller patches in commit order (used git format patch). Each commit compiles and functions, and is separately integrated, so the progression is easier to see. A summary of what feat

Re: [dev] [st] Backspace is now Linux

2015-03-24 Thread Markus Teich
Eric Pruitt wrote: > Try adding this to your mutt configuration: > > bind editor delete-char Heyho Eric, thanks, that fixed it. I really did not expect that not to be the intended default… --Markus

[dev] high traffic on hackers@

2015-03-24 Thread Dimitris Papastamos
The submission script went nuts, will be fixed/capped to prevent future problems. Moral of the story: never use git push -f in combination with pull --rebase :D

Re: [dev] [st] Backspace is now Linux

2015-03-24 Thread Ivan Delalande
On Tue, Mar 24, 2015 at 11:26:27PM +0100, Markus Teich wrote: > Christoph Lohmann wrote: > > St now has the Linux behaviour of Backspace as a default. Please change > > your configuration back from not using any strange backspace hacks. > > using the current master without modification I still no

Re: [dev] [st] Backspace is now Linux

2015-03-24 Thread Eric Pruitt
On Tue, Mar 24, 2015 at 11:26:27PM +0100, Markus Teich wrote: > using the current master without modification I still notice a little glitch > with mutt. In the line editor (e.g. when entering recipients address) if I > press > the delete key, mutt actually deletes the character in front of the cu

Re: [dev] [st] Backspace is now Linux

2015-03-24 Thread Markus Teich
Christoph Lohmann wrote: > St now has the Linux behaviour of Backspace as a default. Please change > your configuration back from not using any strange backspace hacks. Heyho, using the current master without modification I still notice a little glitch with mutt. In the line editor (e.g. when en

[dev] [sbase][patch] sed: change estrlcpy back to strlcpy

2015-03-24 Thread Evan Gates
strlcpy was used here to purposely truncate the string -emg From 91e5e371106735f8536109d3867c13dcbfa64082 Mon Sep 17 00:00:00 2001 From: Evan Gates Date: Tue, 24 Mar 2015 13:43:04 -0700 Subject: [PATCH] change estrlcat back to strlcat strlcat is used to here to purposely truncate the string ---

Re: [dev] [vis][PATCH] Implement 'o' in visual mode: go to other end of selection.

2015-03-24 Thread Marc André Tanner
On Tue, Mar 24, 2015 at 04:36:14PM -0300, Marcel Rodrigues wrote: > Thanks for the helpful reply! > > I have reworked the patch (see attachment) based on your input. Thanks, applied. -- Marc André Tanner >< http://www.brain-dump.org/ >< GPG key: CF7D56C0

Re: [dev] [vis][PATCH] Implement 'o' in visual mode: go to other end of selection.

2015-03-24 Thread Marcel Rodrigues
Thanks for the helpful reply! I have reworked the patch (see attachment) based on your input. This one uses text_char_prev() and is an independent function since this is a specific operation that don't need repeat/count and probably shouldn't be added to jumplist. Marcel 2015-03-24 14:54 GMT-

Re: [dev] surf -- how to manage SSL certificates?

2015-03-24 Thread Nick
Quoth Markus Teich: > Nick wrote: > > What do you mean, manage? If you mean use certificates for authentication > > ("Personal Certificates") surf doesn't support that currently. > > I wanted to implement that some time ago, but found neither webkit nor soup > seem > to support personal certifica

Re: [dev] [vis][PATCH] Implement 'o' in visual mode: go to other end of selection.

2015-03-24 Thread Marc André Tanner
On Tue, Mar 24, 2015 at 12:22:14PM -0300, Marcel Rodrigues wrote: > Hello, > > This feature makes it easier to extend the selection in both directions. > The behavior is the same as in vim: in visual mode, the 'o' key toggles the > cursor position between the two ends (handles) of the selection ra

Re: [dev] surf -- how to manage SSL certificates?

2015-03-24 Thread Markus Teich
Nick wrote: > What do you mean, manage? If you mean use certificates for authentication > ("Personal Certificates") surf doesn't support that currently. Heyho, I wanted to implement that some time ago, but found neither webkit nor soup seem to support personal certificates for authentication. --

Re: [dev] surf -- how to manage SSL certificates?

2015-03-24 Thread Nick
Hi Jakukyo, Quoth Jakukyo Friel: > How to manage SSL certificates in surf? What do you mean, manage? If you mean use certificates for authentication ("Personal Certificates") surf doesn't support that currently. If you're just talking about choosing which CAs to accept, surf uses the ca-certi

[dev] surf -- how to manage SSL certificates?

2015-03-24 Thread Jakukyo Friel
How to manage SSL certificates in surf? Have not found a way to configure this. I'm using surf-0.4.1 on Ubuntu 14.04. Thanks.

[dev] [vis][PATCH] Implement 'o' in visual mode: go to other end of selection.

2015-03-24 Thread Marcel Rodrigues
Hello, This feature makes it easier to extend the selection in both directions. The behavior is the same as in vim: in visual mode, the 'o' key toggles the cursor position between the two ends (handles) of the selection range. The attached patch seems to work as expected but I'm not sure it's the