Re: [Pharo-users] Pillar question: PRCitationTransformer

2016-08-21 Thread Yann Dubois
Hi stef, You can not have a citation annotation on a writer because the annotation is transformed before to a PRCitation object. So you need to overwrite visitCitation. PRCitationTransformer is called in the phase mechanism. He is added in the transform pipeline. PRCitationTransformer will be ren

[Pharo-users] Update CI books written in Pillar

2016-07-28 Thread Yann Dubois
Hi ! In the last version of Pillar (4.0.x), Pillar don't manage the compilation cycle. So the ./compile.sh does not work anymore. To update our CI, we use a Makefile (I advise you to use this too). You have an example on : https://github.com/pillar-markup/Pillar-Archetype/blob/master/welcome/Make

Re: [Pharo-users] Pillar: PRTemplate?

2016-04-23 Thread Yann Dubois
Hi, PRTemplate was removed in the development version because our goal is simplify Pillar. To do this, we want Pillar generate only the content of a document, so the template system was removed. If you want use PRTemplate, you can use the last stable release of Pillar, and if you want use the deve

[Pharo-users] [Bug] Sometime RPackage is desync with the system

2016-04-15 Thread Yann Dubois
Hello, I loaded a repo', and later, I wanted to look my changes between my current repo' and the repo' that has been loaded. And I have this message : KeyNotFound: key #aDeletedMethod not found in MethodDirectory

Re: [Pharo-users] [Bug - Pharo 5.0] Remove a class but not remove for RPackage

2016-04-14 Thread Yann Dubois
For exemple I have 2 packages PackageA - ClassA PackageB - ClassB #iDependToClassA #otherMethod I delete ClassA from the PackageA, so Pharo tell me that the method #iDependToClassA use the content of the ClassA. I delete the #iDependToClassA method but on the Browser, the method is not de

[Pharo-users] [Bug - Pharo 5.0] Remove a class but not remove for RPackage

2016-04-13 Thread Yann Dubois
Hello, When I delete a class, a window pop to inform me that some methods use this class. So I remove the methods because they are not usefull without my class to removed. But when I close the window, the methods stay on the Browser, so I remove this methods on the Browser. Then, I remove an oth

Re: [Pharo-users] [Pillar] Font-size on DeckJS

2016-03-19 Thread Yann Dubois
2016 17:44, "Alexandre Bergel" a écrit : > Is this related to Pharo? > > Alexandre > > > > On Mar 18, 2016, at 5:30 PM, Yann Dubois > wrote: > > > > Hello world, > > > > I work today on a problem when we generate a presentation with De

[Pharo-users] [Pillar] Font-size on DeckJS

2016-03-19 Thread Yann Dubois
Hello world, I work today on a problem when we generate a presentation with DeckJS, the font size is very small on projection. I've find an issue for this, and you need to create a template with all deckJS dependancies, and an other css file to change some rules. To change the font-size of a bo

Re: [Pharo-users] [Pillar] Logo for Pillar

2016-03-19 Thread Yann Dubois
I'm existing about this logo, it's a very nice logo.

Re: [Pharo-users] [Pillar] Ascii doc

2016-03-08 Thread Yann Dubois
AsciiDoc is an exporter like Pillar, you can export you asciidoc file to pdf or something else. For the moment, this format allows generate files in format that Pillar can't know. I hope I answer your question

[Pharo-users] Interogation about recursivity or sequential

2016-01-04 Thread Yann Dubois
Hello World, Happy new year 2016 ! I actually work on an integration of a double linked list on Pharo and I have a little interogation. It's better to use recursivity or senquential algorithm ? Yann