<div dir="ltr">Ok...I can reproduce it. The difference between Pharo 3.0 and 2.0 is likely that in 3.0 we have the new Opal compiler. If I debug your problem, it seems Opal is not able to even parse the method. It fails with a SyntaxErrorNotification. Example:<div><br></div><div><div><span style="background-color:rgb(241,194,50)">Variable or expression expected -&gt; </span>renderContentOn: html</div><div><span class="" style="white-space:pre">        </span>self wasShown</div><div><span class="" style="white-space:pre">                </span>ifTrue: [ ^ self ].</div><div><span class="" style="white-space:pre">        </span>self messageString</div><div><span class="" style="white-space:pre">                </span>ifNotNil: [ </div><div><span class="" style="white-space:pre">                        </span>self messageType = &#39;error&#39;</div><div><span class="" style="white-space:pre">                                </span>ifTrue: [ </div><div><span class="" style="white-space:pre">                                        </span>html tbsAlert</div><div><span class="" style="white-space:pre">                                                </span>beDanger;</div><div><span class="" style="white-space:pre">                                                </span>with: [ html text: self messageString ] ].</div><div><span class="" style="white-space:pre">                        </span>self messageType = &#39;info&#39;</div><div><span class="" style="white-space:pre">                                </span>ifTrue: [ </div><div><span class="" style="white-space:pre">                                        </span>html tbsAlert</div><div><span class="" style="white-space:pre">                                                </span>beInfo;</div><div><span class="" style="white-space:pre">                                                </span>with: [ html text: self messageString ] ].</div><div><span class="" style="white-space:pre">                        </span>self messageType = &#39;success&#39;</div><div><span class="" style="white-space:pre">                                </span>ifTrue: [ </div><div><span class="" style="white-space:pre">                                        </span>html tbsAlert</div><div><span class="" style="white-space:pre">                                                </span>beSuccess;</div><div><span class="" style="white-space:pre">                                                </span>with: [ html text: self messageString ] ].</div><div><span class="" style="white-space:pre">                        </span>].</div><div><span class="" style="white-space:pre">        </span>self wasShown: true</div></div><div><br></div><div><br></div><div><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Dec 11, 2014 at 9:52 AM, Sanjay-M <span dir="ltr">&lt;<a href="mailto:sm@planage.com" target="_blank" class="vt-p">sm@planage.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I do not get an error in the Seaside one-click experience 3.1 from <a href="http://seaside.st" target="_blank" class="vt-p">seaside.st</a><br>
pharo page which uses pharo 2.0<br>
<br>
With a fresh 3.0 image and loading seaside 3.1 using the Gofer method - the<br>
issue persists (i.e. I cannot save code from Seaside class browser and get<br>
an error:<br>
<span class="">      MessageNotUnderstood: receiver of &quot;generateWithSource&quot; is nil<br>
</span>      Your request could not be completed. An exception occurred.)<br>
<br>
and this is further broken in pharo 4.0 where the class browser does not<br>
come up completely<br>
<br>
can I get some help as I do not wish to revert to an older pharo version<br>
<br>
regards<br>
<span class="">Sanjay<br>
<br>
<br>
Sven Van Caekenberghe-2 wrote<br>
</span><span class="">&gt; Sorry, I can&#39;t help you with Windows.<br>
&gt;<br>
</span>&gt;&gt; On 11 Dec 2014, at 12:04, Sanjay-M &amp;lt;<br>
<br>
&gt; sm@<br>
<div><div class="h5"><br>
&gt; &amp;gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; I am in a Windows environment and am running the VM and image from the<br>
&gt;&gt; same<br>
&gt;&gt; directory<br>
&gt;&gt;<br>
&gt;&gt; what is the equivalent of below in a Win 7 ennvironment<br>
&gt;&gt;<br>
&gt;&gt; thanks<br>
&gt;&gt; Sanjay<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Sven Van Caekenberghe-2 wrote<br>
&gt;&gt;&gt; Are you sure your image can access its changes and sources ?<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Can you do something like<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; $ ./bin/pharo -vm-display-null t3.image eval &#39;(String&gt;&gt;#capitalized)<br>
&gt;&gt;&gt; sourceCode&#39;<br>
&gt;&gt;&gt; &#39;capitalized<br>
&gt;&gt;&gt;     &quot;Return a copy with the first letter capitalized&quot;<br>
&gt;&gt;&gt;     | cap |<br>
&gt;&gt;&gt;     self isEmpty ifTrue: [ ^self copy ].<br>
&gt;&gt;&gt;     cap := self copy.<br>
&gt;&gt;&gt;     cap at: 1 put: (cap at: 1) asUppercase.<br>
&gt;&gt;&gt;     ^ cap&#39;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; ?<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; On 11 Dec 2014, at 10:39, Sanjay-M &amp;lt;<br>
&gt;&gt;<br>
&gt;&gt;&gt; sm@<br>
&gt;&gt;<br>
&gt;&gt;&gt; &amp;gt; wrote:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Hi<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; In Pharo 3 + Seaside 3.1<br>
&gt;&gt;&gt;&gt; I get the following error in Halos-&gt;class browser<br>
&gt;&gt;&gt;&gt; when I edit renderContentOn: (add a line) and hit [accept]<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;   MessageNotUnderstood: receiver of &quot;generateWithSource&quot; is nil<br>
&gt;&gt;&gt;&gt;   Your request could not be completed. An exception occurred.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; and also in Pharo 4 + seaside 3.1<br>
&gt;&gt;&gt;&gt; the class browser does not work<br>
&gt;&gt;&gt;&gt; (there is an error when loading Seaside itself which is in another<br>
&gt;&gt;&gt;&gt; post)<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; regards<br>
&gt;&gt;&gt;&gt; Sanjay<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; -----<br>
&gt;&gt;&gt;&gt; ---<br>
&gt;&gt;&gt;&gt; Regards, Sanjay<br>
&gt;&gt;&gt;&gt; --<br>
&gt;&gt;&gt;&gt; View this message in context:<br>
&gt;&gt;&gt;&gt; <a href="http://forum.world.st/Pharo-3-Seaside-3-1-development-time-error-tp4795419.html" target="_blank" class="vt-p">http://forum.world.st/Pharo-3-Seaside-3-1-development-time-error-tp4795419.html</a><br>
&gt;&gt;&gt;&gt; Sent from the Seaside General mailing list archive at Nabble.com.<br>
&gt;&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt;&gt; seaside mailing list<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;&gt; seaside@.squeakfoundation<br>
&gt;&gt;<br>
&gt;&gt;&gt;&gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank" class="vt-p">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt; seaside mailing list<br>
&gt;&gt;<br>
&gt;&gt;&gt; seaside@.squeakfoundation<br>
&gt;&gt;<br>
&gt;&gt;&gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank" class="vt-p">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; -----<br>
&gt;&gt; ---<br>
&gt;&gt; Regards, Sanjay<br>
&gt;&gt; --<br>
&gt;&gt; View this message in context:<br>
&gt;&gt; <a href="http://forum.world.st/Pharo-3-Seaside-3-1-development-time-error-tp4795419p4795437.html" target="_blank" class="vt-p">http://forum.world.st/Pharo-3-Seaside-3-1-development-time-error-tp4795419p4795437.html</a><br>
&gt;&gt; Sent from the Seaside General mailing list archive at Nabble.com.<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; seaside mailing list<br>
&gt;&gt;<br>
<br>
&gt; seaside@.squeakfoundation<br>
<br>
&gt;&gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank" class="vt-p">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; seaside mailing list<br>
<br>
&gt; seaside@.squeakfoundation<br>
<br>
&gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank" class="vt-p">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
<br>
<br>
<br>
<br>
<br>
-----<br>
---<br>
Regards, Sanjay<br>
--<br>
</div></div>View this message in context: <a href="http://forum.world.st/Pharo-3-Seaside-3-1-development-time-error-tp4795419p4795454.html" target="_blank" class="vt-p">http://forum.world.st/Pharo-3-Seaside-3-1-development-time-error-tp4795419p4795454.html</a><br>
<div class="HOEnZb"><div class="h5">Sent from the Seaside General mailing list archive at Nabble.com.<br>
_______________________________________________<br>
seaside mailing list<br>
<a href="mailto:seaside@lists.squeakfoundation.org" class="vt-p">seaside@lists.squeakfoundation.org</a><br>
<a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank" class="vt-p">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature">Mariano<br><a href="http://marianopeck.wordpress.com" target="_blank" class="vt-p">http://marianopeck.wordpress.com</a><br></div>
</div></div>