Re: [Pharo-users] HTML5 Generation

2014-06-04 Thread Robert Shiplett
Because I use MIT Curl as markup instead of HTML, this has also been an interest of mine. ( Curl declarative and PL as in www.curl.com and not cURL ) On 4 June 2014 08:59, Sean P. DeNigris wrote: > stepharo wrote > > Now it would be really nice to have the seaside canvas as a separate > > com

Re: [Pharo-users] HTML5 Generation

2014-06-04 Thread Sean P. DeNigris
stepharo wrote > Now it would be really nice to have the seaside canvas as a separate > component After working a bunch with Amber, I really wanted to extract HTML tags in general, since it's a well-known domain independent of any particular framework, and then each framework could add its own re

Re: [Pharo-users] HTML5 Generation

2014-06-02 Thread stepharo
Now it would be really nice to have the seaside canvas as a separate component. So may be trying for a couple of day should work. I do not see why you would not succeed. Stef On 2/6/14 14:43, Esteban A. Maringolo wrote: You can get an HTML canvas to render on it. WAHtmlCanvas builder render:

Re: [Pharo-users] HTML5 Generation

2014-06-02 Thread Esteban A. Maringolo
You can get an HTML canvas to render on it. WAHtmlCanvas builder render: [:html | html heading level: 1; with: 'Hello world!' ] This will output a string the html document. Regards! Esteban A. Maringolo 2014-06-02 8:42 GMT-03:00 Larry Staton Jr. : > I’m writing an implementation

Re: [Pharo-users] HTML5 Generation

2014-06-02 Thread Damien Cassou
On Mon, Jun 2, 2014 at 1:42 PM, Larry Staton Jr. wrote: > I'm not sure if I can just pull in the HTML generation and leave out the rest. I tried for a minute or two and this is not that simple. What I did is reimplementing something much less powerful (but that was ok for my use case): canvas t