Re: [Pharo-users] Error while loading GitFileTree in Pharo 4.0

2015-03-15 Thread Thierry Goubier
Hi Jigyasa, Martin, I removed the stable version of GitFileTree from the configuration since it doesn't work anymore since a few versions of Pharo4. Please use the development version, as per the following script: Gofer it url: 'http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo40/main

[Pharo-users] Woden-Roassal missing classes/examples not working

2015-03-15 Thread Lusa Nicolas
Hi, I was working on a project with a old woden implementation which is working just fine. But lately I tried to upload the latest version of woden and classes of the package called woden-roassal went missing as well as in woden-core package. This happens also with a new clean woden image. The

Re: [Pharo-users] Woden-Roassal missing classes/examples not working

2015-03-15 Thread Serge Stinckwich
Hi Nicolas, are you using a Pharo 4 or Moose 5.1 image ? I just download Wooden in the last Moose 5.1 on my mac and works perfectly when you run this: Gofer new smalltalkhubUser: 'PharoExtras' project: 'NBOpenGL'; package: 'ConfigurationOfNBOpenGL'; load. ((Smalltalk at: #ConfigurationOfNBOpenGL)

Re: [Pharo-users] making .extension files (like .class files)

2015-03-15 Thread Sean P. DeNigris
rohit_01 wrote > One more thing i want to ask, i.e, how to make .extension files (like > .class files) in pharo Rohit, when you put a method in a protocol of the form *MyPackage, it's a hack which is not really a protocol at all, but tells Monticello, Pharo's SCM: "package this method in MyPackage

[Pharo-users] Pillar html export clickable headers

2015-03-15 Thread Peter Uhnák
Hi, I have a small feature request for Pillar to be considered - clickable/linkable headers in html output. Often I want to link someone to specific chapter of a document. For example in Sphinx documentation http://sphinx-doc.org/tutorial.html#autodoc each section has an id and when you hover the

[Pharo-users] Viva: animation framework published in the metaRepo for Pharo40

2015-03-15 Thread stepharo
Hi Viva is a small framework to define animation developed by igor Stasenko. It is used by Roassal2 for its animation. Now Viva is published in its own repository MCHttpRepository location: 'http://www.smalltalkhub.com/mc/RMoD/Viva/main' user: '' password: '' and published in the co

[Pharo-users] ExtendedNumberParser now has its own repository

2015-03-15 Thread stepharo
Hi I did not want to lose the work of Nicolas Cellier around alternate number parsers so I went back in Pharo 30 and packaged them as a separate package (may be it was already done but I could not find it). All the tests are green in Pharo 40. So I hope that everything is ok :) MCHttpReposit

Re: [Pharo-users] Woden-Roassal missing classes/examples not working

2015-03-15 Thread Lusa Nicolas
Hi, I am using Pharo 4. Thanks for the reply though, I forgot to specify in the previous mail. Cheers, Nicolas On Mar 15, 2015, at 5:57 PM, Serge Stinckwich wrote: > Hi Nicolas, > > are you using a Pharo 4 or Moose 5.1 image ? > I just download Wooden in the last Moose 5.1 on my mac and work

Re: [Pharo-users] Pillar html export clickable headers

2015-03-15 Thread stepharo
Le 15/3/15 18:50, Peter Uhnák a écrit : Hi, I have a small feature request for Pillar to be considered - clickable/linkable headers in html output. Often I want to link someone to specific chapter of a document. Sure. This is not in because of lack of time and Tell it to damien he will add

Re: [Pharo-users] Woden-Roassal missing classes/examples not working

2015-03-15 Thread stepharo
I do not get why ConfigurationOfWoden cannot handle all the rest. We will fix that with JB. Users should load a project in one click! I do not get what is complex in that idea. Stef Le 15/3/15 17:57, Serge Stinckwich a écrit : Hi Nicolas, are you using a Pharo 4 or Moose 5.1 image ? I just

Re: [Pharo-users] Some MongoTalk cleanups

2015-03-15 Thread stepharo
I do not know if it is related and may help but olivier auverlot did FasterThanLight a pool sharing library. MCHttpRepository location: 'http://www.smalltalkhub.com/mc/RMoD/FasterThanLight/main' user: '' password: '' Stef Le 14/3/15 14:41, p...@highoctane.be a écrit : I have been

Re: [Pharo-users] Git refreshing

2015-03-15 Thread stepharo
At the same time, there is just me and Max (and Esteban as well, I think) working on getting that git support working, so don't bash us too much. It's hard enough to get it done (look at Max questions about libcgit) that we don't need too much additional pressure. Thanks for that. Git is too

Re: [Pharo-users] Some MongoTalk cleanups

2015-03-15 Thread p...@highoctane.be
Excellent news. I'll look at that tomorrow afternoon. Phil On Sun, Mar 15, 2015 at 9:57 PM, stepharo wrote: > I do not know if it is related and may help but olivier auverlot did > FasterThanLight a pool sharing library. > > MCHttpRepository > location: 'http://www.smalltalkhub.com/mc/RMoD/F

Re: [Pharo-users] Git refreshing

2015-03-15 Thread p...@highoctane.be
I moved my workflow to use git with Pharo. Took a while but can't go back. e.g. of collaboration https://github.com/flow-stack/Mapless/pull/13/files Phil On Sun, Mar 15, 2015 at 10:14 PM, stepharo wrote: > >> At the same time, there is just me and Max (and Esteban as well, I think) >> working

[Pharo-users] speed of streams?

2015-03-15 Thread stepharo
Nicolas asked me the following questions and I was stuck :) Stef I have been doing some file intensive activities and found my program to be very slow. Just to be sure I ran them in Java and found it was much faster So I did a small test: --- i := 0. '/home/anquetil/Documents/RMod/Tools/works

Re: [Pharo-users] speed of streams?

2015-03-15 Thread Sven Van Caekenberghe
You are measuring image startup time, not the actual code. 'bar.txt' asFileReference writeStreamDo: [ :out | 1 timesRepeat: [ out << Character alphabet; crlf ] ]. [ 'bar.txt' asFileReference contents ] bench. "37.296 per second" [ 'bar.txt' asFileReference contents ] timeToRun. "0:00:00:00

Re: [Pharo-users] Git refreshing

2015-03-15 Thread Thierry Goubier
I also believe that baselines + git branches and tags would simplify a lot complex projects configurations (Moose?). Thierry Le 15/03/2015 22:24, p...@highoctane.be a écrit : I moved my workflow to use git with Pharo. Took a while but can't go back. e.g. of collaboration https://github.com/f

Re: [Pharo-users] Error while loading GitFileTree in Pharo 4.0

2015-03-15 Thread Jigyasa Grover
After following this -- Gofer it url: 'http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo40/main'; configurationOf: 'GitFileTree'; loadDevelopment I am getting unable to access smalltalkhub.com I am also unable to connect to this website through browser. Is it unavailable ?

Re: [Pharo-users] Error while loading GitFileTree in Pharo 4.0

2015-03-15 Thread Bernardo Ezequiel Contreras
it seems so. i was facing the same problem (sthub is dow :( ). On Mon, Mar 16, 2015 at 3:40 AM, Jigyasa Grover wrote: > After following this -- > > Gofer it > url: 'http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo40/main'; > configurationOf: 'GitFileTree'; > loadDevelop