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
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
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
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
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
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.
>>
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
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
8 matches
Mail list logo