<div><span style="font-size:13.3333339691162px">you can just transfer it yourself - just retain his licence notice LGPL</span><br></div><div><span style="font-size:13.3333339691162px">that is what I've tried to do but I can't log into <a href="http://pkg.racket-lang.org">pkg.racket-lang.org</a> to add it.</span></div><div><span style="font-size:13.3333339691162px"><br></span></div><div><span style="font-size:13.3333339691162px">You should be able to clone and submit it to <a href="http://pkg.racket-lang.org">pkg.racket-lang.org</a> yourself:</span></div><div><div style="font-size:13.3333339691162px"><span style="font-size:13.3333339691162px">git://<a href="http://github.com/spdegabrielle/table-panel">github.com/spdegabrielle/table-panel</a></span><br></div><span style="font-size:13.3333339691162px"><br></span></div>s.<div><br><div class="gmail_quote">On Fri Nov 28 2014 at 3:44:52 PM Dmitry Pavlov <<a href="mailto:dpavlov@ipa.nw.ru" target="_blank">dpavlov@ipa.nw.ru</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Matthew,<br>
<br>
OK, got it.<br>
<br>
What would you advise -- to ask the developer of table-panel to transfer<br>
it to <a href="http://pkgs.racket-lang.org" target="_blank">pkgs.racket-lang.org</a> (so that spradsheet-editor could access it),<br>
or to wait until <a href="http://pkgs.racket-lang.org" target="_blank">pkgs.racket-lang.org</a> supports PLaneT packages?<br>
<br>
Best regards,<br>
<br>
Dmitry<br>
<br>
<br>
<br>
On 11/28/2014 07:22 PM, Matthew Flatt wrote:<br>
> The package-build service does not currently support access to PLaneT<br>
> packages.<br>
><br>
> You can find more information about the package-build service here:<br>
><br>
>   <a href="http://pkg-build.racket-lang.org/about.html" target="_blank">http://pkg-build.racket-lang.<u></u><u></u>org/about.html</a><br>
><br>
> (That page was intended to be linked from the main packages page, but<br>
> we haven't gotten there, yet.)<br>
><br>
><br>
> At Fri, 28 Nov 2014 19:08:31 +0400, Dmitry Pavlov wrote:<br>
>> Robby,<br>
>><br>
>> Thank you very much, I am happy now with editor running within DrRacket.<br>
>><br>
>> By the way, I have made a package, not with the full editor<br>
>> itself (it is specific to my project), but with the base GUI class<br>
>> (customizable).<br>
>><br>
>> I have registered the package on <a href="http://pkgs.racket-lang.org" target="_blank">pkgs.racket-lang.org</a> under the name<br>
>> spreadsheet-editor. It fails to build, and here is what I am seeing:<br>
>><br>
>> <a href="http://pkg-build.racket-lang.org/server/built/fail/spreadsheet-editor.txt" target="_blank">http://pkg-build.racket-lang.<u></u>o<u></u>rg/server/built/fail/<u></u>spreadshe<u></u>et-editor.txt</a><br>
>><br>
>> require: PLaneT could not download the package "williams/table-panel:1":<br>
>> tcp-connect: connection failed<br>
>>     detail: host not found<br>
>>     address: <a href="http://planet.racket-lang.org" target="_blank">planet.racket-lang.org</a><br>
>>     port number: 80<br>
>>     step: 1<br>
>>     system error: Name or service not known; errno=-2<br>
>>     in: (planet williams/table-panel:1:2/<u></u>table<u></u>-panel)<br>
>><br>
>> At the same time, it all works fine on my system. Do you have an idea<br>
>> how can it be fixed?<br>
>><br>
>><br>
>> Best regards,<br>
>><br>
>> Dmitry<br>
>><br>
>><br>
>><br>
>><br>
>> On 11/14/2014 05:44 PM, Robby Findler wrote:<br>
>>> On Fri, Nov 14, 2014 at 5:36 AM, Dmitry Pavlov <<a href="mailto:dpavlov@ipa.nw.ru" target="_blank">dpavlov@ipa.nw.ru</a>> wrote:<br>
>>>> Robby,<br>
>>>><br>
>>>>> Sorry for the long delay in replying.<br>
>>>><br>
>>>><br>
>>>> Never mind---I have been distracted by other things recently, and<br>
>>>> now I am back to work on this, so your reply is in fact just in time,<br>
>>>> thanks :)<br>
>>>><br>
>>>>> You should be able to use handler:insert-format-handler to open your<br>
>>>>> frame when a file with your extension is opened via the open dialog.<br>
>>>><br>
>>>><br>
>>>> Good, insert-format-handler will suffice my needs I think.<br>
>>>> Dumb question follows: what is the best place to call<br>
>>>> insert-format-handler from?<br>
>>>><br>
>>>> To be more specific about my goals:<br>
>>>> I have a Racket installation, and I would like to have this<br>
>>>> format handler registered by the moment a user starts DrRacket<br>
>>>> and opens some file in it.<br>
>>>><br>
>>>> I tried and hijacked<br>
>>>> /opt/racket/share/pkgs/<u></u>drracke<u></u>t/drracket/private/<u></u>main.rkt<br>
>>>> to insert my (handler:insert-format-<u></u>handler<u></u>) to it, but<br>
>>>> this surely does not seem to be a good solution.<br>
>>>><br>
>>>> My spreadsheet-editing module is currently in a collection<br>
>>>> that is "raco link"-ed to the Racket installation. Is there<br>
>>>> a way to call (handler:insert-format-<u></u>handler<u></u>) from a collection<br>
>>>> module before the collection is (require)-d? Or can I form<br>
>>>> a package from my collection and use some package mechanism<br>
>>>> for that?<br>
>>><br>
>>> Yes. See: <a href="http://docs.racket-lang.org/tools/implementing-tools.html" target="_blank">http://docs.racket-lang.org/<u></u>to<u></u>ols/implementing-tools.html</a><br>
>>><br>
>>> You probably want to call it just from the top-level of your unit (not<br>
>>> from phase1 or phase2).<br>
>>><br>
>>>> Also, a related question: what would you recommend for<br>
>>>> adding a certain file type to the DrRacket's file->open<br>
>>>> dialog, where currently are "Racket Sources" and "Any"?<br>
>>><br>
>>> I think you should call finder:default-filters (using the old value to<br>
>>> construct a new value).<br>
>>><br>
>>> Robby<br>
>>> ____________________<br>
>>>     Racket Users list:<br>
>>>     <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/<u></u><u></u>users</a><br>
>>><br>
>> ____________________<br>
>>    Racket Users list:<br>
>>    <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/<u></u>u<u></u>sers</a><br>
> ____________________<br>
>    Racket Users list:<br>
>    <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/<u></u>u<u></u>sers</a><br>
><br>
____________________<br>
  Racket Users list:<br>
  <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/<u></u>u<u></u>sers</a><br>
</blockquote></div></div>