Of course, here is the complete method:
handleFiltered: aRequestContext
aRequestContext request uri path last = 'tip.csv'
ifTrue: [
aRequestContext
respond: [ :response |
response
contentType: WAMimeType textPlain;
nextPutAll: self tipCsv asString ] ].
super handleFiltered: aRequestContext
I have it as instance method of my custom application class, which
overrides default WAApplication. self tipCsv generates the CSV file,
which is returned in response.
Martin
On 25.9.2010, at 2:58, fritz schenk wrote:
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside