<div dir="ltr"><div>Thanks, I&#39;ll try that. However, I still think there might be a bug in racket/enter.rkt. Currently lines 10-11 look like this:<br></div><div><br></div><div><div>     [(enter! mod flag ...) (andmap keyword? (syntax-&gt;datum #&#39;(flag ...)))</div>
<div>      #&#39;(do-enter! &#39;mod &#39;(flag ...))]</div></div><div class="gmail_extra"><br>But when I remove the quoting from mod in line 11, like so …<br><br><div><div>     [(enter! mod flag ...) (andmap keyword? (syntax-&gt;datum #&#39;(flag ...)))</div>
<div>      #&#39;(do-enter! mod &#39;(flag ...))]</div></div><div><br></div><div class="gmail_extra" style>Then (enter! module-name-variable) works as hoped, and (enter! &quot;module-name-string.rkt&quot;) still works too.</div>
<div class="gmail_extra"><br></div><div class="gmail_extra" style>Making it work proves nothing ;) I will file a bug report.</div><div class="gmail_extra" style><br></div><div class="gmail_extra" style>Matthew Butterick<br>
</div><div class="gmail_extra" style><br></div><div class="gmail_extra"><br></div><br><div class="gmail_quote">On Sat, Apr 27, 2013 at 7:17 PM, Matthew Flatt <span dir="ltr">&lt;<a href="mailto:mflatt@cs.utah.edu" target="_blank">mflatt@cs.utah.edu</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">I think you probably want to create a new namespace for each<br>

instantiation of the Scribble module, and attach Scribble (or whatever<br>
modules you want to stay the same across runs) to the namespace before<br>
`dynamic-require&#39;ing the module in the new namespace:<br>
<br>
 #lang racket/base<br>
 (require scribble/base)<br>
<br>
 (define (re-run module-path)<br>
   (define ns (make-base-namespace))<br>
   (namespace-attach-module (current-namespace) &#39;scribble/base)<br>
   (parameterize ([current-namespace ns])<br>
     (dynamic-require module-path #f)))<br>
<div><div class="h5"><br>
<br>
At Sat, 27 Apr 2013 19:08:53 -0700, Matthew Butterick wrote:<br>
&gt; OK, so the proposed solution failed once I tried to pass in the module name<br>
&gt; as a variable. Even though enter! claims to take a module-path as an<br>
&gt; argument, this will not work:<br>
&gt;<br>
&gt; (define name &quot;module.rkt&quot;)<br>
&gt; (module-path? name) ; reports #t<br>
&gt; (enter! name) ;  error: collection &quot;name&quot; not found<br>
&gt;<br>
&gt; enter! is treating &quot;name&quot; as a module path instead of resolving it as a<br>
&gt; defined term. What I can&#39;t tell is whether this is mandatory behavior for<br>
&gt; enter!, or if it&#39;s a bug in the enter! macro. (I did look at enter.rkt, but<br>
&gt; this week, it&#39;s over my head.)<br>
&gt;<br>
&gt; Matthew Butterick<br>
&gt;<br>
&gt;<br>
&gt; On Sat, Apr 27, 2013 at 6:16 PM, Matthew Butterick<br>
&gt; &lt;<a href="mailto:mb.list.acct@gmail.com">mb.list.acct@gmail.com</a>&gt;wrote:<br>
&gt;<br>
&gt; &gt; Aha, combining enter! with dynamic-require seems to do the trick:<br>
&gt; &gt;<br>
&gt; &gt; (define (route req)<br>
&gt; &gt;     (enter! &quot;module.rkt&quot;)<br>
&gt; &gt;     (define foo (dynamic-require &quot;module.rkt&quot; &#39;foo))<br>
&gt; &gt;     (response/xexpr `(p ,(format &quot;~a&quot; foo))))<br>
&gt; &gt;<br>
&gt; &gt; Once this route is running in the web server, I can make changes to<br>
&gt; &gt; module.rkt, then click reload in the browser, and the changes will appear<br>
&gt; &gt; in the browser.<br>
&gt; &gt;<br>
&gt; &gt; If this is a terrible idea let me know, otherwise I&#39;ll consider this<br>
&gt; &gt; solved.<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; On Sat, Apr 27, 2013 at 9:56 AM, Matthew Butterick &lt;<a href="mailto:mb.list.acct@gmail.com">mb.list.acct@gmail.com</a><br>
&gt; &gt; &gt; wrote:<br>
&gt; &gt;<br>
&gt; &gt;&gt; I&#39;m building a website using Scribble as the source format. As a<br>
&gt; &gt;&gt; development tool, I&#39;ve built a web server in Python that lets me view all<br>
&gt; &gt;&gt; my Scribble source files and look at them in different states of<br>
&gt; &gt;&gt; processing. To view the results of the Scribble files, the Python server<br>
&gt; &gt;&gt; just sends the files to Racket via a system command (os.Popen) and reads<br>
&gt; &gt;&gt; the result. This works but it&#39;s slow, because it  has to launch a new<br>
&gt; &gt;&gt; Racket thread for every request.<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; I thought I could speed things up by rewriting the development web server<br>
&gt; &gt;&gt; in Racket. But having tried a few approaches, I&#39;m not sure how to duplicate<br>
&gt; &gt;&gt; this functionality within a Racket web servlet:<br>
&gt; &gt;&gt;<br>
</div></div>&gt; &gt;&gt; *(require &lt;modulename&gt;) *<br>
<div class="im">&gt; &gt;&gt; This only gets evaluated once, when the server is started. That doesn&#39;t<br>
&gt; &gt;&gt; help, since the &lt;filename&gt; is going to be passed in as a parameter while<br>
&gt; &gt;&gt; the server is running.<br>
&gt; &gt;&gt;<br>
</div>&gt; &gt;&gt; *(dynamic-require &lt;** modulename **&gt;) *<br>
<div class="im">&gt; &gt;&gt; This gets evaluated only when invoked, and thus can take &lt;modulename&gt; as<br>
&gt; &gt;&gt; a parameter, but then &lt;filename&gt; can&#39;t be reloaded (this is essential, as<br>
&gt; &gt;&gt; the point of the system is to be able to edit the files and see the changes<br>
&gt; &gt;&gt; in the web browser immediately)<br>
&gt; &gt;&gt;<br>
</div>&gt; &gt;&gt; *(enter! &lt;modulename&gt;)*<br>
<div class="im">&gt; &gt;&gt; This reloads the file, but it&#39;s not clear how to get access to names<br>
&gt; &gt;&gt; provided by &lt;modulename&gt;. (The documentation for enter! suggests that this<br>
&gt; &gt;&gt; is not how it&#39;s meant to be used anyhow.)<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Obviously, I could call a new instance of Racket as a system command, but<br>
&gt; &gt;&gt; that wouldn&#39;t offer any advantage over the current approach.<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; I suppose what I&#39;m looking for is an equivalent of the Python<br>
&gt; &gt;&gt; reload(&lt;modulename&gt;) command.<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Matthew Butterick<br>
&gt; &gt;&gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
</div>&gt; ____________________<br>
&gt;   Racket Users list:<br>
&gt;   <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/users</a><br>
</blockquote></div><br></div></div>