[racket-dev] meeting notes, November 2014

2014-11-20 Thread Matthias Felleisen
Every few months, the principals of the Racket world meet for a day to discuss the state and near (and, occasionally, distant) future of the Racket world. We met this past weekend in Chicago, and here is the list of major points we discussed. 1. We will split the central Racke

Re: [racket-dev] DrRacket PF1 Search Bug?

2014-11-20 Thread Stephen De Gabrielle
Is it significant that on the non-working machine running 6.1.1.5 (perform-search "xyz") returns file:///Applications/Racket%20v6.1.1.5/doc/search/index.html But my working instance running 6.1.1.5 (it is a day later build) running (perform-search "XYX") returns file:///Users/spdegabrielle/Library

Re: [racket-dev] DrRacket PF1 Search Bug?

2014-11-20 Thread Robby Findler
Ah, thanks! I see that if it is trying to load the docs that are in /Applications then it runs the code below, which somehow magically drops the query argument by the time safari gets it. It's not because of the space, either; when I rename "Racket v6.1.1.5" to just "r", it also doesn't work. But i

Re: [racket-dev] DrRacket PF1 Search Bug?

2014-11-20 Thread Eli Barzilay
On Thu, Nov 20, 2014 at 5:22 PM, Robby Findler wrote: > Ah, thanks! I see that if it is trying to load the docs that are in > /Applications then it runs the code below, which somehow magically > drops the query argument by the time safari gets it. It's not because > of the space, either; when I re

Re: [racket-dev] DrRacket PF1 Search Bug?

2014-11-20 Thread Stephen De Gabrielle
in DrRacket: > (send-url "file:///Users/spdegabrielle/hello.html?q=aaaba") works > (send-url "file:///Applications/hello.html?q=xyz") works > (send-url "file:///Applications/Racket%20v6.1.1.5/doc/search/index.html?q=xyz") fails in bash: Miriams-MacBook-Pro-2:~ spdegabrielle$ open "fil

Re: [racket-dev] DrRacket PF1 Search Bug?

2014-11-20 Thread Eli Barzilay
On Thu, Nov 20, 2014 at 7:51 PM, Stephen De Gabrielle wrote: > in DrRacket: > >> (send-url "file:///Users/spdegabrielle/hello.html?q=aaaba") > > works > >> (send-url "file:///Applications/hello.html?q=xyz") > > works In that case I think that it's a different problem than what I described. >>

Re: [racket-dev] DrRacket PF1 Search Bug?

2014-11-20 Thread Robby Findler
No, the browser isn't hiding the query part. Here are the content of two script files: $ cat a.scrpt open location "file:///Applications/r/doc/search/index.html?q=xyz" $ cat b.scrpt open location "file:///Users/robby/Library/Racket/development/doc/search/index.html?q=xyz" Running "osascript a

Re: [racket-dev] DrRacket PF1 Search Bug?

2014-11-20 Thread Eli Barzilay
On Thu, Nov 20, 2014 at 10:38 PM, Robby Findler wrote: > No, the browser isn't hiding the query part. > > Here are the content of two script files: > > $ cat a.scrpt > open location "file:///Applications/r/doc/search/index.html?q=xyz" > $ cat b.scrpt > open location > "file:///Users/robby/Libra