Taylor,<br>I am also a newbie. I tried a lot searching for a proper documentation for a newbie, but its quite difficult to get one. You can try the following in order.<br><br>1) Download Seaside - Tailormade image for web development from Damien Cassou&#39;s website . Try 
Squeak-web-95-2.zip ( I am using it and I am not sure if the later versions work fine ?? )<br><br><a href="http://damien.cassou.free.fr/squeak-web/old/">http://damien.cassou.free.fr/squeak-web/old/</a><br><br>2) Good tutorial for a beginner is 
<a href="http://www.shaffer-consulting.com/david/Seaside/">http://www.shaffer-consulting.com/david/Seaside/</a><br><br>Though the tutorial is meant for Seaside 2.5 of 2.6, this explains all the concepts from beginners point of view. You may find that some methods are no longer accepted in Seaside 
2.7 and higher. You can give it a try and try to get the corresponding methods in 2.7. For example, I figured out the following changes that are necessary.<span style="font-weight: bold;"> If David Shaffer gives me permission
</span>, I can try to put the changes on a Blog so that beginners can be benefited. <br><br>html anchorWithAction:[self sayHello] text: &#39;Say Hello&#39;.<br><br>is to be replaced by <br><br><span style="color: rgb(255, 0, 0);">
html anchor callback: [self sayHello]; with:&#39;Say Hello&#39;.</span><br><br>####################################################################<br><br>html spanClass: &#39;label&#39; with: &#39;Name:&#39;.<br><br>is to be replaced by 
<br><br><span style="color: rgb(255, 0, 0);">html span class: &#39;label&#39;; with: &#39;Name:&#39;.</span><br><br>###################################################################<br><br>html submitButtonWithAction: [self save] text: &#39;Save&#39;.
<br><br>is to be replaced by<br><br><span style="color: rgb(255, 0, 0);">html submitButton callback: [self save]; with: &#39;Save&#39;.</span><br><br>####################################################################<br>
<br><br>html spanClass: &#39;field&#39;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; with: [html textInputWithValue: self name<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;callback: [:v | self name: v]].<br><br>is to be replaced by<br><br><span style="color: rgb(255, 0, 0);">
html span class: &#39;field&#39;;</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; with: [html textInput value: self name;</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;callback: [:v | self name: v]].</span><br>#######################################################################<br><br><br>html textAreaWithValue:<br><br>by<br><br><span style="color: rgb(255, 0, 0);">html textArea value:
</span><br>#########################################################################<br><br>html textInputOn: #name of: self<br><br>by<br><br><span style="color: rgb(255, 0, 0);">html textInput on:&nbsp; #name of: self</span><br>
<br>###########################################################################<br><br>There are a few more changes to be made. I hope you can manage on your own, in case you end up not getting the solutions, mail back to the List.
<br><br><br><br>3) Go through 1 hour video of Lukas Renggli&#39;s presentation on Google Video<br><br><a href="http://video.google.com/videoplay?docid=1029369558328427746">http://video.google.com/videoplay?docid=1029369558328427746
</a><br><br><br>4) Go though the tutorial blog <a href="http://inchingforward.blogspot.com/2007_01_01_archive.html">http://inchingforward.blogspot.com/2007_01_01_archive.html</a><br><br>It gives a nice example on how to build a small web application(a Wanted List), emphasizing more on Basics
<br><br><br>5) Next, you can try Seaside with Scriptaculous example at <a href="http://objectcentric.wordpress.com/2007/01/17/scriptacu-list-tutorialpart-1/">http://objectcentric.wordpress.com/2007/01/17/scriptacu-list-tutorialpart-1/
</a><br><br>You may feel that some things go over your head, let them. Once you complete the tutorial, you would get hold on things.<br><br>6) Once you are done with the above tutorials, its time to begin with blogs meant for advanced users. 
<br><br><a href="http://onsmalltalk.com/">http://onsmalltalk.com/</a> <br>&nbsp;<br>A very active blog by Ramon Leon. Go through the video to make a blog <a href="http://onsmalltalk.com/programming/smalltalk/screencast-how-to-build-a-blog-in-15-minutes-with-seaside/">
http://onsmalltalk.com/programming/smalltalk/screencast-how-to-build-a-blog-in-15-minutes-with-seaside/</a><br><br>and all other similar posts. <br><br>7) You can also go through the website of Lukas Renggli, one of the core developers of Seaside
<br><br><a href="http://lukas-renggli.ch/smalltalk/seaside">http://lukas-renggli.ch/smalltalk/seaside</a><br><br>You can also check out Magritte and Pier.<br><br><br>There are other blogs as well. You can search for them in google or use the links provided on the above blogs to reach there.
<br><br>I hope the above list helps you out.<br><br><br>Regards,<br>Rajeev<br><br><br><br><br><pre class="code"><br></pre><br><br><div><span class="gmail_quote">On 7/9/07, <b class="gmail_sendername">Rúben Cabaço</b> &lt;
<a href="mailto:rubend@student.dei.uc.pt">rubend@student.dei.uc.pt</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hello,
<br><br>You can find some tutorials and explanations in the following links:<br><br><a href="http://www.lukas-renggli.ch/smalltalk/seaside">http://www.lukas-renggli.ch/smalltalk/seaside</a><br><a href="http://onsmalltalk.com/">
http://onsmalltalk.com/</a><br><br>There isn&#39;t really a place of tutorials and documentation (to my knowledge).<br>The best way i found to learn about Seaside is through blogs.<br><br>Regards,<br>Rúben Cabaço<br><br><br>
On Monday 09 July 2007 11:01:56 Conrad Taylor wrote:<br>&gt; Hi, I have played with the Seaside examples but I&#39;m looking for some<br>&gt; tutorials that explain things in greater detail.&nbsp;&nbsp;For example, I went<br>&gt; to the following site:
<br>&gt;<br>&gt; <a href="http://www.seaside.st/Tutorial/AWalkontheSeaside/">http://www.seaside.st/Tutorial/AWalkontheSeaside/</a><br>&gt;<br>&gt; and it seems that it&#39;s missing alot of detail as to what I need to do.
<br>&gt;&nbsp;&nbsp;Do I have to derive from a specific class or is this optional?&nbsp;&nbsp;If<br>&gt; so, what&#39;s the name of the class?&nbsp;&nbsp;I&#39;m trying to get an overalll feel<br>&gt; as to how to design, implement, and deploy a Seaside application from
<br>&gt; the perspective of a new developer.&nbsp;&nbsp;Thus, if someone can direct me to<br>&gt; the documentation, it will be greatly appreciated.<br>&gt;<br>&gt; Thanks in advance,<br>&gt;<br>&gt; -Conrad<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><br><br>_______________________________________________<br>Seaside mailing list<br><a href="mailto:Seaside@lists.squeakfoundation.org">Seaside@lists.squeakfoundation.org</a><br><a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside">
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br></blockquote></div><br><br clear="all"><br>-- <br>Rajeev Lochan<br><br>Co-founder, AR-CAD.com<br><br><a href="http://www.ar-cad.com">http://www.ar-cad.com
</a><br>+91 9212090622 (Gurgaon)<br>080 65355873 (Bangalore)