Re: Normalisation of filenames

2017-04-01 Thread Aki Inoue
> On Apr 1, 2017, at 4:57 PM, Gerriet M. Denkmann wrote: > > >> On 2 Apr 2017, at 06:33, Jens Alfke wrote: >> >> >>> On Apr 1, 2017, at 11:58 AM, Gerriet M. Denkmann >>> wrote: >>> >>> I think that the examples above show,

Re: Normalisation of filenames

2017-04-01 Thread Gerriet M. Denkmann
> On 2 Apr 2017, at 06:33, Jens Alfke wrote: > > >> On Apr 1, 2017, at 11:58 AM, Gerriet M. Denkmann wrote: >> >> I think that the examples above show, that NSURL does indeed do something >> about normalising Unicode strings. > > That makes sense;

Re: Normalisation of filenames

2017-04-01 Thread Jens Alfke
> On Apr 1, 2017, at 11:58 AM, Gerriet M. Denkmann wrote: > > I think that the examples above show, that NSURL does indeed do something > about normalising Unicode strings. That makes sense; I’d expect that one of the RFCs covering URLs describes normalization. Otherwise

Re: Auto-layout: how do I make the other side "win"?

2017-04-01 Thread Quincey Morris
On Apr 1, 2017, at 12:07 , Daryle Walker wrote: > > I got a feeling that, since the interior of the window and the exterior of > the view are probably bound, that the auto-layout system is choosing the > view’s smaller size over the window’s bigger one. How do I reverse this?

Auto-layout: how do I make the other side "win"?

2017-04-01 Thread Daryle Walker
1. Created new storyboard and dragged a window (with controller) into it. Comes with a view (with controller). 2. Expanded the size of the window. Didn’t touch the associated view. 3. On test run, window comes out much smaller than expected. Can’t figure out a tweak to fix it. I got a feeling

Re: Normalisation of filenames

2017-04-01 Thread Gerriet M. Denkmann
> On 2 Apr 2017, at 01:09, Quincey Morris > wrote: > > On Apr 1, 2017, at 04:41 , Gerriet M. Denkmann wrote: >> >> for different values of path I got: >> path = @“/ก่ี”; // consonant + mark + vowel → same = YES >> path =

Re: Normalisation of filenames

2017-04-01 Thread Quincey Morris
On Apr 1, 2017, at 04:41 , Gerriet M. Denkmann wrote: > > for different values of path I got: > path = @“/ก่ี”; // consonant + mark + vowel → same = YES > path = @“/กี่”; // consonant + vowel + mark → same = YES > > Note: these two paths also look

Normalisation of filenames

2017-04-01 Thread Gerriet M. Denkmann
I tried (with case-sensitive HFS+ in macOS 12.4): NSString *path = … NSURL *url = [ NSURL fileURLWithPath: path isDirectory: NO ]; NSString *urlPath = url.path; BOOL same = [ urlPath isEqualToString: path ]; for different values of path I got: path = @“/ก่ี”; // consonant + mark + vowel