|
|
Subject: Re: Send page as Email attachement ? - msg#00118
List: lang.smalltalk.squeak.seaside
Is there a way to do this using the WAPrettyPrintedDocument? I've
thrashed around a bit on this and go nowhere.
Thanks,
Wilkes
On 12/14/05, Alain Fischer <alain.fischer@xxxxxxxxxx> wrote:
> See this entry in the list:
> http://lists.squeakfoundation.org/pipermail/seaside/2005-June/
> 005289.html
>
> Alain
>
>
> On 14 déc. 05, at 16:35, Dmitry Dorofeev wrote:
>
> > Hi all.
> >
> > Is it possible to render HTML page with Seaside, but send it as
> > Email attachement and not
> > to the browser ? I feel it should be easy and I know what to do
> > once I have rendered page
> > as String object :-)
> >
> > Thanks
> >
> > -Dmitry.
> > _______________________________________________
> > Seaside mailing list
> > Seaside@xxxxxxxxxxxxxxxxxxxxxxxxxx
> > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
> _______________________________________________
> Seaside mailing list
> Seaside@xxxxxxxxxxxxxxxxxxxxxxxxxx
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
Was this page helpful?
Thread at a glance:
Previous Message by Date:
click to view message preview
Re: The Weekly Squeak No.15: November 27th - December 3rd
Thanks Giovanni and the News Team. This is valuable work, at least to me. :)
On 12/20/05, Giovanni Corriga <giovanni@xxxxxxxxxxx> wrote:
> Dear squeakers,
>
> Hello, and welcome back to the The Weekly Squeak, a weekly report on
> what's going on in the world of Squeak.
>
> Real life has exacted its toll on the News Team members, keeping them
> from working on newszine. We're trying to recover, though: the next
> issue will actually be acceptably late (10 days! ;-P)
>
> In this issue you'll find:
> 1. Persistence for lazy people
> 2. A forensic tool for dead images
> 3. Squeak Map changes and upgrades
> 4. Installing the latest HV
> 5. Some notes on Squeak's UI
> 6. Don't forget your updates
> 7. Singletons in Squeak
> 8. Stable Smallwiki1 source on Squeaksource
> 9. Upcoming Squeak Chats
>
> You'll find the complete report at
> http://minnow.cc.gatech.edu/squeak/5740 .
>
> The past issues archive can be found at
> http://minnow.cc.gatech.edu/squeak/5751 .
>
> The Weekly Squeak has an RSS feed:
> http://people.squeakfoundation.org/person/gcorriga/rss.xml .
>
>
> _______________________________________________
> Seaside mailing list
> Seaside@xxxxxxxxxxxxxxxxxxxxxxxxxx
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
--
Jason Rogers
"I am crucified with Christ: nevertheless I live; yet not I,
but Christ liveth in me: and the life which I now live in
the flesh I live by the faith of the Son of God, who loved
me, and gave himself for me."
Galatians 2:20
Next Message by Date:
click to view message preview
Re: Send page as Email attachement ?
Never mind. I realized what I wanted was the raw html that was nicely
formatted for a graphic designer to play with and not a html page that
showed all tags for a component. I've got a scratch version working
and will post it on the list once it is cleaned up, if any one wants
it.
Thanks,
Wilkes
On 12/21/05, Wilkes Joiner <wilkesjoiner@xxxxxxxxx> wrote:
> Is there a way to do this using the WAPrettyPrintedDocument? I've
> thrashed around a bit on this and go nowhere.
>
> Thanks,
> Wilkes
>
> On 12/14/05, Alain Fischer <alain.fischer@xxxxxxxxxx> wrote:
> > See this entry in the list:
> > http://lists.squeakfoundation.org/pipermail/seaside/2005-June/
> > 005289.html
> >
> > Alain
> >
> >
> > On 14 déc. 05, at 16:35, Dmitry Dorofeev wrote:
> >
> > > Hi all.
> > >
> > > Is it possible to render HTML page with Seaside, but send it as
> > > Email attachement and not
> > > to the browser ? I feel it should be easy and I know what to do
> > > once I have rendered page
> > > as String object :-)
> > >
> > > Thanks
> > >
> > > -Dmitry.
> > > _______________________________________________
> > > Seaside mailing list
> > > Seaside@xxxxxxxxxxxxxxxxxxxxxxxxxx
> > > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
> >
> > _______________________________________________
> > Seaside mailing list
> > Seaside@xxxxxxxxxxxxxxxxxxxxxxxxxx
> > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
> >
>
Previous Message by Thread:
click to view message preview
Re: Send page as Email attachement ?
Alain Fischer wrote:
See this entry in the list:
http://lists.squeakfoundation.org/pipermail/seaside/2005-June/005289.html
Alain
Tried that one and it does not work for me.
Basically I need to send order confirmation to the user during last checkout
stage.
The problem is that the code fails to create new WAComponent, generates signal
and
that is transported to the user screen ! But for my task the following code
seems ok:
renderOffline
|document|
document := WAHtmlStreamDocument new.
self renderCCInfoOn: (WAHtmlBuilder on: document).
^ document stream contents.
Note that i don't need callbacks, calls and other nice things, just
HTML rendering. So it is still a question how to render any WAComponent
in background (and save it to a file) while we are in Seaside session ?
But that sounds more 'academic' than 'practical' for me now :-)
Thanks.
-Dmitry.
On 14 déc. 05, at 16:35, Dmitry Dorofeev wrote:
Hi all.
Is it possible to render HTML page with Seaside, but send it as Email
attachement and not
to the browser ? I feel it should be easy and I know what to do once
I have rendered page
as String object :-)
Thanks
-Dmitry.
_______________________________________________
Seaside mailing list
Seaside@xxxxxxxxxxxxxxxxxxxxxxxxxx
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
_______________________________________________
Seaside mailing list
Seaside@xxxxxxxxxxxxxxxxxxxxxxxxxx
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seasid
e
Next Message by Thread:
click to view message preview
Re: Send page as Email attachement ?
Never mind. I realized what I wanted was the raw html that was nicely
formatted for a graphic designer to play with and not a html page that
showed all tags for a component. I've got a scratch version working
and will post it on the list once it is cleaned up, if any one wants
it.
Thanks,
Wilkes
On 12/21/05, Wilkes Joiner <wilkesjoiner@xxxxxxxxx> wrote:
> Is there a way to do this using the WAPrettyPrintedDocument? I've
> thrashed around a bit on this and go nowhere.
>
> Thanks,
> Wilkes
>
> On 12/14/05, Alain Fischer <alain.fischer@xxxxxxxxxx> wrote:
> > See this entry in the list:
> > http://lists.squeakfoundation.org/pipermail/seaside/2005-June/
> > 005289.html
> >
> > Alain
> >
> >
> > On 14 déc. 05, at 16:35, Dmitry Dorofeev wrote:
> >
> > > Hi all.
> > >
> > > Is it possible to render HTML page with Seaside, but send it as
> > > Email attachement and not
> > > to the browser ? I feel it should be easy and I know what to do
> > > once I have rendered page
> > > as String object :-)
> > >
> > > Thanks
> > >
> > > -Dmitry.
> > > _______________________________________________
> > > Seaside mailing list
> > > Seaside@xxxxxxxxxxxxxxxxxxxxxxxxxx
> > > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
> >
> > _______________________________________________
> > Seaside mailing list
> > Seaside@xxxxxxxxxxxxxxxxxxxxxxxxxx
> > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
> >
>
|
|