EUREKA!<br><br>After hours of struggling, I finally found that my mistake was that my scrbl headers looked like :<br>@(defmodule/this-package package)<br>
@title[#:tag &quot;package&quot;]{Package Utilities}<br><br>whereas they should (must!) look like:<br>@title[#:tag &quot;package&quot;]{Package Utilities}<br>
@(defmodule/this-package package)<br>
<br>It seems the installer does not like defmodule/this-package after the title.<br>Because of the tag?<br><br>The package has been updated and uploaded and is now fully functional. Probably.<br><br>Thanks for the help,<br>

Hope this package will save some time to some of you now,<br>Laurent<br><br><br><div class="gmail_quote">On Tue, Oct 27, 2009 at 17:10, Noel Welsh <span dir="ltr">&lt;<a href="mailto:noelwelsh@gmail.com">noelwelsh@gmail.com</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="im">On Mon, Oct 26, 2009 at 3:19 PM, Laurent &lt;<a href="mailto:laurent.orseau@gmail.com">laurent.orseau@gmail.com</a>&gt; wrote:<br>


&gt;<br>
&gt; On Sun, Oct 25, 2009 at 15:35, Laurent &lt;<a href="mailto:laurent.orseau@gmail.com">laurent.orseau@gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Hi all,<br>
&gt;&gt;<br>
&gt;&gt; During the process of installing my package (either from PLaneT or from<br>
&gt;&gt; local source), I get a strange error and I don&#39;t know what to do about it:<br>
&gt;&gt;<br>
&gt;&gt; unexpected value rendered: ~e ((font ((class &quot;badlink&quot;)) (span ((class<br>
&gt;&gt; &quot;indexlink&quot;)) (span ((class &quot;ScmPn&quot;)) &quot;(&quot;) (span ((class &quot;ScmSym&quot;)) (span<br>
&gt;&gt; ((class &quot;ScmStxLink&quot;)) &quot;planet&quot;)) (span ((class &quot;stt&quot;)) &quot; &quot;) (span ((class<br>
&gt;&gt; &quot;ScmSym&quot;)) &quot;orseau/lazy-doc:1:2&quot;) (span ((class &quot;ScmPn&quot;)) &quot;)&quot;))))<br>
&gt;&gt;<br>
<br>
</div>These errors are caused by module paths in your docs. I don&#39;t know<br>
what is wrong with them, but that might help you fix the problem.  I<br>
also suggest you fix the errors below in your local install, to make<br>
debugging a bit easier.<br>
<br>
There are (I think) two bugs in PLT. First is in<br>
<br>
scribblings/main/private/make-search.ss<br>
<br>
Line 127<br>
<br>
[else (error &quot;unexpected value rendered: ~e&quot; e)]<br>
<br>
should not have the ~e (or should call format).<br>
<br>
<br>
The other is in<br>
<br>
scribble/html-render.ss<br>
<br>
Line 998<br>
<br>
I think it should read<br>
<br>
`(a (font ([class &quot;badlink&quot;])<br>
<br>
Near this line, change the when statement from (when #f to (when #t to<br>
get somewhat more useful debugging info.<br>
<br>
HTH,<br>
<font color="#888888">N.<br>
</font></blockquote></div><br>