[Pharo-users] Little challenge: Best way to read stream and count line returns

2017-07-13 Thread Cyril Ferlicot
stream. I also know how many char there is between the last line return and the endPos. I wanted to know if you had a better way to do that? The way need to be as performant than this snippet. I know some people here can produce a snippet more readable and easier to maintain :) -- Cyril Ferl

[Pharo-users] Encoding and conversion problem

2017-07-18 Thread Cyril Ferlicot
instance of ZnSimplifiedByteEncoder return 'iso88591' as identifier and Latin1TextConverter does not have this encoding name in its possibilities. Only 'iso-8859-1'. Should we add 'iso88591' to the Latin1TextConverter? If yes, could we backport this to Pharo 6 ple

Re: [Pharo-users] Encoding and conversion problem

2017-07-18 Thread Cyril Ferlicot
ng of your choice. > > fileReference binaryReadStreamDo: [ :in | (ZnCharacterReadStream on: in > encoding: #latin1) ... ] > I just tried to use this but it broke my code. For example, ZnCharacterReadStream does not understand #position: while the ReadStream hierarchy understand it.

Re: [Pharo-users] Encoding and conversion problem

2017-07-18 Thread Cyril Ferlicot
If the file has thousands of line we lose to much time to read everything. -- Cyril Ferlicot https://ferlicot.fr http://www.synectique.eu 2 rue Jacques Prévert 01, 59650 Villeneuve d'ascq France

Re: [Pharo-users] Problem to access the "book compilation farm"

2017-07-19 Thread Cyril Ferlicot
saw serval "strange" messages on the main page of the > Pharo forum, http://forum.world.st/Pharo-f1294836.html. > > Should these messages be removed? > > > Thanks, > > Matteo. > > > -- Cyril Ferlicot https://ferlicot.fr http://www.synectique.eu 2 rue Jacques Prévert 01, 59650 Villeneuve d'ascq France

Re: [Pharo-users] problem with FLMaterializer

2017-08-05 Thread Cyril Ferlicot
from Pharo 4. Other versions of Fuel will not be able to read them. > Johannes > > -- Cyril Ferlicot https://ferlicot.fr http://www.synectique.eu 2 rue Jacques Prévert 01, 59650 Villeneuve d'ascq France

Re: [Pharo-users] [Pharo-dev] including Pillar in Pharo image by default

2017-08-15 Thread Cyril Ferlicot
In this issue I wanted to bring only a subset of this parser for Pharo and add what might be missing. But since people want to create a subset of PetitParser this issue becomes obsolete. > -- Cyril Ferlicot https://ferlicot.fr http://www.synectique.eu 2 rue Jacques Prévert 01, 59650 Villeneuve d'ascq France

Re: [Pharo-users] [Pillar] Installed the Pillar document preparation system into 6.1, how do I start using it?

2017-08-18 Thread Cyril Ferlicot
e this can help you to begin. There is no tool actually to use Pillar, you write your files and then there is command lines to generate the output wanted. -- Cyril Ferlicot https://ferlicot.fr http://www.synectique.eu 2 rue Jacques Prévert 01, 59650 Villeneuve d'ascq France

Re: [Pharo-users] [Pillar] Installed the Pillar document preparation system into 6.1, how do I start using it?

2017-08-18 Thread Cyril Ferlicot
an to construct a simple GUI with text boxes for Pillar > sources and have some buttons executing these commands. > > --Hannes > > I remember writing a part "Pillar from Pharo" in this doc. I'm not sure it is still up to date but you can try to check part 7 of the doc I sent. -

Re: [Pharo-users] [Pillar] Installed the Pillar document preparation system into 6.1, how do I start using it?

2017-08-18 Thread Cyril Ferlicot
gt; Happy to see it still works :) I know there was work on Pillar after I wrote this. Maybe there is some functionalities that will need more than those simple examples. By I am not sure and I know that Stephane want to simplify it further. -- Cyril Ferlicot https://ferlicot.fr http://www.synectique.eu 2 rue Jacques Prévert 01, 59650 Villeneuve d'ascq France

Re: [Pharo-users] [Pillar] Pillar source code of ESUG 2015 presentation? Presentations done with Pillar?

2017-08-31 Thread Cyril Ferlicot
with Pillar > > https://github.com/SquareBracketAssociates/PharoMooc/blob/master/Slides/1-Templates/SlideExample.pillar > > My questions thus are specifically: > > 1. How do I do a title slide? > 2. What do I do inside the ${}$ . >Where do I find documentation on the options

Re: [Pharo-users] [Pharo-dev] The mooc is looking for forum moderators

2017-09-01 Thread Cyril Ferlicot
course-v1:inria+41010+session02/about > > Please let me know if you are interested helping. > > Stef > -- Cyril Ferlicot https://ferlicot.fr http://www.synectique.eu 2 rue Jacques Prévert 01, 59650 Villeneuve d'ascq France

Re: [Pharo-users] Difference between 'do-it' (ctrl d) and 'do-it and go' (ctrl -g)?

2017-09-04 Thread Cyril Ferlicot
o it and go will open an inspector *in* the playground with the result of the execution. -- Cyril Ferlicot https://ferlicot.fr http://www.synectique.eu 2 rue Jacques Prévert 01, 59650 Villeneuve d'ascq France

[Pharo-users] Force headless mode

2017-09-26 Thread Cyril Ferlicot
m that open the window. I know we can add some arguments to the command line to open the image as headless but we want to forbid the user to launch the image without headless to protect the code. Is this possible? Do you have some pointers? Thanks in advance. -- Cyril Ferlicot https://ferlicot.fr

Re: [Pharo-users] Force headless mode

2017-09-26 Thread Cyril Ferlicot
load a github's project. I now added a piece of code to update Metacello to a newer version but it just do nothing without any log. I know there is still some way to get the code but this is the first step to build a real delivery image. > Christophe > -- Cyril Ferlicot

Re: [Pharo-users] Force headless mode

2017-09-26 Thread Cyril Ferlicot
disable the non headless mode in production? > Esteban > > > -- Cyril Ferlicot https://ferlicot.fr http://www.synectique.eu 2 rue Jacques Prévert 01, 59650 Villeneuve d'ascq France

Re: [Pharo-users] Force headless mode

2017-09-27 Thread Cyril Ferlicot
gt; execute or load code) > > Problem is that you will lock yourself out as well ;-) > > Thank you Sven. We used your solution (1) and it is indeed a good solution. Solution (2) was already in our todo list :) -- Cyril Ferlicot https://ferlicot.fr http://www.synectique.eu 2 rue

Re: [Pharo-users] Force headless mode

2017-09-27 Thread Cyril Ferlicot
all we will do but it is a step making it hard for people who do not know Pharo to access the code. There is no solution that would protect us at 100%, so we want a list of solutions fast to implement and covering a large part of the way to access to the code. -- Cyril Ferlicot https://ferlicot.fr

Re: [Pharo-users] Force headless mode

2017-09-27 Thread Cyril Ferlicot
try remove the decompiler I do not think that people will do much. > Now again how much time and for what? > > Stef > We are taking this into consideration. We have several solutions and we will implement te one with the best implementation time/protection ratio. Thank you for the pointers

[Pharo-users] Deploying on Linux with LibC version < 2.15

2017-10-04 Thread Cyril Ferlicot
ttp://files.pharo.org/vm/pharo/linux/old-libc/Pharo-VM-linux-oldLibC.zip -- Cyril Ferlicot https://ferlicot.fr http://www.synectique.eu 2 rue Jacques Prévert 01, 59650 Villeneuve d'ascq France

Re: [Pharo-users] Deploying on Linux with LibC version < 2.15

2017-10-05 Thread Cyril Ferlicot
ow for the LSB support. I can ask but I will probably not know before the end of next week. -- Cyril Ferlicot https://ferlicot.fr http://www.synectique.eu 2 rue Jacques Prévert 01, 59650 Villeneuve d'ascq France

Re: [Pharo-users] Deploying on Linux with LibC version < 2.15

2017-10-05 Thread Cyril Ferlicot
agekit Usage: "yum-config-manager [options] [section] Command line error: no such option: --add-repo [centoslive@livecd test]$ Is there something else to install before? > > > > -- Cyril Ferlicot https://ferlicot.fr http://www.synectique.eu 2 rue Jacques Prévert 01, 59650 Villeneuve d'ascq France

Re: [Pharo-users] Pillar (was Re: Behold Pharo: The Modern Smalltalk)

2017-10-13 Thread Cyril Ferlicot
#x27;t have much time so, fast answer: https://github.com/pillar-markup/pillar/issues > > Fogbugs issue trakcer is certainly not the ideal place these days... > > > Sincerely, > Gour > > -- > Everyone is forced to act helplessly according to the qualities > he has

Re: [Pharo-users] Travis build failing because of bad CRC

2017-11-23 Thread Cyril Ferlicot
on a server, but we regularly get "bad CRC" while using zero conf. Or one execution of zero conf is randomly longer than the others. It does not seems to come from the server/user connection. > Stef > > > > -- Cyril Ferlicot https://ferlicot.fr http://www.synectiq

Re: [Pharo-users] ZIPArchive usage + FileSystem memory

2017-11-30 Thread Cyril Ferlicot
ww.cnrs.fr > <http://www.cnrs.fr>* > > > *Web:* *http://guillep.github.io* <http://guillep.github.io> > > *Phone: *+33 06 52 70 66 13 <+33%206%2052%2070%2066%2013> > -- Cyril Ferlicot https://ferlicot.fr http://www.synectique.eu 2 rue Jacques Prévert 01, 59650 Villeneuve d'ascq France

Re: [Pharo-users] Why do downloads not use HTTPS by default?

2017-12-11 Thread Cyril Ferlicot
On mar. 12 déc. 2017 at 00:12, Stephane Ducasse wrote: > Thanks marcus. > Should I update all the pages of the lectures and other to use https? > > Stef > > > Wouldn't it be simpler to set an automatic redirection from the http to the https on the server? -- Cyril Fe

Re: [Pharo-users] Is there a way to stop arrays sorting automatically?

2017-12-31 Thread Cyril Ferlicot
bout either of them. I am just curious if fogbugz is > much better? > Hi, I think that one of the reason is that all the Pharo process is based on Fogbugz and migrating would takes month and add a lot of instability for few gain. > Cheers > Andy > -- Cyril Ferlicot https://ferlicot.fr http://www.synectique.eu 2 rue Jacques Prévert 01, 59650 Villeneuve d'ascq France

Re: [Pharo-users] [Pharo-dev] Best wishes for 2018

2017-12-31 Thread Cyril Ferlicot
getJpeg: ' > https://spotlight.it-notes.ru/wp-content/uploads/2017/08/02c48424be88ee36d5300ad89033fd82.jpg > ') > layout: #scaled > > Have fun! > > Bye > T. > > Happy new year everyone :) -- Cyril Ferlicot https://ferlicot.fr http://www.sy

Re: [Pharo-users] More named colors

2018-01-01 Thread Cyril Ferlicot
mmendation for text color. Dependently of the background color they define if the text should be white or black. (This is defined by the luminescence of the color in Pharo). Also, they define different text color if you have a primary text or a secondary text. See: https://material.io/gu

Re: [Pharo-users] Packaging for Mac OS

2015-03-27 Thread Cyril Ferlicot
navailable" > > But I will check later. > > works for me > > -- > Damien Cassou > http://damiencassou.seasidehosting.st > > "Success is the ability to go from one failure to another without > losing enthusiasm." --Winston Churchill > > -- _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ Cheers Cyril Ferlicot

Re: [Pharo-users] Pharo sprint on Friday, 3rd April

2015-03-27 Thread Cyril Ferlicot
date a bit. > Thanks and Regards > Jigyasa Grover > > > > -- > View this message in context: > http://forum.world.st/Pharo-sprint-on-Friday-3rd-April-tp4815604p4815605.html > Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com. > > -- Cheers Cyril Ferlicot

[Pharo-users] Tabs in Playground ?

2015-04-03 Thread Cyril Ferlicot
​​Hi ! Is it possible to have multiple tabs on the playground ? It seems so but i don't find how to do it simply. -- Cheers Cyril Ferlicot

Re: [Pharo-users] Tabs in Playground ?

2015-04-04 Thread Cyril Ferlicot
Key' evaluated: #key; > column: 'Value' evaluated: [ :each | each value > printString ]; > send: #value > > in the class SmallInteger > > and doit: 10 inspect > > Cheers, > Alexandre > > > On Apr 3, 2015, at 9:24 A

Re: [Pharo-users] Converting a string containing dots to integer

2015-04-04 Thread Cyril Ferlicot
and that will give you: '1.234' copyWithoutAll: '.' first -> '1234' -- Cheers Cyril Ferlicot On 5 April 2015 at 01:43, Benoit St-Jean via Pharo-users < pharo-users@lists.pharo.org> wrote: > > > -- Forwarded message -- > From:

Re: [Pharo-users] How do I get the list of projects on SmalltalkHub?

2015-04-07 Thread Cyril Ferlicot
Example with Cocoon: catalogContactInfo ^ 'The creator of Cocoon is Stephan Ducasse with the help of Cyril Ferlicot. The website is at *http://smalltalkhub.com/#!/~PharoExtras/Cocoon/*.' catalogDescription ^ 'An application configuration system using JSON. I

Re: [Pharo-users] How do I get the list of projects on SmalltalkHub?

2015-04-07 Thread Cyril Ferlicot
> > Offray > > El 07/04/15 a las 07:51, Cyril Ferlicot escribió: > >> Example with Cocoon: >> >> catalogContactInfo >> ^ 'The creator of Cocoon is Stephan Ducasse with the help of Cyril >> Ferlicot. >> The website is at *http://small

Re: [Pharo-users] pillar internal link

2015-04-07 Thread Cyril Ferlicot
;Framework' (and file 'Framework/Framework.pillar') and > 'Palette' (and file 'Palette/Palette.pillar') > > Can I in Framework.pillar write something like *Palette/Palette* to create > a link? > Currently it fails at > > *** Warning: PRReferenceNotFo

Re: [Pharo-users] pillar internal link

2015-04-09 Thread Cyril Ferlicot
; So, +1 interest to that feature, here :) > > > > > On Tue, Apr 7, 2015 at 11:03 AM, Cyril Ferlicot > wrote: > >> Hi ! >> Inter-File link are on the TODO list of pillar. Currently you can't. >> I'm working on Pillar now, if i add inter-file link i'll sa

Re: [Pharo-users] [ANN] MorphicDoc : A project to document Morphic

2015-04-12 Thread Cyril Ferlicot
e internet here >> >>> is >> >>> very weak so its hard for me to be online so if you need any help just >> >>> email me. >> >>> >> >>> On Sat, Apr 11, 2015 at 7:50 PM, Jigyasa Grover >> >>> mailto:grover.jigya...@gmail.com>> wrote: >> >>> >> >>> Hey Kilon ! >> >>> I would like to contribute to your new project. >> >>> Started learning Morphic on Mr. Martin Bahr's suggestion. >> >>> Looking forward to a positive reply. >> >>> Thanks >> >>> Jigyasa Grover >> >>> >> >>> >> >>> >> >>> -- >> >>> View this message in context: >> >>> >> >>> http://forum.world.st/ANN-MorphicDoc-A-project-to-document-Morphic-tp4819062p4819074.html >> >>> Sent from the Pharo Smalltalk Users mailing list archive at >> >>> Nabble.com. >> >>> >> >>> >> >> >> >> >> > -- Cheers Cyril Ferlicot

Re: [Pharo-users] Pillar used directly from Pharo

2015-04-18 Thread Cyril Ferlicot
le document > object > > and finally > > aPillarDocument exportToLatex. //export the document > -- > > > > or I can just write the text in the pillar notation to "myTextObject" > and then call something like-> > --- > pillarParseAndExportToLatex: myTextObject. > --- > > Is here a way to do this? > > Thanks for your help :-) > John. > > -- Cheers Cyril Ferlicot

Re: [Pharo-users] Pillar used directly from Pharo

2015-04-19 Thread Cyril Ferlicot
he outputFile is the name of the file you want to be generate, the file will be on the folder of the image. If you want a special template you have to pass it to templateStream. You can also have others option like: On 18 April 2015 at 20:06, Cyril Ferlicot wrote: > Hi ! > You can use it fr

Re: [Pharo-users] Pillar used directly from Pharo

2015-04-19 Thread Cyril Ferlicot
pe that can help you, if you've others question fell free to ask ! On 19 April 2015 at 17:53, Cyril Ferlicot wrote: > Hi again ! > > Ok so. To use pillar inside Pharo you have this: > > PRCocoonConfiguration new > templateStream: PRHTMLWriter defaultT

Re: [Pharo-users] [Pharo-dev] QualityAssistant v0.4

2015-04-23 Thread Cyril Ferlicot
ionality in the >> >>> configurationBrowser. >> >>> >> >>> Why we do not integrate the excellent tool of baptiste that would show >> >>> to people >> >>> when they are creating package mess? Because of the same reason. >> >>> >> >> But the Pharo that we download should be the Pharo we use. >> >> >> >> We tried the other back in Pharo1.0: Do you remember how we fixed with >> >> lots >> >> care all details, but then, everyone was using a different image, and >> >> all the >> >> details there where not fixed and all work was done double? >> >> >> >> If we do not make the Pharo that is downloaded to be that was is used, >> >> we will have >> >> that again. >> >> >> >> I don’t want everything in the image, but what everyone is supposed to >> >> be using should >> >> be there without needing an additional step. >> >> >> >> Marcus >> >> >> >> >> >> >> >> >> > >> > >> >> > -- Cheers Cyril Ferlicot

Re: [Pharo-users] [Pharo-dev] QualityAssistant v0.4

2015-04-23 Thread Cyril Ferlicot
I changed that but i still have the warning from quality assistant. On 23 April 2015 at 12:44, Cyril Ferlicot wrote: > Oh, ok ! Thank you Guillermo ! > > On 23 April 2015 at 11:58, Guillermo Polito wrote: >> Hi Cyril, >> >> Your problem is caused because abstract me

[Pharo-users] What's new on Pillar ?

2015-04-24 Thread Cyril Ferlicot
> To help the users I improved the error reports. Before we had really few errors specific to Pillar. For this one you can help me ! If you found a weird error or something really not easy to deal with, send me your problem ! -- Cheers Cyril Ferlicot

[Pharo-users] Question about Text Editor.

2015-04-27 Thread Cyril Ferlicot
Hi, I wanted to do a little text editor and I would like to know if someone already did one with simple features like open a file, save a file etc... I don't want to lose too much time in something that already exist. -- Cheers Cyril Ferlicot

Re: [Pharo-users] Where to channel questions

2015-04-27 Thread Cyril Ferlicot
lost amongst >> all the questions on StackOverflow." >> >> But is also states that Pharo questions can be directed at this user list. >> >> What is the criteria to use one or the other? > > Welcome ! > > Both are OK, it is a bit up to you. > > There are more people listening/answering on this ML. -- Cheers Cyril Ferlicot

Re: [Pharo-users] The Pillar TextMate plugin can now preview Pillar files

2015-04-28 Thread Cyril Ferlicot
plugin-can-now-preview-Pillar-files-tp4821761p4822667.html > Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com. > -- Cheers Cyril Ferlicot

Re: [Pharo-users] The Pillar TextMate plugin can now preview Pillar files

2015-04-28 Thread Cyril Ferlicot
: > How do I do that in a fresh Pharo 4 image? > Thanks > nacho > > > *Lic. Ignacio Sniechowski, MBA* > *Prosavic SRL* > > *Tel: (011) 4542-6714* > > > > > > > > > > > > > > > > > > > > On Tue, Apr 28, 2015 a

Re: [Pharo-users] Pharo 4 Playground open file menu

2015-04-30 Thread Cyril Ferlicot
on the result. > > So basically there is no way to "File -> Open" from the Playground. :) > (nor a a way "File -> Save" its contents either [1]) > > I guess I'll keep opening a Workspace and continue the old way from there. > > > Regards! > > Esteban A. Maringolo > > [1]: IMO this is taking the "no-files based" concept to the extreme. A > step back if I could add. > > -- Cheers Cyril Ferlicot

Re: [Pharo-users] Pharo 4 Playground open file menu

2015-04-30 Thread Cyril Ferlicot
There is a way to have both I think but I don't have my laptop now to check Le jeudi 30 avril 2015, Esteban A. Maringolo a écrit : > 2015-04-30 16:29 GMT-03:00 Cyril Ferlicot >: > > Just for info: you can get back the workspace into the settings (uncheck > the > > pla

Re: [Pharo-users] Pharo 4 Playground open file menu

2015-04-30 Thread Cyril Ferlicot
tomScript' you will see the > file. Select the file and hit enter > and then a playground is opened linked again with that file. > > Cheers, > Andrei > > On Thu, Apr 30, 2015 at 9:49 PM, Cyril Ferlicot > wrote: > >> There is a way to have both I think but I do

Re: [Pharo-users] Question about Text Editor.

2015-05-01 Thread Cyril Ferlicot
the config browser. > > IMO with the new Playground, ScriptManager became obsolete. > > cheers, > Esteban > >> >> Pierce >> > > -- Cheers Cyril Ferlicot

Re: [Pharo-users] When to use Versionner and when to use Monticello

2015-05-01 Thread Cyril Ferlicot
Everything you can do with a versionner, you can do it by writing a ConfigurationOfX package and with Monticiello. Versionner is just an easy way to do configurations. You can easily manage packages dependencies. I know that you can't do some things with Versionner (for example you have to write th

Re: [Pharo-users] [Pharo-dev] Next Pharo sprint & Moose dojo

2015-05-01 Thread Cyril Ferlicot
ng on smalltalk! Le samedi 2 mai 2015, Sergio Fedi a écrit : > Couple of questions: > > 1 - Since this start at 5 am (Buenos Aires Time, GMT -3) > until what hour is the sprint? > > 2 - Is this event appropiate/useful for newbies to Pharo? > -- Cheers Cyril Ferlicot

Re: [Pharo-users] [Pharo-dev] Next Pharo sprint & Moose dojo

2015-05-01 Thread Cyril Ferlicot
As JC said, you can use IRC with the #pharo channel on irc.freenode.net On 2 May 2015 at 03:47, Sergio Fedi wrote: > I may be joining remotely. > > What applications do I need to do that? > > Skype? Teamviewer? > -- Cheers Cyril Ferlicot

Re: [Pharo-users] [Pharo-dev] Next Pharo sprint & Moose dojo

2015-05-01 Thread Cyril Ferlicot
By the way, the #pharo channel is not only for sprint, you can pass whenever you want On 2 May 2015 at 03:50, Cyril Ferlicot wrote: > As JC said, you can use IRC with the #pharo channel on irc.freenode.net > > On 2 May 2015 at 03:47, Sergio Fedi wrote: >> I may be joining remot

Re: [Pharo-users] Can we have NeoCSV, and NeoJSON included in the base image?

2015-05-02 Thread Cyril Ferlicot
the process for deciding which classes get included by default? >> >> Cheers >> Andy >> > > -- Cheers Cyril Ferlicot

Re: [Pharo-users] Error: RemoteString past end of file on Pharo 4.0

2015-05-03 Thread Cyril Ferlicot
any fix I can > apply (I don't know about slices) > > [1] > http://forum.world.st/Error-Remote-String-past-end-of-file-td4707766.html > [2] https://pharo.fogbugz.com/f/cases/10411/#78632 > > Any help is appreciated. > > Cheers, > > Offray > -- Cheers Cyril Ferlicot

Re: [Pharo-users] Error: RemoteString past end of file on Pharo 4.0

2015-05-03 Thread Cyril Ferlicot
hought was also to do with the .change file, as I have received >> this error before when creating manual backups of images. >> >> Cheers >> Carlo >> >> On 04 May 2015, at 12:22 AM, Cyril Ferlicot >> wrote: >> >> It happend to me when I rename

Re: [Pharo-users] Error: RemoteString past end of file on Pharo 4.0

2015-05-03 Thread Cyril Ferlicot
Offray > > El 03/05/15 a las 17:35, Cyril Ferlicot escribió: > >> That wouldn't be faster to save your changes into package-cache and >> load your .mcz into a new image ? >> >> On 4 May 2015 at 00:39, Offray Vladimir Luna Cárdenas >> wrote: >>&g

Re: [Pharo-users] Glamorous Toolkit questions

2015-05-03 Thread Cyril Ferlicot
nd "Bindings" and in which case does the "Refresh" > make sense? > > I probably have more questions but I wanted to ask this at least. > > Thanks in advance, > > > > -- > Mariano > http://marianopeck.wordpress.com -- Cheers Cyril Ferlicot

[Pharo-users] [SURVEY] Pillar input/output files.

2015-05-04 Thread Cyril Ferlicot
ach time we have a new Chapter. (!Level 1 header). That will make simpler the way to number everything and to create anchor because those 2 doesn't work well with the "separateOutputFile" option. What do you thing? That would be good with you? -- Cheers Cyril Ferlicot

Re: [Pharo-users] [Pharo-dev] [SURVEY] Code Critics Usage

2015-05-05 Thread Cyril Ferlicot
Done! On 5 May 2015 at 09:50, kilon alios wrote: > Done ! > > On Tue, May 5, 2015 at 1:46 AM Sergio Fedi wrote: >> >> Done! -- Cheers Cyril Ferlicot

Re: [Pharo-users] beginner question - how to get a fully qualified filename from a dialog

2015-05-12 Thread Cyril Ferlicot
wrong > rabbit hole and can point me to instructions on how to choose the correct > rabbit hole. ;-) (Also, if there is a short answer i.e. use this > object>>method, I'd appreciate that as well.) > > Thanks, > > Mike > > > > > > > > > > -- > View this message in context: > http://forum.world.st/beginner-question-how-to-get-a-fully-qualified-filename-from-a-dialog-tp4826037.html > Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com. > -- Cheers Cyril Ferlicot

Re: [Pharo-users] Cannot load Pillar

2015-05-14 Thread Cyril Ferlicot
t: #ConfigurationOfPillar) load > -=-=-=-=-=-=-=-=-= > > Cheers, > Alexandre > -- > _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: > Alexandre Bergel http://www.bergel.eu > ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. > > > > > -- Cheers Cyril Ferlicot

Re: [Pharo-users] Cannot load Pillar

2015-05-14 Thread Cyril Ferlicot
Should be fine now On 14 May 2015 at 17:54, Cyril Ferlicot wrote: > I'll make a new configuration un few hours > > > Le jeudi 14 mai 2015, Alexandre Bergel a écrit : >> >> Hi! >> >> When I load Pillar, I have the following: >> This package depends

Re: [Pharo-users] Generate latex from Pharo

2015-05-16 Thread Cyril Ferlicot
nextPutAll: myMatrix asLatex. > > to have something like: > > \begin{pmatrix} >1 & 2 \\ >3 & 4 > \end{pmatrix} > > > in the file. > > I used to do it with pylatex in Python and I wonder if something equivalent > already exists in Pharo? > > Regards, > > Julien -- Cheers Cyril Ferlicot

Re: [Pharo-users] Generate latex from Pharo

2015-05-16 Thread Cyril Ferlicot
Pillar-ExporterLaTeX but they inherit from Pillar-ExporterCore I think On 16 May 2015 at 15:30, Julien Delplanque wrote: > From which package does these classes come from? > > > On 16/05/15 15:26, Cyril Ferlicot wrote: >> >> Hi, >> I don't know if there is a

Re: [Pharo-users] Generate latex from Pharo

2015-05-17 Thread Cyril Ferlicot
- instantiate PRLaTeXCanvas and PROutputStream manually and use them, or >> >> - create a Pillar document and export it as LaTeX. >> >> >> Continue asking questions here if you have more. >> >> > > -- Cheers Cyril Ferlicot

Re: [Pharo-users] Generate latex from Pharo

2015-05-17 Thread Cyril Ferlicot
7 May 2015 at 12:33, Julien Delplanque wrote: > Oh ok :) > > Do you have this todo list online? > > > On 17/05/15 12:19, Cyril Ferlicot wrote: >> >> Sorry but that's an item of the TODO list of Pillar. >> >> On 17 May 2015 at 11:25, Julien Delplanque

Re: [Pharo-users] Pillar used directly from Pharo

2015-05-17 Thread Cyril Ferlicot
to only export the body of the document: >> >> PRLaTeXWriter write: document >> >> >>> or I can just write the text in the pillar notation to "myTextObject" >>> and then call something like-> >>> --- >>> pillarParseAndExportToLatex: myTextObject. >> >> >> document := PRDocumentParser parse: '!!foo'. >> PRLaTeXWriter write: document. > > -- Cheers Cyril Ferlicot

Re: [Pharo-users] ShortCut

2015-05-17 Thread Cyril Ferlicot
hi, Shift + Enter On 17 May 2015 at 17:54, Cristian Vazquez wrote: > Hi! > > What is a shortcut for open Spotter? > > Thank > > -- > Saludos. > Cristian -- Cheers Cyril Ferlicot

Re: [Pharo-users] Is Smalltalkhub down ?

2015-05-18 Thread Cyril Ferlicot
Yeah smalltalkhub is down ! On 18 May 2015 at 13:38, Thomas Heniart wrote: > Hi everyone, > > > I can't access to Smalltalkhub (time out), is it the same for you? -- Cheers Cyril Ferlicot

Re: [Pharo-users] [Pharo-dev] [Moose-dev] [SURVEY] Pillar input/output files.

2015-05-18 Thread Cyril Ferlicot
d not be forced. > > Cheers, > Alexandre > -- > _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: > Alexandre Bergel http://www.bergel.eu > ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. > > > > On May 4, 2015, at 7:38 AM, Cyril Ferlicot wrote: > > Hi, > I'm currently working on the way we

Re: [Pharo-users] Alt-tab between windows

2015-05-19 Thread Cyril Ferlicot
ws. >> >> Personally, I'm a fan of this trend. I'm much happier typing a few >> characters to auto-complete the buffer I want to return to in Emacs, than I >> am hunting around in an OS window list for it. >> >> This is all a long-winded way of saying: just because this is currently a >> problem, doesn't mean it's the *right* problem. It would be interesting to >> see what a "fewer windows" approach to Smalltalk development might look >> like. >> > > This is an interesting UI area to explore. As a step in this direction, the > Window Menu (small arrow in title bar) item "Create window group" may > provide part of the behaviour you are looking for. > cheers -ben -- Cheers Cyril Ferlicot

Re: [Pharo-users] Fun with pillar and mustache

2015-05-20 Thread Cyril Ferlicot
'content' -> (PRHTMLWriter write: (PRDocumentParser parse: >>> finalPillar readStream)) } asDictionary >>> partials: { >>> 'phase2Template' -> partialTemplate } asDictionary. >>> >>> and got >>> >>> >>> This is the title of the master! >>> >>> masterheading >>> This text is contained in the master pillar template >>> A partial title >>> Some text in the partial template before the content... >>> I'm a text in pillar format that was inserted in a partial mustache >>> template generated from pillar that was inserted in a mustache master >>> template in pillar format that was inserted in a master mustache >>> template} >>> ... and after >>> >>> >>> >>> That is really cool. Actually pillar and mustache are a good match. >>> >>> FYI, >>> >>> Norbert >>> >>> >>> >>> >> >> > > -- Cheers Cyril Ferlicot

Re: [Pharo-users] Fun with pillar and mustache

2015-05-21 Thread Cyril Ferlicot
to see if we > can have better support for them in pillar. > > I'd be pleased if you contribute and push it :). We have this trello board > to add ideas and manage our backlog > > https://trello.com/b/2t7qTWpp/ecstatic > > Thanks. I think I'll find some time this weekend to

[Pharo-users] Pillar 0.56 : New features, new syntax

2015-05-22 Thread Cyril Ferlicot
n Enterprise Pharo (you can find a table with the list of the inter-files links on the README.md) On last thing for the people who write book for SquareBracketAssociates: It would be good to have some conventions, so if you create anchors use this form : @sec:nameOfSection for a section @cha:nameOfTheChapter for a title of chapter @fig:nameOfFigure for a figure @spt:nameOfTheScript for a script -- Cheers Cyril Ferlicot

Re: [Pharo-users] [Pharo-dev] Pillar 0.56 : New features, new syntax

2015-05-23 Thread Cyril Ferlicot
wrote: > Cyril, > > Am 22.05.2015 um 23:12 schrieb Cyril Ferlicot : > > The second main change is the Internal Links. > Now when you want to reefer to an anchor, a figure or a script you'll > need to use *@anchor* instead of *anchor*. > I'm sorry for that but that's t

Re: [Pharo-users] Is the Playground the Workspace?

2015-05-24 Thread Cyril Ferlicot
und serve as the > Pharo Workspace? > > Thanks for your time, > > Dan -- Cheers Cyril Ferlicot

Re: [Pharo-users] Is the Playground the Workspace?‏

2015-05-24 Thread Cyril Ferlicot
l before in the IDE? > > For example, did you try to read the About of the tool? > > (I'm trying to determine how useful/accesible are the help features of the > tools) > > To show you what a noob I am - I don't even understand your question. > > Dan -- Cheers Cyril Ferlicot

Re: [Pharo-users] Is the Playground the Workspace?‏

2015-05-24 Thread Cyril Ferlicot
I see the little arrow in the last version in the Pharo Launcher. On 24 May 2015 at 17:37, Serge Stinckwich wrote: > Apparently this black arrow works in Pharo 4.0 but this is broken in MOOSE 5.1 > > > On Sun, May 24, 2015 at 5:33 PM, Cyril Ferlicot > wrote: >> On the top

Re: [Pharo-users] Is the Playground the Workspace?‏

2015-05-24 Thread Cyril Ferlicot
pt current as well. > > Thanks again... > Dan -- Cheers Cyril Ferlicot

Re: [Pharo-users] Not Pharo related - how does one respond to a message

2015-05-24 Thread Cyril Ferlicot
ch more efficient way to do this. > > Enlighten me, please. > > Dan -- Cheers Cyril Ferlicot

Re: [Pharo-users] PBE - Updated - section 2.10 System Browser

2015-05-24 Thread Cyril Ferlicot
tions: > 1) What is Nautilus - did I miss something here?, and > > 2) What are the shaded right facing triangles pointing to various menu > entries trying to tell me? > > I tried to warn you - get ready for just a truck load of noobie questions. > > Dan -- Cheers Cyril Ferlicot

Re: [Pharo-users] PBE - Updated - section 2.10 System Browser

2015-05-24 Thread Cyril Ferlicot
If you find that something is not clear you can open an issue on the github of UPBE : https://github.com/SquareBracketAssociates/UpdatedPharoByExample/issues On 25 May 2015 at 02:55, Cyril Ferlicot wrote: > Nautilus is the Systeme Browser. > Maybe a more experienced smalltalker will be a

Re: [Pharo-users] Pillar 0.56 : New features, new syntax

2015-05-24 Thread Cyril Ferlicot
ample of changes to a > class. > > Could you have a look? The pillar file is in github, the Fuel.pillar.html > result of ./compile.sh is here: > https://dl.dropboxusercontent.com/u/31426460/Fuel.pillar.html > > Thanks in advance! > >> On May 22, 2015, at 18:12, Cyril Ferl

Re: [Pharo-users] [Moose-dev] Pillar 0.56 : New features, new syntax

2015-05-24 Thread Cyril Ferlicot
ologies! > > Now it works, but I found a bug: do a find for ‘shown in Section 5.3.3’ in > the same html file. The section title there is V.3.C. So it should say ‘shown > in Section V.3.C.’, right? > >> On May 24, 2015, at 22:17, Cyril Ferlicot wrote: >> >> Hi,

Re: [Pharo-users] Is it always needed to redefine #hash message when you redefine #= message?

2015-05-26 Thread Cyril Ferlicot
in any subclass, consider also redefining the > message hash." > > ^self == anObject > """ > > When do we need to redefine #hash message? > > Is it the right way to implement equality between two objects or is there > another message that I should override? > > Regards, > Julien > -- Cheers Cyril Ferlicot

Re: [Pharo-users] PBE - Updated -2.8 - overlapping windows

2015-05-27 Thread Cyril Ferlicot
the point of asking you to overlap the windows? What have I > missed? > > > I have no idea either… I think it is not needed and step3 can just be > removed from the instructions. > > Marcus -- Cheers Cyril Ferlicot

Re: [Pharo-users] Slice for a non Pharo package ?

2015-05-30 Thread Cyril Ferlicot
rocedure to propose a Slice for a package outside Pharo/main >> ? >> >> Sorry if it's a dumb question :s >> >> Cheers, >> >> Matthieu > > -- Cheers Cyril Ferlicot

Re: [Pharo-users] Transfer image between OSes

2015-05-30 Thread Cyril Ferlicot
t; > -- > View this message in context: > http://forum.world.st/Transfer-image-between-OSes-tp4829484p4829496.html > Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com. > > -- Cheers Cyril Ferlicot

Re: [Pharo-users] pillar remove numbering from some headings

2015-06-03 Thread Cyril Ferlicot
n equivalent of Latex' \subsection*{...}. > > Thanks, > Peter -- Cheers Cyril Ferlicot

Re: [Pharo-users] Bug in Open Workspace from File-Browser?

2015-06-12 Thread Cyril Ferlicot
5 um 16:40 schrieb Ben Coman: > > Or do we now want such to open in Playground? > > btw, these are the relevant methods. > FileList>>FileList>>viewContentsInWorkspace > FileList>>viewContentsInWorkspace > > cheers -ben > > On Wed, Jun 3, 2015 at 6:57 PM, volkert > wrote: > > The File Browser has a Context Menu "Workspace with Contents". It opens an > Edit Window (String Morph), but not a Workspace ... > > Is the Menu-Title wrong or the implementation? > > BW, > Volkert > > -- Cheers Cyril Ferlicot

Re: [Pharo-users] Bug in Open Workspace from File-Browser?

2015-06-12 Thread Cyril Ferlicot
Thank you volkert for the correction! On 12 June 2015 at 11:05, Cyril Ferlicot wrote: > If you want to open a workspace or a playground we should use: > > viewContentsInWorkspace > "View the contents of my selected file in a new workspace" > > | aS

Re: [Pharo-users] Updated Pharo By Example

2015-10-23 Thread Cyril Ferlicot
t them pack > > Maybe I can create a pharo script to auto make them for each version > -- Cheers Cyril Ferlicot

Re: [Pharo-users] [IMPORTANT] Starting migration to Spur VM

2015-12-17 Thread Cyril Ferlicot
gt;> > > > > ---> Save our in-boxes! http://emailcharter.org <--- > > Johan Fabry - http://pleiad.cl/~jfabry > PLEIAD and RyCh labs - Computer Science Department (DCC) - University of > Chile > > -- Cheers Cyril Ferlicot

Re: [Pharo-users] [IMPORTANT] Starting migration to Spur VM

2015-12-17 Thread Cyril Ferlicot
is fixed upstream? > >> On Dec 17, 2015, at 12:00, Cyril Ferlicot wrote: >> >> You can use this: >> >> wget --quiet -O - get.pharo.org/$PHARO+$VM | bash >> >> at the beginng of your script to get the latest image and VM. With >> that you will have a spur

Re: [Pharo-users] example of stand-alone desktop app

2015-12-25 Thread Cyril Ferlicot
tly from Pharo but I don't have the time to do it for now. If you need some help to do that you can ask when you will code and we can help you. Welcome to Pharo and merry Christmas! -- Cyril Ferlicot Synectique On Friday, December 25, 2015, Saša Janiška wrote: > Hello, > > I&

  1   2   3   4   >