Re: Pop-up menus not working in NSOutlineView with image subview

2014-07-03 Thread Andy Lee
Maybe use a subclass of NSImageView that returns nil for hitTest:? Just a thought. --Andy On Wed, Jul 2, 2014, at 10:40 PM, Tim Hewett wrote: > I have an NSOutlineView with a NSImageView subview providing a background > image. Now a pop-up menu has been added to the outline view it seems the m

Re: Resolve alternative TLD

2014-07-03 Thread Diederik Meijer | Ten Horses
OK thanks everybody! Op Jul 3, 2014, om 10:54 PM heeft Jens Alfke het volgende geschreven: > > On Jul 3, 2014, at 1:33 PM, Diederik Meijer | Ten Horses > wrote: > >> So I guess I somehow need to handle DNS Lookup / IP resolving myself, is >> there anybody here who has any idea how to proc

Re: Resolve alternative TLD

2014-07-03 Thread Jens Alfke
On Jul 3, 2014, at 1:33 PM, Diederik Meijer | Ten Horses wrote: > So I guess I somehow need to handle DNS Lookup / IP resolving myself, is > there anybody here who has any idea how to proceed? If this were Mac OS you could edit /etc/hosts and add an entry for that domain, but that won’t fly

Re: Resolve alternative TLD

2014-07-03 Thread Marco S Hyman
On Jul 3, 2014, at 10:31 AM, Alex Zavatone wrote: > Firefox doesn't resolve start.rental either. > Neither does Chrome. Yup. It is not a valid TLD in that .rental is not known to any of the root servers. Domain lookups for uncached entries start at one of the root servers. If those servers do

Re: Resolve alternative TLD

2014-07-03 Thread Diederik Meijer | Ten Horses
This is what it looks like in the Sundial browser: http://www.tenhorses.com/sundial.png So I guess I somehow need to handle DNS Lookup / IP resolving myself, is there anybody here who has any idea how to proceed? Thanks! Op Jul 3, 2014, om 7:31 PM heeft Alex Zavatone het volgende geschre

Re: Resolve alternative TLD

2014-07-03 Thread Jens Alfke
On Jul 3, 2014, at 10:31 AM, Alex Zavatone wrote: > Firefox doesn't resolve start.rental either. > Neither does Chrome. Neither does curl, nor whois. (And I tried the same commands on a Linux system and they failed there too, so this isn’t specific to Apple OSs.) $ curl start.rental curl: (6)

Re: Resolve alternative TLD

2014-07-03 Thread Alex Zavatone
Firefox doesn't resolve start.rental either. Neither does Chrome. On Jul 3, 2014, at 12:58 PM, Diederik Meijer | Ten Horses wrote: > Take start.rental as an example, has a live server on the dot rental TLD, but > no standard browser will resolve it, try it in Safari, you'll see.. > > Verstuurd

Re: Resolve alternative TLD

2014-07-03 Thread Diederik Meijer | Ten Horses
Wait, so it's not a real DNS server, or what? I suppose in that case you'd have to take the URL and look up the domain yourself, then feed the raw IP address to WebKit instead. > > Cheers, > -- Uli Kusterer > "The Witnesses of TeachText are everywhere..." > http://www.zathras.d Exactly, any ex

Re: Resolve alternative TLD

2014-07-03 Thread Danny Thuering
Had such an issue today on an iPad with DNS pointing to a local Mac OSx server. Did not resolve server.local until we put "local" into search domains on the iPad. Regards Danny Sent from my iPhone > On 03 Jul 2014, at 19:13, Uli Kusterer wrote: > >> On 03 Jul 2014, at 19:07, Diederik Meijer

Re: Resolve alternative TLD

2014-07-03 Thread Uli Kusterer
On 03 Jul 2014, at 19:07, Diederik Meijer | Ten Horses wrote: > Thanks, prefixing my one just reports 'server cannot be found'... Wait, so it's not a real DNS server, or what? I suppose in that case you'd have to take the URL and look up the domain yourself, then feed the raw IP address to Web

Re: Resolve alternative TLD

2014-07-03 Thread Uli Kusterer
On 03 Jul 2014, at 18:54, Paul Scott wrote: > This is a known problem on Safari for Mac, and presumably for iOS. I reported > it, and my bug report was closed as a duplicate of radar:10252476. We have a > corporate TLD that does not resolve in safari, unless you prefix it with > http:// so that

Re: Resolve alternative TLD

2014-07-03 Thread Diederik Meijer | Ten Horses
Thanks, prefixing my one just reports 'server cannot be found'... Verstuurd vanaf mijn iPhone > Op 3 jul. 2014 om 18:54 heeft Paul Scott het volgende > geschreven: > > This is a known problem on Safari for Mac, and presumably for iOS. I reported > it, and my bug report was closed as a duplica

Re: Resolve alternative TLD

2014-07-03 Thread Diederik Meijer | Ten Horses
In addition, if you run it through the Sundial browser (www.sundialbrowser.com), it will resolve .rental domains... ICANN effectively has a monopoly on which TLD's are accessible. Forclarity: this is not a new TLD generally issued, it is a TLD issued bu unifiedroot.com Verstuurd vanaf mijn iPh

Re: Resolve alternative TLD

2014-07-03 Thread Diederik Meijer | Ten Horses
Take start.rental as an example, has a live server on the dot rental TLD, but no standard browser will resolve it, try it in Safari, you'll see.. Verstuurd vanaf mijn iPhone > Op 3 jul. 2014 om 18:22 heeft Jens Alfke het volgende > geschreven: > > >> On Jul 3, 2014, at 6:52 AM, Diederik Meij

Re: Resolve alternative TLD

2014-07-03 Thread Paul Scott
This is a known problem on Safari for Mac, and presumably for iOS. I reported it, and my bug report was closed as a duplicate of radar:10252476. We have a corporate TLD that does not resolve in safari, unless you prefix it with http:// so that Safari doesn’t treat it as a search term. Paul > O

Re: Resolve alternative TLD

2014-07-03 Thread Jens Alfke
On Jul 3, 2014, at 6:52 AM, Diederik Meijer | Ten Horses wrote: > The issue being that the TLD (think for example: domain.law, with law being > the TLD) is accessible through a DNS server, but since the TLD is not > officially registered with ICANN, standard browsers do not resolve the domain

Resolve alternative TLD

2014-07-03 Thread Diederik Meijer | Ten Horses
Dear list, Is it possible to have an iOS app connect to a web server through a domain name that uses an alternative TLD (top level domain name)? The issue being that the TLD (think for example: domain.law, with law being the TLD) is accessible through a DNS server, but since the TLD is not offi

Re: Pop-up menus not working in NSOutlineView with image subview

2014-07-03 Thread Jonathan Mitchell
On 3 Jul 2014, at 03:40, Tim Hewett wrote: > I have an NSOutlineView with a NSImageView subview providing a background > image. Now a pop-up menu has been added to the outline view it seems the menu > only appears with a secondary click on a trackpad. Ctrl-click and the right > mouse button d