<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside">
    <title>gmane.comp.lang.smalltalk.squeak.seaside</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26766"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26765"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26764"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26763"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26762"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26761"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26760"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26759"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26758"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26757"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26756"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26755"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26754"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26753"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26752"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26751"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26750"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26749"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26748"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26747"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26766">
    <title>Re: [Metacello] collecting all packages of a configuration</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26766</link>
    <description>&lt;pre&gt;Mariano,

Metacello let's Monticello do the initialization, but decides which sets of packages to load at the same time ... #atomic projects load all of the packages at once, then initialize. While #linear projects load and initialize each package individually ... I believe that Seaside is #linear.

Things can get a bit complicated when #atomic and #linear projects are intermixed (via dependencies) 

If you throw a `Transcript show` into the postLoadOver: method (at least that seems like the right one) and run Metacello, you'll have a record of when each package was initialiazed during the load. 

You should be able to tell from loadDirective structure what's going to happen...oh wait there are preload and postload doits besides the standard initialization stuff ... but that too is in the loadDirective structure ... typically the ExplicitLoadDirective is used to get a Configuration loaded "right now" during fetch, so focus on the AtomicLoadDirective and LinearLoadDiretives...

If you want to duplicate what M&lt;/pre&gt;</description>
    <dc:creator>Dale Henrichs</dc:creator>
    <dc:date>2012-05-17T21:14:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26765">
    <title>Re: [Metacello] collecting all packages of a configuration</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26765</link>
    <description>&lt;pre&gt;
I should explain what I am doing. I am exporting packages using Fuel. What
I do is to query Metacello to know which packages I need and the order (for
the future load).
Then, during load, after having materialized all packages, I iterate over
the packages (in the order I stored during the export), and I initialize
the classes for each package.

In this example, I am NOT upgrading nothing. I am just trying to import
seaside in a clean image using Fuel.





indeed, it works fine.




Indeed, I also thought that I have a problem with the initialization. I
sent this mail because maybe this particular problem moves some bell ;)





You mean MCMethodDefinition &amp;gt;&amp;gt; postloadOver:  right?



yes, you mean the if:    self source ~= aDefinition source   right?
In my case, I am loading methods that DO NOT have source code. So..


mmmm #atomic  loader type?  where can I see more info about this?



where can I see this?

Thanks





&lt;/pre&gt;</description>
    <dc:creator>Mariano Martinez Peck</dc:creator>
    <dc:date>2012-05-17T18:13:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26764">
    <title>Re: [Metacello] collecting all packages of a configuration</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26764</link>
    <description>&lt;pre&gt;Mariano,

I guess you are trying to upgrade an existing Seaside application? 

Are you having trouble doing this upgrade using Metacello, or is this a problem trying to do the upgrade using the package order derived from the loadDirectives?

If the Metacello load works fine, then I would guess that you're not running your initializers in the right order at the right time. Your little loop over packageNames looks close to what Monticello does when it fires the initializers, but it's not quite the same ... for example Monticello only fires initializers for class initialization methods that are changed/new during the load. 

Also, if I remember correctly Metacello fires the initializers for Seaside packages immediately after the package is loaded and does not wait until the end to fire initializers ...

I'd focus on duplicating the initialization pattern of Metacello (instrumenting the Monticello loader where the initializations are fired would give you that info).

Dale

----- Original Message -----
| From: "M&lt;/pre&gt;</description>
    <dc:creator>Dale Henrichs</dc:creator>
    <dc:date>2012-05-17T17:37:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26763">
    <title>Re: Render into a separate document while sharing context</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26763</link>
    <description>&lt;pre&gt;When I send a 'reset your password' email I think I'm doing what you're 
asking about in your original question. e.g.

MyWAComponentSubclass&amp;gt;&amp;gt;#sendPasswordResetLinkToUser:html
newUrl := html context actionUrl
withParameter:
(html callbacks
store:
(WAValueCallback
on: [self home.
self show: (ResetPassword new user: member) ])).

urlToEmail := html context resourceUrl greaseString , newUrl greaseString.

self sendMailWithUrl: urlToEmail toMember: member.



So when clicked in their email their browser opens up the 'reset 
password' form in a page on my site.  It doesn't use WABuilder and does 
store a callback that does get executed in the current render context. 
It also expires when the current session expires.






On 05/17/2012 08:59 AM, Norbert Hartl wrote:
&lt;/pre&gt;</description>
    <dc:creator>Paul DeBruicker</dc:creator>
    <dc:date>2012-05-17T16:19:58</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26762">
    <title>Re: Render into a separate document while sharing context</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26762</link>
    <description>&lt;pre&gt;Or different asked:

Using

WARenderCanvas builder render: [:h| ...]

enables me to render something into a string. But if the rendered block produces callbacks they aren't registered anywhere and cannot be called aftwards, right?

Norbert 
Am 17.05.2012 um 11:32 schrieb Norbert Hartl:

&lt;/pre&gt;</description>
    <dc:creator>Norbert Hartl</dc:creator>
    <dc:date>2012-05-17T15:59:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26761">
    <title>Re: [Metacello] collecting all packages of a configuration</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26761</link>
    <description>&lt;pre&gt;Hi Dale. Now I was a little bit more sucessful. But still, I have a problem
during the initialization of classes. More precisily in:

WAWalkbackErrorHandler class &amp;gt;&amp;gt; initialize
    WAAdmin applicationExceptionHandlingDefaults at: #exceptionHandler put:
self

I get a WAAttributeNotFound with #exceptionHandler ...  what I do is I
follow the order of packages as Metacello answered me, and then I do
something like:

(packageNames collect: [:each | PackageInfo named: each])
            do: [:aPackage |
                "We should not send #initialize to traits"
                ((aPackage classes select: [:each | each isBehavior])
                     sort: [:a :b | a allSuperclasses size &amp;lt; b
allSuperclasses size ])
                         do: [:aClass |
                            Transcript show: 'Initializing class named: ',
aClass name; cr.
                            aClass initializeOnLoad]
            ].
        ]


I have debugged a little bit and it looks like

WAAdmin applicationExceptionHandlingDefaults&lt;/pre&gt;</description>
    <dc:creator>Mariano Martinez Peck</dc:creator>
    <dc:date>2012-05-17T13:13:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26760">
    <title>Re: Lowering the entry barrier for REST style access</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26760</link>
    <description>&lt;pre&gt;
There are various places where we access the application configuration
by sending #application. For example GRPlatform &amp;gt;&amp;gt;
#seasideHandlerPreferenceAt:ifAbsent:

Cheers
Philippe
&lt;/pre&gt;</description>
    <dc:creator>Philippe Marschall</dc:creator>
    <dc:date>2012-05-17T09:34:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26759">
    <title>Re: Render into a separate document while sharing context</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26759</link>
    <description>&lt;pre&gt;
Am 16.05.2012 um 20:50 schrieb Paul DeBruicker:


I don't think so. You are tunneling virtual callbacks over one real callback. But that one real callback you need to draw in this canvas. My problem is the place where the rendered string should be drawn. Basically I have

...
   "this is anchor1"
   html anchor
onClick: (html jQuery ajax ...)
        with: 'foo'.
   html script: (JSStream on: '

      var aMarker = new google.maps.Marker({
         position: new google.maps.LatLng(marker.lat, marker.lon),
         map: map
      }); 
      google.maps.event.addListener(aMarker, "click", clickedMarker);
      aMarker.info = new google.maps.InfoWindow({
         content: '&amp;lt;a href="..."&amp;gt;foo&amp;lt;/a&amp;gt;'
      }); '.
...

So I have anchor1 that is rendered on the canvas. Then I need to render a script on that canvas that creates a marker on a map. If you look at the "content: '&amp;lt;a..." there I need to render anchor1 (or similar) again. So it is perfect if the anchor registers its callback but then I need the string pres&lt;/pre&gt;</description>
    <dc:creator>Norbert Hartl</dc:creator>
    <dc:date>2012-05-17T09:32:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26758">
    <title>Re: Render into a separate document while sharing context</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26758</link>
    <description>&lt;pre&gt;

Could you do something like what I suggested in the Zinc Callback Limit 
thread a few days ago?

http://forum.world.st/Zinc-Callback-Limit-tp4630181p4630195.html
&lt;/pre&gt;</description>
    <dc:creator>Paul DeBruicker</dc:creator>
    <dc:date>2012-05-16T18:50:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26757">
    <title>Re: Re: Natural language translation</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26757</link>
    <description>&lt;pre&gt;Thanks, Stephane and Yanni, I'll check it out.

Larry

Sent from my iPhone

On May 16, 2012, at 1:08 PM, Francois Stephany &amp;lt;tulipe.moutarde&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Lawrence Kellogg</dc:creator>
    <dc:date>2012-05-16T17:39:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26756">
    <title>Re: Re: Natural language translation</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26756</link>
    <description>&lt;pre&gt;There is also the GetText package which can work with Seaside.

Sebastian wrote a blog post about a custom solution:
http://blog.flowingconcept.com/brandIt/multiligual-web-applications-design-ala-smalltalk


On 16/05/12 10:02, Yanni Chiu wrote:

&lt;/pre&gt;</description>
    <dc:creator>Francois Stephany</dc:creator>
    <dc:date>2012-05-16T17:08:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26755">
    <title>Re: Natural language translation</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26755</link>
    <description>&lt;pre&gt;
Pharo/Squeak has had a multi-language framework for years.

Look at implementers of #translated, which should lead you to the class 
NaturalLanguageTranslator.
&lt;/pre&gt;</description>
    <dc:creator>Yanni Chiu</dc:creator>
    <dc:date>2012-05-16T17:02:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26754">
    <title>Re: Natural language translation</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26754</link>
    <description>&lt;pre&gt;Thanks, Boris, that's exactly what I need. Unfortunately, I'm on Pharo.

Maybe I can write something similar on my own.

Larry

Sent from my iPhone

On May 16, 2012, at 12:52 PM, "Boris Popov, DeepCove Labs" &amp;lt;boris&amp;lt; at &amp;gt;deepcovelabs.com&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Lawrence Kellogg</dc:creator>
    <dc:date>2012-05-16T16:56:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26753">
    <title>RE: Natural language translation</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26753</link>
    <description>&lt;pre&gt;As a hack, you could try doing this in String&amp;gt;&amp;gt;renderOn: as well.

-Boris


-----Original Message-----
From: seaside-bounces&amp;lt; at &amp;gt;lists.squeakfoundation.org
[mailto:seaside-bounces&amp;lt; at &amp;gt;lists.squeakfoundation.org] On Behalf Of Boris
Popov, DeepCove Labs
Sent: Wednesday, May 16, 2012 12:52 PM
To: Seaside - general discussion
Subject: RE: [Seaside] Natural language translation

Lawrence,

In VisualWorks you can use message catalogs to do the translation of
UserMessage instances during rendering depending on the locale of the
session,

(html label)
 for: 'form-company';
 with: #Company &amp;lt;&amp;lt; #raven

en.lbl
 encoding: #UTF_8
 catalog: #raven
 cacheSize: 500
 Company='Company'

fr.lbl
 encoding: #UTF_8
 catalog: #raven
 cacheSize: 500
 Company='Entreprise'

de.lbl
 encoding: #UTF_8
 catalog: #raven
 cacheSize: 500
 Company='Firma'

HTH,

-Boris

-----Original Message-----
From: seaside-bounces&amp;lt; at &amp;gt;lists.squeakfoundation.org
[mailto:seaside-bounces&amp;lt; at &amp;gt;lists.squeakfoundation.org] On Behalf Of
Lawrence Kellogg
Sent: Wednesday, May 16, &lt;/pre&gt;</description>
    <dc:creator>Boris Popov, DeepCove Labs</dc:creator>
    <dc:date>2012-05-16T16:54:21</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26752">
    <title>RE: Natural language translation</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26752</link>
    <description>&lt;pre&gt;Lawrence,

In VisualWorks you can use message catalogs to do the translation of
UserMessage instances during rendering depending on the locale of the
session,

(html label)
 for: 'form-company';
 with: #Company &amp;lt;&amp;lt; #raven

en.lbl
 encoding: #UTF_8
 catalog: #raven
 cacheSize: 500
 Company='Company'

fr.lbl
 encoding: #UTF_8
 catalog: #raven
 cacheSize: 500
 Company='Entreprise'

de.lbl
 encoding: #UTF_8
 catalog: #raven
 cacheSize: 500
 Company='Firma'

HTH,

-Boris

-----Original Message-----
From: seaside-bounces&amp;lt; at &amp;gt;lists.squeakfoundation.org
[mailto:seaside-bounces&amp;lt; at &amp;gt;lists.squeakfoundation.org] On Behalf Of
Lawrence Kellogg
Sent: Wednesday, May 16, 2012 12:42 PM
To: Seaside - general discussion
Subject: [Seaside] Natural language translation

  So, I would like to translate my Seaside site into French and Spanish.
I probably should have kept all of the text in one place for easy
translation, but that didn't happen. :-)

  Is there some place I can hook into the Seaside rendering cycle so as
to lookup text strin&lt;/pre&gt;</description>
    <dc:creator>Boris Popov, DeepCove Labs</dc:creator>
    <dc:date>2012-05-16T16:52:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26751">
    <title>Natural language translation</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26751</link>
    <description>&lt;pre&gt;  So, I would like to translate my Seaside site into French and Spanish. I probably should have kept all of the text in one place for easy translation, but that didn't happen. :-)

  Is there some place I can hook into the Seaside rendering cycle so as to lookup text strings in a dictionary and substitute the translated string?

Regards,

Larry
&lt;/pre&gt;</description>
    <dc:creator>Lawrence Kellogg</dc:creator>
    <dc:date>2012-05-16T16:41:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26750">
    <title>Render into a separate document while sharing context</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26750</link>
    <description>&lt;pre&gt;I'm doing a page at the moment that contains a google map. On the html page there is a list with all entries and on the map there are the markers on the geo position. 

To place a marker I need to call some javascript function. That function takes latitude, longitude and a definition of a window that pops up if the marker is pressed. The popup window needs to contain an html anchor. Therefor I need to add the callbacks to the current renderer.

Is there something that assists in doing this. WABuilder would be fine but it creates a new render context. 

thanks,

Norbert&lt;/pre&gt;</description>
    <dc:creator>Norbert Hartl</dc:creator>
    <dc:date>2012-05-16T16:16:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26749">
    <title>Re: Sending data through POST or PUT, with nginx</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26749</link>
    <description>&lt;pre&gt;
On May 15, 2012, at 4:31 AM, Norbert Hartl wrote:

 

  Ah, body decoded, I'll try that. Right now, I am using 

aRequestContext request fields at: 'key' to get the JSON string. Works ok. 

  I realize that the fields is a WAMergedFields object so I should probably just use postFields. 

  Any idea why I can't debug a subclass of a WARequestHandler? That problem is slowing me down. 

  I used to work in Germany. Every Friday, all of us would go out to the Biergarten. If the boss had just one beer, 
we would too, and would then go back and work for a few more hours. If the boss had two beers, we were pretty much 
done for the day. ;-) 

  Larry



&lt;/pre&gt;</description>
    <dc:creator>Lawrence Kellogg</dc:creator>
    <dc:date>2012-05-15T10:28:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26748">
    <title>Re: Sending data through POST or PUT, with nginx</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26748</link>
    <description>&lt;pre&gt;
Am 15.05.2012 um 01:22 schrieb Lawrence Kellogg:

Uhh, I need to roll back a bit. I shouldn't write mails when I'm coming from the Biergarten being extremely tired.:) Basically it is true what I said about the usability of most of the adaptors. But there is certainly more possible then I said. I'm using fastcgi on gemstone and I'm also using the body and multipart data for uploads.

The body I request via

self requestContext request bodyDecoded

and multipart files via

self requestContext request postFields at: aString

in the latter you need to check if you get a string or a WAFile. And you need to decode manually

Norbert
&lt;/pre&gt;</description>
    <dc:creator>Norbert Hartl</dc:creator>
    <dc:date>2012-05-15T08:31:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26747">
    <title>Re: Sending data through POST or PUT, with nginx</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26747</link>
    <description>&lt;pre&gt;
On May 14, 2012, at 5:57 PM, Norbert Hartl wrote:



Norbert, 
  Thanks for your perspective. Well, we got it working this afternoon so that we could pass in a JSON string and parse it. 
I was just a little confused with how to access the fields in the WARequest, but I finally figured it out. It's too bad that 
putting a halt in the handleFIltered: method does not pop a continuation. Is there some way to make that happen? 
Subclasses of WAComponent spin off a continuation when they hit a halt, 

  So, I think I have what I need to go forward, unless I'm missing something.

  Regards, 

  Larry


&lt;/pre&gt;</description>
    <dc:creator>Lawrence Kellogg</dc:creator>
    <dc:date>2012-05-14T23:22:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26746">
    <title>Re: Lowering the entry barrier for REST style access</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.smalltalk.squeak.seaside/26746</link>
    <description>&lt;pre&gt;On Mon, May 14, 2012 at 9:00 PM, Philippe Marschall &amp;lt;
philippe.marschall&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:


How so? (apologies, the details of the change are fuzzy at the moment, but
I thought the impacts were pretty minor)
_______________________________________________
seaside mailing list
seaside&amp;lt; at &amp;gt;lists.squeakfoundation.org
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
&lt;/pre&gt;</description>
    <dc:creator>Julian Fitzell</dc:creator>
    <dc:date>2012-05-14T22:20:27</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.lang.smalltalk.squeak.seaside">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.lang.smalltalk.squeak.seaside</link>
  </textinput>
</rdf:RDF>

