On Sep 17, 2014, at 2:39 PM, Rob McBroom <[email protected]> wrote:
> On 17 Sep 2014, at 12:46, Patrick Robertson wrote: > > The history of why we did it is at > https://github.com/quicksilver/Quicksilver/pull/1114 > which I'm hoping might help either of the other two developers who helped > make those changes (Rob, Etienne) remember why it was done! > > It was changed to fix #921. > > It may well need revisiting, as this looks like a bug > > Yeah, I suppose it should only change the first # if it comes right after the > file name. Not an easy thing to determine. I'm not sure of the issue here, but the URL example in #921 is kinda broken (and doesn't lead to a valid page) The first # in a URI delimits the fragment part of the URI (so it terminates the path part of the URI). Also # is not allowed in a fragment so a URI with more than one # is invalid. If you want more than one it must be encoded. That's just the definition of URIs, I'm not sure at all what URLWithString will do with such an URL but I suspect it's failing and returning nil. I also don't know how this relates to Tim's problem, just trying to add info I do know :) Howard -- You received this message because you are subscribed to the Google Groups "Quicksilver" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/blacktree-quicksilver. For more options, visit https://groups.google.com/d/optout.
