[Pharo-users] Re: Standalone html builder (a la seaside without seaside?)

2020-10-13 Thread Sean P. DeNigris
Jan Blizničenko wrote > ...HtmlDiv... Cool :) I've often felt a suspicion that the lack of logical HTML domain objects leaves a hole in the possibilities for declarative style / meta info - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

[Pharo-users] Re: Standalone html builder (a la seaside without seaside?)

2020-10-11 Thread Stéphane Ducasse
Hi jan can you do a PR to add eleven to the awesome list? S > On 29 Sep 2020, at 10:37, Jan Blizničenko wrote: > > Hello, > > I am using https://github.com/JanBliznicenko/eleven for one of my projects. > It is also a full framework, yet much simplier than Seaside and stateless > and I believe

[Pharo-users] Re: Standalone html builder (a la seaside without seaside?)

2020-10-11 Thread Stéphane Ducasse
if someone migrate it to github please let me know. S > On 28 Sep 2020, at 20:35, Franz Josef Konrad wrote: > > Am 28.09.2020 um 19:28 schrieb Tim Mackinnon: >> Hi - has anyone ever managed to extract the html builder out of seaside - or >> written something equivalent? >> I often find I want

[Pharo-users] Re: Standalone html builder (a la seaside without seaside?)

2020-10-06 Thread Torsten Bergmann
Yes, see https://github.com/pharo-contributions/XML-XMLWriter   Gesendet: Mittwoch, 30. September 2020 um 16:42 Uhr Von: "monty" An: pharo-users@lists.pharo.org Betreff: [Pharo-users] Re: Standalone html builder (a la seaside without seaside?) Yes, XMLWriter can do this. Use ca

[Pharo-users] Re: Standalone html builder (a la seaside without seaside?)

2020-09-30 Thread monty
lcome" Subject: [Pharo-users] Re: Standalone html builder (a la seaside without seaside?) Hi Tim. My two cents: I am using XML Writer (from the catalog) and i am really happy so far.   El lun., 28 sept. 2020 a las 19:28, Tim Mackinnon () escribió: Hi - has anyone ever managed to extract

[Pharo-users] Re: Standalone html builder (a la seaside without seaside?)

2020-09-29 Thread Pierce Ng
On Mon, Sep 28, 2020 at 08:35:43PM +0200, Franz Josef Konrad wrote: > Some years ago I was looking for something for the same purpose and looked > at this library Hi, I stopped working on that and just used what comes with Seaside. Seas

[Pharo-users] Re: Standalone html builder (a la seaside without seaside?)

2020-09-29 Thread Santiago Bragagnolo
Hi Tim. My two cents: I am using XML Writer (from the catalog) and i am really happy so far. El lun., 28 sept. 2020 a las 19:28, Tim Mackinnon () escribió: > Hi - has anyone ever managed to extract the html builder out of seaside - > or written something equivalent? > > I often find I want to bui

[Pharo-users] Re: Standalone html builder (a la seaside without seaside?)

2020-09-29 Thread Tim Mackinnon
There have been some excellent suggestions in all of this - and I also came across HttpView2 as well. I am a bit spoiled for choice it seems - so will start trying out a few and will report back. We may also use this topic as a follow-on conversation from the UKST talk from Cincom about buildi

[Pharo-users] Re: Standalone html builder (a la seaside without seaside?)

2020-09-29 Thread Esteban Maringolo
Hi Jan, Nice work, the "Eleven" framework goes in the direction of what I was experimenting with for Seaside, but instead of trying to introduce that in Seaside without breaking everything else (as I failed to some extent) you went directly to replace and redo most of the stuff there (some with si

[Pharo-users] Re: Standalone html builder (a la seaside without seaside?)

2020-09-29 Thread Jan Blizničenko
Hello, I am using https://github.com/JanBliznicenko/eleven for one of my projects. It is also a full framework, yet much simplier than Seaside and stateless and I believe only the HTML building functionality can be used indpendently. Example: htmlObject := HtmlBody with:

[Pharo-users] Re: Standalone html builder (a la seaside without seaside?)

2020-09-28 Thread Smalltalk
Hi Tim, To build HTML I use the HtmlElement in https://github.com/jgfoster/WebGS . James > On Sep 28, 2020, at 10:28 AM, Tim Mackinnon wrote: > > Hi - has anyone ever managed to extract the html builder out of seaside - or > written something equivalent? >

[Pharo-users] Re: Standalone html builder (a la seaside without seaside?)

2020-09-28 Thread Tim Mackinnon
Lots of good tips in this thread to explore - thanks everyone, I’ll report back on what I find works best… To Offray - with a template approach, I have often been tempted with that too but I like the idea of autocompletion and easier refactoring capabilities in Pharo… but you never know. Tim

[Pharo-users] Re: Standalone html builder (a la seaside without seaside?)

2020-09-28 Thread Offray Vladimir Luna Cárdenas
Hi, I know this is not what you're asking for, but maybe some lateral thinking could help with your need. Jump to the end for the TL;DR suggestion or bear with me some paragraphs for a practical example. In our project about "IndieWeb with Brea", we use Pandoc and some external tools to produce t

[Pharo-users] Re: Standalone html builder (a la seaside without seaside?)

2020-09-28 Thread Esteban Maringolo
I've been playing with something like that, but still using Seaside. I was calling it "WAStatelessApplication", which is nothing but a way to route requests to components, and have these components not using callbacks nor continuations. I'm really comfortable with the Seaside canvas way of doing

[Pharo-users] Re: Standalone html builder (a la seaside without seaside?)

2020-09-28 Thread Franz Josef Konrad
Am 28.09.2020 um 19:28 schrieb Tim Mackinnon: Hi - has anyone ever managed to extract the html builder out of seaside - or written something equivalent? I often find I want to build some HTML, but don’t want the full seaside - and was wondering if anyone has managed to extract it, or have some

[Pharo-users] Re: Standalone html builder (a la seaside without seaside?)

2020-09-28 Thread Eric Gade
> On 28 Sep 2020, at 19:28, Tim Mackinnon wrote: > > > I often find I want to build some HTML, but don’t want the full seaside > - and was wondering if anyone has managed to extract it, or have something > similar? > I had a similar thought a few months back when I was looking for libraries to

[Pharo-users] Re: Standalone html builder (a la seaside without seaside?)

2020-09-28 Thread Sven Van Caekenberghe
Hi Tim, > On 28 Sep 2020, at 19:28, Tim Mackinnon wrote: > > Hi - has anyone ever managed to extract the html builder out of seaside - or > written something equivalent? > > I often find I want to build some HTML, but don’t want the full seaside - and > was wondering if anyone has managed to