<br><br>On 10/25/07, Philippe Marschall &lt;<a href="mailto:philippe.marschall@gmail.com">philippe.marschall@gmail.com</a>&gt; wrote:<br>&gt; 2007/10/25, Miguel Enrique Cobá Martínez &lt;<a href="mailto:m.coba.m@gmail.com">
m.coba.m@gmail.com</a>&gt;:<br>&gt; &gt; Michael Perscheid wrote:<br>&gt; &gt; &gt; Dear list,<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; We proudly present a new Seaside tutorial (for Squeak 3.10 and Seaside 2.8).<br>&gt; &gt; &gt; This tutorial was produced by the Software Architecture Group at the
<br>&gt; &gt; &gt; Hasso-Plattner-Institute (University of Potsdam). In ten chapters we<br>&gt; &gt; &gt; describe step by step the development of a ToDo-application and thereby<br>&gt; &gt; &gt; demonstrate the main parts of the sophisticated web framework Seaside.
<br>&gt; &gt; &gt; Since this is the first version we hope that you can help to improve the<br>&gt; &gt; &gt; quality by providing feedback.<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; Have a look at: <a href="http://www.swa.hpi.uni-potsdam.de/seaside/tutorial">
http://www.swa.hpi.uni-potsdam.de/seaside/tutorial</a><br>&gt; &gt;<br>&gt; &gt; Hi, excellent tutorial.<br>&gt; &gt;<br>&gt; &gt; I have a problem though.<br>&gt; &gt; I have added the method<br>&gt; &gt;<br>&gt; &gt; charSet
<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;^ &#39;iso-8859-1&#39;<br>&gt; &gt;<br>&gt; &gt; to StSession in order to correctly display characters in spanish (á, é,<br>&gt; &gt; etc).<br>&gt; &gt;<br>&gt; &gt; I had 4 task in my todo list but the accented characters showed as a
<br>&gt; &gt; weird symbol with a question mark in it (�). So I added the said method.<br>&gt; &gt;&nbsp;&nbsp; The text displayed correctly after that.<br>&gt; &gt; Then I added the 5 task and instead of my todo list all I got was a page
<br>&gt; &gt; full of&nbsp;&nbsp;weird question marks characters:<br>&gt; &gt;<br>&gt; &gt; &lt;���!���D���O���C���T���Y���P���E��� ���h���t���m���l���<br>&gt; &gt; ���P���U���B���L���I���C���<br>&gt; &gt; ���&quot;���-���/���/���W���3���C���/���/���D���T���D���
<br>&gt; &gt; ���X���H���T���M���L��� ���1���.���0���<br>&gt; &gt; ���S���t���r���i���c���t���/���/���E���N���&quot;���...<br>&gt; &gt;<br>&gt; &gt; Thinking this had something to do with the charSet method, I removed it.
<br>&gt; &gt; Nothing. The same page full of weird characters.<br>&gt; &gt;<br>&gt; &gt; Questions:<br>&gt; &gt; Has someone had a problem like this? Is there a solution?<br>&gt; &gt;<br>&gt; &gt; How can I input accented characters in a form and have Seaside manage
<br>&gt; &gt; them correctly?<br>&gt; &gt;<br>&gt; &gt; Seaside generate a default charset of utf8, but my seaside session<br>&gt; &gt; outputs á as � unless I manually change the encoding to iso-8859-1 in<br>&gt; &gt; the View -&gt; char encoding menu of firefox. Is this the intended
<br>&gt; &gt; behavior? My debian environment is all in utf8 encoding.<br>&gt; <br>&gt; How did you install Seaisde? With the installer or Universes? Do you<br>&gt; have spanish characters in the source code as well?<br><br>
Sorry for not providing that information.<br><br>I have squeak 3.9.8-2 installed using aptitude from<br><br>deb&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://ftp.squeak.org/debian/">http://ftp.squeak.org/debian/</a> stable main<br><br>the image from squeak is version 
3.9.7067.1<br><br>Later I downloaded the squeak-web image from Damien Cassou sq3.10-7137web07.08.1.zip and that is the image I use for seaside learning.<br>The version of seaside in the squeak-web image is Seaside2.8a1-1r.428
<br><br>This is a snipet of my code with characters in spanish:<br>From StLoginComponent&gt;&gt;renderContentOn:<br><br>renderContentOn: html<br>&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;html div<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;class: &#39;generic&#39;;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;with:[<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;html heading: StToDoLibrary applicationName.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;html render: self messageComponent.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;html text: &#39;Ingrese con su email y contraseña (no use la contraseña de su email real):&#39;.<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;html form:[<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;html textInput <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;on: #email of: self;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;value: &#39;&#39;.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;html space.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;html passwordInput <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;callback:[:value | self password: (MD5 hashMessage: value) asInteger asString];
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;value: &#39;&#39;.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;html submitButton <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;callback:[self validateLogin];<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;text: &#39;Login&#39;.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;html paragraph<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;with:[&nbsp;&nbsp;&nbsp;&nbsp;html anchor 
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;callback:[self registerUser];<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;with: [html text: &#39;Registrarse para &#39;, StToDoLibrary applicationName.]]]].<br><br>Where I use the character ñ (&amp;ntilde; in html) and it is displayed, before I added the charSet message, as �.
<br><br>Miguel Cobá<br><br><br><br><br>&gt; Cheers<br>&gt; Philippe<br>&gt; <br>&gt; &gt; Again, good job.<br>&gt; &gt; Regards,<br>&gt; &gt; Miguel Cobá<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; Regards
<br>&gt; &gt; &gt; Michael Perscheid<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; _______________________________________________<br>&gt; &gt; &gt; seaside mailing list<br>&gt; &gt; &gt; <a href="mailto:seaside@lists.squeakfoundation.org">
seaside@lists.squeakfoundation.org</a><br>&gt; &gt; &gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>&gt; &gt; &gt;
<br>&gt; &gt;<br>&gt; &gt; _______________________________________________<br>&gt; &gt; seaside mailing list<br>&gt; &gt; <a href="mailto:seaside@lists.squeakfoundation.org">seaside@lists.squeakfoundation.org</a><br>&gt; &gt; 
<a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>&gt; &gt;<br>&gt; <br>&gt; _______________________________________________
<br>&gt; seaside mailing list<br>&gt; <a href="mailto:seaside@lists.squeakfoundation.org">seaside@lists.squeakfoundation.org</a><br>&gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
</a><br>&gt; <br>&gt; <br><br>