Seaside - how to render a pre-bult html page

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

Seaside - how to render a pre-bult html page

Long Haired David
Hi there.
I have a complex web site that is built using Adobe Muse. I need to add a page to the site that is written using Instantiations VisualAge/Seaside 8.6.2. This is running on Windows Server 2008.

I need to load the page into memory, add some specific data to the page and then render it so that it looks and feels like the Muse web site. When the new element is selected (button press) I need to go back to Seaside, process the click and route to another Muse web page using standard http. 

I don't know how to render an prebuilt html page in Seaside. Is there a way please.

Long Haired David
A.K.A. David Pennington


Message sent using Winmail Mail Server

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
David
Totally Objects
Doing Smalltalk since 1989
Reply | Threaded
Open this post in threaded view
|

Re: Seaside - how to render a pre-bult html page

Mariano Martinez Peck
Hi David,

I am not sure if this is exactly what you want, but do you know that WAHtmlCanvas does understand #html:  ? 

You can do:

html html: '<p>hello!</p>'

Of course, you can replace that string by the contents of a file. 

Hope this  helps.

Cheers,

On Fri, Nov 25, 2016 at 10:51 AM, David Pennington <[hidden email]> wrote:
Hi there.
I have a complex web site that is built using Adobe Muse. I need to add a page to the site that is written using Instantiations VisualAge/Seaside 8.6.2. This is running on Windows Server 2008.

I need to load the page into memory, add some specific data to the page and then render it so that it looks and feels like the Muse web site. When the new element is selected (button press) I need to go back to Seaside, process the click and route to another Muse web page using standard http. 

I don't know how to render an prebuilt html page in Seaside. Is there a way please.

Long Haired David
A.K.A. David Pennington


Message sent using Winmail Mail Server

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside




--

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Seaside - how to render a pre-bult html page

Petr Fischer
In reply to this post by Long Haired David
Maybe it's not task for Seaside at all. What about simple HTTP server only, treat original page as String, change/replace things in this String and simple serve it out?

For Pharo, there is:
http://smalltalkhub.com/#!/~zeroflag/Teapot
and
https://ci.inria.fr/pharo-contribution/job/EnterprisePharoBook/lastSuccessfulBuild/artifact/book-result/Zinc-HTTP-Server/Zinc-HTTP-Server.html

Maybe, some HTTP server is available also in VisualAge.

pf


> Hi there.I have a complex web site that is built using Adobe Muse. I need to add a page to the site that is written using Instantiations VisualAge/Seaside 8.6.2. This is running on Windows Server 2008.
> I need to load the page into memory, add some specific data to the page and then render it so that it looks and feels like the Muse web site. When the new element is selected (button press) I need to go back to Seaside, process the click and route to another Muse web page using standard http.
> I don't know how to render an prebuilt html page in Seaside. Is there a way please.
> Long Haired DavidA.K.A. David [hidden email]
>
> Message sent using Winmail Mail Server

> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Seaside - how to render a pre-bult html page

Nowak, Helge
For Cincom Smalltalk that would be SiouX, plus maybe (depending on your requirements) AppeX.

This won't help you for VA Smalltalk though ;-)

Helge Nowak
Cincom Smalltalk Technical Account Manager EMEA

Cincom Systems GmbH & Co. oHG
Am Kronberger Hang 4
65824 Schwalbach/Ts.
GERMANY
office
mobile
fax

website
email
+49 89 89 66 44 94
+49 172 74 00 402
+49 89 89 66 44 95

http://www.cincomsmalltalk.com
[hidden email]
A standpoint is an intellectual horizon of radius zero. -- Albert Einstein

Geschäftsführer/Managing Directors: Thomas M. Nies, Gerald L. Shawhan
oHG mit Sitz/based in Schwalbach/Ts. (Amtsgericht Königstein/Ts. HRA 2653)
Pers. haftender Gesellschafter/Partner liable to unlimited extent:
Cincom Systems Verwaltungsgesellschaft mbH (Amtsgericht Königstein/Ts. HRB 5069)
 
--- CONFIDENTIALITY STATEMENT ---
This e-mail transmission contains information that is intended to be privileged and confidential. It is intended only for the addressee named above. If you receive this e-mail in error, please do not read, copy or disseminate it in any manner. If you are not the intended recipient, any disclosure, copying, distribution or use of the contents of this information is prohibited, please reply to the message immediately by informing the sender that the message was misdirected. After replying, please erase it from your computer system. Your assistance in correcting this error is appreciated.



-----Ursprüngliche Nachricht-----
Von: seaside [mailto:[hidden email]] Im Auftrag von Petr Fischer
Gesendet: Freitag, 25. November 2016 15:35
An: David Pennington <[hidden email]>; Seaside - general discussion <[hidden email]>
Betreff: Re: [Seaside] Seaside - how to render a pre-bult html page

Maybe it's not task for Seaside at all. What about simple HTTP server only, treat original page as String, change/replace things in this String and simple serve it out?

For Pharo, there is:
http://smalltalkhub.com/#!/~zeroflag/Teapot
and
https://ci.inria.fr/pharo-contribution/job/EnterprisePharoBook/lastSuccessfulBuild/artifact/book-result/Zinc-HTTP-Server/Zinc-HTTP-Server.html

Maybe, some HTTP server is available also in VisualAge.

pf


> Hi there.I have a complex web site that is built using Adobe Muse. I need to add a page to the site that is written using Instantiations VisualAge/Seaside 8.6.2. This is running on Windows Server 2008.
> I need to load the page into memory, add some specific data to the page and then render it so that it looks and feels like the Muse web site. When the new element is selected (button press) I need to go back to Seaside, process the click and route to another Muse web page using standard http.
> I don't know how to render an prebuilt html page in Seaside. Is there a way please.
> Long Haired DavidA.K.A. David [hidden email]
>
> Message sent using Winmail Mail Server

> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Seaside - how to render a pre-bult html page

SebastianHC
In reply to this post by Long Haired David

Hi David,

one tool that will help you to make a Seaside representation of the Adobe Muse site quick and easy is Seafox.

http://seafox.seasidehosting.st/

Seafox generates Seaside code of any webside... I am just not sure how up to date it is... the code might need some tweaking.

I hope that helps.

Sebastian



On 2016-11-25 5:51 AM, David Pennington wrote:
Hi there.
I have a complex web site that is built using Adobe Muse. I need to add a page to the site that is written using Instantiations VisualAge/Seaside 8.6.2. This is running on Windows Server 2008.

I need to load the page into memory, add some specific data to the page and then render it so that it looks and feels like the Muse web site. When the new element is selected (button press) I need to go back to Seaside, process the click and route to another Muse web page using standard http. 

I don't know how to render an prebuilt html page in Seaside. Is there a way please.

Long Haired David
A.K.A. David Pennington


Message sent using Winmail Mail Server


_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside


_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside