[Pharo-users] [ANN] 15/2: Pharo TechTalk: Contributing to Pharo 7

2018-02-13 Thread Marcus Denker
Pharo TechTalk: Contributing to Pharo 7 When? 15 Feb 2018 5:00 PM - 7:00 PM (UTC+01:00) What? Contributing to Pharo7 We will show: - How to submit issue tracker entries to the Pharo Issue Tracker - How to do a Pull Request if you want to do a fix or enhancment - How to

Re: [Pharo-users] [Iliad] raw HTML in Iliad

2018-02-13 Thread Cyril Ferlicot
On Tue, Feb 13, 2018 at 9:20 AM, Siemen Baader wrote: > Formulating the question helped me to find the solution after I posted: > > index > ^ [ :e | e add: (ILRawHtmlElement new contents: 'hello > world') ] > > :) > Hi! Just for the record, There is a Pharo mustache

Re: [Pharo-users] [Iliad] raw HTML in Iliad

2018-02-13 Thread Sean P. DeNigris
Sven Van Caekenberghe-2 wrote > There is also ZnHtmlOutputStream (a simple helper class) for generating > syntactically correct HTML. Yes, it's nice. I've used it in images when I needed to work with HTML without Seaside loaded. - Cheers, Sean -- Sent from:

Re: [Pharo-users] canonical way to convert Symbol into Class (retrieve class by its name)

2018-02-13 Thread Herbert Vojčík
Denis Kudriashov wrote: 2018-02-13 10:25 GMT+01:00 Marcus Denker >: Sometimes I think we should treat globals more in a “late bound” fashion. e.g. right now we say that “Undeclared” vars are to be avoided at any cost.

Re: [Pharo-users] [Iliad] raw HTML in Iliad

2018-02-13 Thread Sven Van Caekenberghe
> On 13 Feb 2018, at 13:12, Sean P. DeNigris wrote: > > Sven Van Caekenberghe-2 wrote >> There is also ZnHtmlOutputStream (a simple helper class) for generating >> syntactically correct HTML. > > Yes, it's nice. I've used it in images when I needed to work with HTML >

Re: [Pharo-users] canonical way to convert Symbol into Class (retrieve class by its name)

2018-02-13 Thread Sean P. DeNigris
Marcus Denker-4 wrote > Sometimes I think we should treat globals more in a “late bound” fashion. Late bound = power. I remember being very disappointed when I realized that classes are early bound by methods (resolved in literals). This makes things like class-side stubbing very difficult

Re: [Pharo-users] canonical way to convert Symbol into Class (retrieve class by its name)

2018-02-13 Thread Marcus Denker
Sometimes I think we should treat globals more in a “late bound” fashion. e.g. right now we say that “Undeclared” vars are to be avoided at any cost. But we could just treat them like we treat messages that are send that do not exist. Forcing “#classNamed: “ for all unknown globals is a bit

Re: [Pharo-users] canonical way to convert Symbol into Class (retrieve class by its name)

2018-02-13 Thread Denis Kudriashov
2018-02-13 10:25 GMT+01:00 Marcus Denker : > Sometimes I think we should treat globals more in a “late bound” fashion. > > e.g. right now we say that “Undeclared” vars are to be avoided at any cost. > > But we could just treat them like we treat messages that are send that

Re: [Pharo-users] canonical way to convert Symbol into Class (retrieve class by its name)

2018-02-13 Thread Ben Coman
On 13 February 2018 at 17:25, Marcus Denker wrote: > Sometimes I think we should treat globals more in a “late bound” fashion. > > This may remove a big reason for needing asClass, which was introduced so you could DoIt on a script to load a package and then operate on a

Re: [Pharo-users] [Iliad] raw HTML in Iliad

2018-02-13 Thread Siemen Baader
Thanks! On Tue, Feb 13, 2018 at 9:51 AM, Cyril Ferlicot wrote: > On Tue, Feb 13, 2018 at 9:20 AM, Siemen Baader > wrote: > > Formulating the question helped me to find the solution after I posted: > > > > index > > ^ [ :e | e add:

[Pharo-users] [Iliad] raw HTML in Iliad

2018-02-13 Thread Siemen Baader
Hi all, is there a way to render raw HTML from Iliad widgets, or perhaps mustache templates? I'm interested in not using the builders always because I use an external web editor that generates plain HTML and that has some advantages in my workflow. Is it possible do it with Seaside & Reef

Re: [Pharo-users] Roassal to ODG

2018-02-13 Thread Alexandre Bergel
> So I want to re post my question: > "What is the best option to generate an editable flow chart from Pharo > (Roassal)?” There are none as far as I know. However, this is something that can be done (rather easily I would say). Alexandre

Re: [Pharo-users] cancel changes in Nautilus broken on 6.1?

2018-02-13 Thread Siemen Baader
Thanks for the tip! -- Siemen On Mon, Feb 12, 2018 at 11:34 PM, Ben Coman wrote: > > > On 13 February 2018 at 01:57, Siemen Baader > wrote: > >> Hi Stef, >> >> On Sat, Feb 10, 2018 at 6:22 PM, Stephane Ducasse < >> stepharo.s...@gmail.com> wrote:

Re: [Pharo-users] [Iliad] raw HTML in Iliad

2018-02-13 Thread Steven Costiou
Hi, i think just doing e html: '' also works. Elements should not be instantiated like you do, there is an interface for each element that can be called on "e". e div, e html:, e h1:, etc. The interface instantiates the right class behind. You can find this somewhere in the core

Re: [Pharo-users] [Iliad] raw HTML in Iliad

2018-02-13 Thread Sven Van Caekenberghe
> On 13 Feb 2018, at 09:51, Cyril Ferlicot wrote: > > On Tue, Feb 13, 2018 at 9:20 AM, Siemen Baader wrote: >> Formulating the question helped me to find the solution after I posted: >> >> index >>^ [ :e | e add: (ILRawHtmlElement new

Re: [Pharo-users] [Iliad] raw HTML in Iliad

2018-02-13 Thread Siemen Baader
Formulating the question helped me to find the solution after I posted: index ^ [ :e | e add: (ILRawHtmlElement new contents: 'hello world') ] :) cheers, Siemen On Tue, Feb 13, 2018 at 9:14 AM, Siemen Baader wrote: > Hi all, > > is there a way to render raw HTML

Re: [Pharo-users] canonical way to convert Symbol into Class (retrieve class by its name)

2018-02-13 Thread Marcus Denker
> On 13 Feb 2018, at 11:32, Ben Coman wrote: > > > > On 13 February 2018 at 17:25, Marcus Denker > wrote: > Sometimes I think we should treat globals more in a “late bound” fashion. > > > This may remove a big

Re: [Pharo-users] Roassal to ODG

2018-02-13 Thread Arturo Zambrano
On Tue, Feb 13, 2018 at 7:27 AM, Alexandre Bergel wrote: > > So I want to re post my question: > > "What is the best option to generate an editable flow chart from Pharo > (Roassal)?” > > There are none as far as I know. However, this is something that can be > done

Re: [Pharo-users] Pillar questions

2018-02-13 Thread Guillermo Polito
Hi, On Tue, Feb 13, 2018 at 4:21 PM, Arturo Zambrano wrote: > Hi All, > Q1 > Is there a way of adding page headers/footers in pillar? > header = image + short legend. > footer = line + section name + page number. > In html generation or pdf generation?

[Pharo-users] Pillar questions

2018-02-13 Thread Arturo Zambrano
Hi All, Q1 Is there a way of adding page headers/footers in pillar? header = image + short legend. footer = line + section name + page number. Q2 My plan is to use Pillar programmatically, are you aware of some projects that use Pillar in that way? Most of the documentation I found

Re: [Pharo-users] [ANN] 15/2: Pharo TechTalk: Contributing to Pharo 7

2018-02-13 Thread Marcus Denker
> On 13 Feb 2018, at 13:03, Marcus Denker wrote: > > Pharo TechTalk: Contributing to Pharo 7 > > When? 15 Feb 2018 5:00 PM - 7:00 PM (UTC+01:00) > What? Contributing to Pharo7 > > We will show: > - How to submit issue tracker entries to the Pharo Issue Tracker >

Re: [Pharo-users] Pillar questions

2018-02-13 Thread Arturo Zambrano
Hi Stef On Tue, Feb 13, 2018 at 2:18 PM, Stephane Ducasse wrote: > Hi arturo > > Pillar is based on templates so you edit the template and add more > variables. > got it > In pillar 5 these variables are metadata so you should add a new one > in the metadata

Re: [Pharo-users] Pillar questions

2018-02-13 Thread Arturo Zambrano
On Tue, Feb 13, 2018 at 12:25 PM, Guillermo Polito < guillermopol...@gmail.com> wrote: > Hi, > > > > On Tue, Feb 13, 2018 at 4:21 PM, Arturo Zambrano < > arturo.zambr...@gmail.com> wrote: > >> Hi All, >> Q1 >> Is there a way of adding page headers/footers in pillar? >> header = image + short

Re: [Pharo-users] Pillar questions

2018-02-13 Thread Stephane Ducasse
Hi arturo Pillar is based on templates so you edit the template and add more variables. In pillar 5 these variables are metadata so you should add a new one in the metadata declaration. Let me know if you need some screen sharing or some help. stef On Tue, Feb 13, 2018 at 4:21 PM, Arturo

Re: [Pharo-users] Pillar questions

2018-02-13 Thread Stephane Ducasse
You have a booklet https://github.com/SquareBracketAssociates/Booklet-PublishingAPillarBooklet it is about Pillar 70 (mainly about book publishing) all the rest is compatible with Pillar 50. Stef On Tue, Feb 13, 2018 at 6:34 PM, Arturo Zambrano wrote: > Hi Stef > >

[Pharo-users] [ANN] Pharo Consortium New Platinum Member: ENSTA Bretagne

2018-02-13 Thread Marcus Denker
The Pharo Consortium is very happy to announce that ENSTA Bretagne has joined the Consortium as a Platinum Member. About - ENSTA Bretagne: http://www.ensta-bretagne.fr - Pharo Consortium: http://consortium.pharo.org The goal of the Pharo Consortium is to allow companies and institutions to