<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Small Reddit, A Seaside Sample Application</title>
	<atom:link href="http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/feed/" rel="self" type="application/rss+xml" />
	<link>http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/</link>
	<description>thoughts on Smalltalk and programming in general...</description>
	<pubDate>Wed, 23 Jul 2008 20:24:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Ramon Leon</title>
		<link>http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-6008</link>
		<dc:creator>Ramon Leon</dc:creator>
		<pubDate>Sun, 30 Sep 2007 21:22:27 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-6008</guid>
		<description>Ah, OK, fixed, it'll run in Seaside 2.8 now, SqueakSource updated.</description>
		<content:encoded><![CDATA[<p>Ah, OK, fixed, it&#8217;ll run in Seaside 2.8 now, SqueakSource updated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Driedger</title>
		<link>http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-6002</link>
		<dc:creator>Kevin Driedger</dc:creator>
		<pubDate>Sun, 30 Sep 2007 06:01:26 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-6002</guid>
		<description>Using SmallReddit with the latest squeak-web image from damien.cassou and the 3.10 vm, I get a walkback: 
MessageNotUnderstood: WAMessageDecoration&#62;&#62;onAnswer:

    * WAMessageDecoration(Object)&#62;&#62;doesNotUnderstand: #onAnswer:

          self	a WAMessageDecoration
          temps
          aMessage	onAnswer: [] in SRSmallRedditHome(WAComponent)&#62;&#62;show:onAnswer:delegation: {[:value &#124; aDelegation re...etc...
          inst vars
          next	a WAStateHolder(a MAValidationDecoration)
          message	'Submit New Article'

    * SRSmallRedditHome(WAComponent)&#62;&#62;show:onAnswer:delegation:

          self	a SRSmallRedditHome
          temps
          aComponent	a WAMessageDecoration
          aBlock	an AnswerContinuation
          aDelegation	a WADelegation
          event	nil
          value	nil
          inst vars
          decoration	a WAStateHolder(a WAAnswerHandler)
          errors	nil
          pagedEntries	a WABatchedList

    * SRSmallRedditHome(WAComponent)&#62;&#62;show:onAnswer:

          self	a SRSmallRedditHome
          temps
          aComponent	a WAMessageDecoration
          aBlock	an AnswerContinuation
          inst vars
          decoration	a WAStateHolder(a WAAnswerHandler)
          errors	nil
          pagedEntries	a WABatchedList</description>
		<content:encoded><![CDATA[<p>Using SmallReddit with the latest squeak-web image from damien.cassou and the 3.10 vm, I get a walkback:<br />
MessageNotUnderstood: WAMessageDecoration&gt;&gt;onAnswer:</p>
<p>    * WAMessageDecoration(Object)&gt;&gt;doesNotUnderstand: #onAnswer:</p>
<p>          self	a WAMessageDecoration<br />
          temps<br />
          aMessage	onAnswer: [] in SRSmallRedditHome(WAComponent)&gt;&gt;show:onAnswer:delegation: {[:value | aDelegation re&#8230;etc&#8230;<br />
          inst vars<br />
          next	a WAStateHolder(a MAValidationDecoration)<br />
          message	&#8216;Submit New Article&#8217;</p>
<p>    * SRSmallRedditHome(WAComponent)&gt;&gt;show:onAnswer:delegation:</p>
<p>          self	a SRSmallRedditHome<br />
          temps<br />
          aComponent	a WAMessageDecoration<br />
          aBlock	an AnswerContinuation<br />
          aDelegation	a WADelegation<br />
          event	nil<br />
          value	nil<br />
          inst vars<br />
          decoration	a WAStateHolder(a WAAnswerHandler)<br />
          errors	nil<br />
          pagedEntries	a WABatchedList</p>
<p>    * SRSmallRedditHome(WAComponent)&gt;&gt;show:onAnswer:</p>
<p>          self	a SRSmallRedditHome<br />
          temps<br />
          aComponent	a WAMessageDecoration<br />
          aBlock	an AnswerContinuation<br />
          inst vars<br />
          decoration	a WAStateHolder(a WAAnswerHandler)<br />
          errors	nil<br />
          pagedEntries	a WABatchedList</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramon Leon</title>
		<link>http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-2932</link>
		<dc:creator>Ramon Leon</dc:creator>
		<pubDate>Mon, 04 Jun 2007 22:31:20 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-2932</guid>
		<description>On the class side of your model, or your model base class, just do this...

&lt;pre&gt;
descriptionContainer
    ^super descriptionContainer 
      componentRenderer: YourCustomRenderer;
      yourself
&lt;/pre&gt;

Have a look at MATableRenderer and MACssRenderer to see how to write a renderer.</description>
		<content:encoded><![CDATA[<p>On the class side of your model, or your model base class, just do this&#8230;</p>
<pre>
descriptionContainer
    ^super descriptionContainer
      componentRenderer: YourCustomRenderer;
      yourself
</pre>
<p>Have a look at MATableRenderer and MACssRenderer to see how to write a renderer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Wilkinson</title>
		<link>http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-2931</link>
		<dc:creator>Tom Wilkinson</dc:creator>
		<pubDate>Mon, 04 Jun 2007 22:24:29 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-2931</guid>
		<description>I am a bit like some of these other guys and finding it a bit hard to figure out where and what methods are the best to do things with. 

I am using Magritte to handle the generic input form that we have which has about 20 fields. They are basically a pulldown menu and then a possible comment on the result. (this is for a safety application) By default Margritte lays them down one after the other in  a list style. We want to have it displayed in 2-3 columns across so that it all fits on one screen. Is this something that magritte can do or do we need to a totally custom screen? I keep finding references in the magritte area that says just set a custom rendering together and override the defaults but can't find any descriptions or examples of what this might look like and am just not bright enough to figure it out on my own. Any pointing in the right direction would be appreciated. Nice work.</description>
		<content:encoded><![CDATA[<p>I am a bit like some of these other guys and finding it a bit hard to figure out where and what methods are the best to do things with. </p>
<p>I am using Magritte to handle the generic input form that we have which has about 20 fields. They are basically a pulldown menu and then a possible comment on the result. (this is for a safety application) By default Margritte lays them down one after the other in  a list style. We want to have it displayed in 2-3 columns across so that it all fits on one screen. Is this something that magritte can do or do we need to a totally custom screen? I keep finding references in the magritte area that says just set a custom rendering together and override the defaults but can&#8217;t find any descriptions or examples of what this might look like and am just not bright enough to figure it out on my own. Any pointing in the right direction would be appreciated. Nice work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-2877</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 22 May 2007 01:34:25 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-2877</guid>
		<description>Thanks very much for that info, it will help me a lot.

Mike</description>
		<content:encoded><![CDATA[<p>Thanks very much for that info, it will help me a lot.</p>
<p>Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramon Leon</title>
		<link>http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-2875</link>
		<dc:creator>Ramon Leon</dc:creator>
		<pubDate>Tue, 22 May 2007 00:02:10 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-2875</guid>
		<description>Oh, my bad, CSS is pretty simple.  To style all tags of a type, just use the tag name

textarea {width:200px;}

to style a specific tag by name, use its id

#notesField {width:200px;}

to style it by class, assign a class to the tag, and create a CSS class for it

.bigTextAreas {width:200px;}

I just take it for granted that anyone getting into programming in Seaside, already has a decent knowledge of basic CSS.  I can't imagine learning Seaside before learning CSS, it wouldn't make sense.</description>
		<content:encoded><![CDATA[<p>Oh, my bad, CSS is pretty simple.  To style all tags of a type, just use the tag name</p>
<p>textarea {width:200px;}</p>
<p>to style a specific tag by name, use its id</p>
<p>#notesField {width:200px;}</p>
<p>to style it by class, assign a class to the tag, and create a CSS class for it</p>
<p>.bigTextAreas {width:200px;}</p>
<p>I just take it for granted that anyone getting into programming in Seaside, already has a decent knowledge of basic CSS.  I can&#8217;t imagine learning Seaside before learning CSS, it wouldn&#8217;t make sense.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Stramba</title>
		<link>http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-2873</link>
		<dc:creator>Mike Stramba</dc:creator>
		<pubDate>Mon, 21 May 2007 20:12:24 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-2873</guid>
		<description>Ramon,

So much for my humour ;)

Do  know what the syntax is for what I need to put in the style selector to change the textarea size ?   

I've googled for 'css textarea' .. 'texarea css' and other variations / tutorials, but haven't found the right 'magic' words.  There is not much documentatoin on the Seaside site either.   I'm digging through the Pier application to see how the textareas have been setup but haven't found it yet either.

If not ... I'll keep looking  :)

Mike</description>
		<content:encoded><![CDATA[<p>Ramon,</p>
<p>So much for my humour ;)</p>
<p>Do  know what the syntax is for what I need to put in the style selector to change the textarea size ?   </p>
<p>I&#8217;ve googled for &#8216;css textarea&#8217; .. &#8216;texarea css&#8217; and other variations / tutorials, but haven&#8217;t found the right &#8216;magic&#8217; words.  There is not much documentatoin on the Seaside site either.   I&#8217;m digging through the Pier application to see how the textareas have been setup but haven&#8217;t found it yet either.</p>
<p>If not &#8230; I&#8217;ll keep looking  :)</p>
<p>Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramon Leon</title>
		<link>http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-2872</link>
		<dc:creator>Ramon Leon</dc:creator>
		<pubDate>Mon, 21 May 2007 16:55:09 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-2872</guid>
		<description>The text sizes aren't set anywhere, that kind of stuff belongs in CSS.  Style it however you like.  It's called Small Reddit as in Smalltalk Reddit.</description>
		<content:encoded><![CDATA[<p>The text sizes aren&#8217;t set anywhere, that kind of stuff belongs in CSS.  Style it however you like.  It&#8217;s called Small Reddit as in Smalltalk Reddit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Stramba</title>
		<link>http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-2871</link>
		<dc:creator>Mike Stramba</dc:creator>
		<pubDate>Mon, 21 May 2007 16:51:14 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-2871</guid>
		<description>Thanks for sharing this example !   I need all the examples I can find at this point :)

Is it called "Small Reddit" because the textareas are so small ? :)

Seriously, I'm new to Seaside and Squeak/Smalltalk programming and I'm looking through the docs, but haven't found where the textarea sizes are set.  Can you give me a hint ? 

Mike</description>
		<content:encoded><![CDATA[<p>Thanks for sharing this example !   I need all the examples I can find at this point :)</p>
<p>Is it called &#8220;Small Reddit&#8221; because the textareas are so small ? :)</p>
<p>Seriously, I&#8217;m new to Seaside and Squeak/Smalltalk programming and I&#8217;m looking through the docs, but haven&#8217;t found where the textarea sizes are set.  Can you give me a hint ? </p>
<p>Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramon Leon</title>
		<link>http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-2728</link>
		<dc:creator>Ramon Leon</dc:creator>
		<pubDate>Mon, 23 Apr 2007 22:03:46 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-2728</guid>
		<description>Try DateAndTime, in 3.9 TimeStamp subclasses it, which is where the #- implementation is.</description>
		<content:encoded><![CDATA[<p>Try DateAndTime, in 3.9 TimeStamp subclasses it, which is where the #- implementation is.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramon Leon</title>
		<link>http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-2724</link>
		<dc:creator>Ramon Leon</dc:creator>
		<pubDate>Mon, 23 Apr 2007 19:28:09 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-2724</guid>
		<description>Where TimeStamp responds to what?</description>
		<content:encoded><![CDATA[<p>Where TimeStamp responds to what?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephan Eggermont</title>
		<link>http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-2723</link>
		<dc:creator>Stephan Eggermont</dc:creator>
		<pubDate>Mon, 23 Apr 2007 19:20:17 +0000</pubDate>
		<guid isPermaLink="false">http://onsmalltalk.com/programming/smalltalk/small-reddit-a-seaside-sample-application/#comment-2723</guid>
		<description>It needs a new image, where TimeStamp responds to -</description>
		<content:encoded><![CDATA[<p>It needs a new image, where TimeStamp responds to -</p>
]]></content:encoded>
	</item>
</channel>
</rss>
