[Pharo-dev] [pharo-project/pharo-core]

2015-05-11 Thread GitHub
Branch: refs/tags/50042 Home: https://github.com/pharo-project/pharo-core

[Pharo-dev] [pharo-project/pharo-core] af46bf: 50042

2015-05-11 Thread GitHub
Branch: refs/heads/5.0 Home: https://github.com/pharo-project/pharo-core Commit: af46bfa669e063f6291c29a1f930f438e2a0d26c https://github.com/pharo-project/pharo-core/commit/af46bfa669e063f6291c29a1f930f438e2a0d26c Author: Jenkins Build Server bo...@pharo-project.org Date:

Re: [Pharo-dev] [Request]: Feed MetaRepoForXyz Configs Back to Projects

2015-05-11 Thread stepharo
Yes this is important we should think modularly. Le 10/5/15 18:45, Sean P. DeNigris a écrit : For example, Soup's config was updated to declare a stable version for 4.0. It was committed to MetaRepoForPharo40, but not to PharoExtras/Soup. It was confusing that loading from the config browser

[Pharo-dev] On Missing Class: Why not describe error?

2015-05-11 Thread Sean P. DeNigris
Current implementation: MethodDeclaration#handleMissingBehavior self error: ('Cannot install method in unexistent behavior {1}' format: {(behaviorName asString)}) (MissingClassError className: behaviorName asString) signal Any reason

Re: [Pharo-dev] [Request]: Feed MetaRepoForXyz Configs Back to Projects

2015-05-11 Thread Thierry Goubier
2015-05-11 12:15 GMT+02:00 stepharo steph...@free.fr: Yes this is important we should think modularly. This is one of my issues when dealing with configurations: the need to copy them in many different places (the MetaRepo for each supported pharo version, the Smalltalkhub repo for the

Re: [Pharo-dev] On Missing Class: Why not describe error?

2015-05-11 Thread Damien Pollet
Same for methods with syntax errors. A stub method could be installed instead… either an actual method with the incorrect source code as a comment, or a dedicated method-like object. On 11 May 2015 at 14:40, Sean P. DeNigris s...@clipperadams.com wrote: Current implementation:

[Pharo-dev] [pharo-project/pharo-core] 83fa9b: 50043

2015-05-11 Thread GitHub
Branch: refs/heads/5.0 Home: https://github.com/pharo-project/pharo-core Commit: 83fa9bd1367ccfac232639fed5d43be466f71d8a https://github.com/pharo-project/pharo-core/commit/83fa9bd1367ccfac232639fed5d43be466f71d8a Author: Jenkins Build Server bo...@pharo-project.org Date:

Re: [Pharo-dev] [Request]: Feed MetaRepoForXyz Configs Back to Projects

2015-05-11 Thread Thierry Goubier
2015-05-11 14:32 GMT+02:00 Yuriy Tymchuk yuriy.tymc...@me.com: Can't we have configuration server pointing to the configurations of the projects in the repos and getting all supported versions of pharo out of them instead of having a dedicated repo for each pharo version? This does not solve

[Pharo-dev] [pharo-project/pharo-core]

2015-05-11 Thread GitHub
Branch: refs/tags/50043 Home: https://github.com/pharo-project/pharo-core

Re: [Pharo-dev] Transcript needs your love

2015-05-11 Thread Tudor Girba
Hi Clement, Thanks a lot for taking the time to describes these use cases. I was never exposed to the constraints of developing a VM and this type of descriptions is what we need to have a chance of producing tools that can help. I will think of them. Cheers, Doru On Sun, May 10, 2015 at

Re: [Pharo-dev] Transcript needs your love

2015-05-11 Thread Clément Bera
2015-05-11 13:06 GMT+02:00 Nicolai Hess nicolaih...@web.de: About the GTools, I am sure you know it but, you can disable them and work with the good old Workspace and (Eye-)Inspector. Yeah but I could not open the setting browser because you need to be able to create a directory to do so and

Re: [Pharo-dev] Transcript needs your love

2015-05-11 Thread Alain Rastoul
Le 11/05/2015 22:27, Igor Stasenko a écrit : On 10 May 2015 at 10:23, stepharo steph...@free.fr wrote: i think there is a fundamental difference between 'stream' and 'update on the screen' . Choose one and stick to it. We shall separate such responsibilities and NEVER ever merge them again

Re: [Pharo-dev] Transcript needs your love

2015-05-11 Thread Igor Stasenko
On 11 May 2015 at 22:54, Igor Stasenko siguc...@gmail.com wrote: Speaking about penetrating multiple layers.. Lemme tell you the story: One day, a brave hero (let's call him Stef :) ) decided to save the world... err improve Transcript and make it thread-safe. And everything vent well until

Re: [Pharo-dev] Transcript needs your love

2015-05-11 Thread Igor Stasenko
On 10 May 2015 at 13:57, Ben Coman b...@openinworld.com wrote: not that output is interleaved with a specific policy. Hi Eliot, I guess it was hard to analyse that output dump from your phone, and I should have been more explicit. The problem is not the interleave order, but duplicate

Re: [Pharo-dev] Transcript needs your love

2015-05-11 Thread Igor Stasenko
On 11 May 2015 at 23:22, Alain Rastoul alf.mmm@gmail.com wrote: Le 11/05/2015 22:27, Igor Stasenko a écrit : On 10 May 2015 at 10:23, stepharo steph...@free.fr wrote: i think there is a fundamental difference between 'stream' and 'update on the screen' . Choose one and stick to it.

[Pharo-dev] Pharo Screencast By a Ruby Guy

2015-05-11 Thread Sean P. DeNigris
http://devblog.avdi.org/2015/05/11/in-which-i-make-you-hate-ruby-in-7-minutes/ - Cheers, Sean -- View this message in context: http://forum.world.st/Pharo-Screencast-By-a-Ruby-Guy-tp4825891.html Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.

Re: [Pharo-dev] Package comments

2015-05-11 Thread Kasper Osterbye
Sergio Fedi and I are now working on this. As part of the work, we need a default package comment, akin the the default class comment. The class comment is inspired by CRC idea. Translating CRC to a PRC, we suggest the following, and ask for comments from the community. As I believe we will by

Re: [Pharo-dev] On Missing Class: Why not describe error?

2015-05-11 Thread stepharo
Yes It was on my to do to create a little addd-ons that create stupid stub classes. so that I can load broken code and do not care. Le 11/5/15 14:40, Sean P. DeNigris a écrit : Current implementation: MethodDeclaration#handleMissingBehavior self error: ('Cannot install method in

Re: [Pharo-dev] Package comments

2015-05-11 Thread stepharo
Le 11/5/15 20:10, Kasper Osterbye a écrit : Sergio Fedi and I are now working on this. As part of the work, we need a default package comment, akin the the default class comment. The class comment is inspired by CRC idea. Translating CRC to a PRC, we suggest the following, and ask for

[Pharo-dev] Issue 15523: Code Cruft Rule Only Matches One-Liners

2015-05-11 Thread Sean P. DeNigris
https://pharo.fogbugz.com/default.asp?15523 Ouch, burned by you must match at the level of the parse tree you are altering again... It is ridiculously easy to fall into the following trap - when rewriting, you must match at the same level that you alter the parse tree. Thus, if your rule has one

Re: [Pharo-dev] Transcript needs your love

2015-05-11 Thread Igor Stasenko
On 10 May 2015 at 10:23, stepharo steph...@free.fr wrote: i think there is a fundamental difference between 'stream' and 'update on the screen' . Choose one and stick to it. We shall separate such responsibilities and NEVER ever merge them again , even if it was cool, nice, soft and puffy

Re: [Pharo-dev] Transcript needs your love

2015-05-11 Thread Igor Stasenko
Speaking about penetrating multiple layers.. Lemme tell you the story: One day, a brave hero (let's call him Stef :) ) decided to save the world... err improve Transcript and make it thread-safe. And everything vent well until he stumbled upon #endEntry logic, because he was unable to figure out

Re: [Pharo-dev] Lighthouse example throw segfault

2015-05-11 Thread stepharo
Hi alejandro which image? which version? which latest vm? do you see a pattern :) Stef Le 11/5/15 20:37, Alejandro Infante a écrit : Hello, When I try to open the image from Jenkins the screen goes black for 5 seconds and then it throws a segmentation fault in my Mac. I use a Macbook air

Re: [Pharo-dev] On Missing Class: Why not describe error?

2015-05-11 Thread Sean P. DeNigris
Sean P. DeNigris wrote Any reason not to make it... Issue 15524: CodeImport: Better info on non-existent behavior https://pharo.fogbugz.com/default.asp?15524 Fix in inbox: SLICE-Issue-15524-CodeImport-Better-info-on-non-existent-behavior-SeanDeNigris.1 - Put which class and which label in the

Re: [Pharo-dev] Lighthouse example throw segfault

2015-05-11 Thread Alejandro Infante
On May 11, 2015, at 4:43 PM, stepharo steph...@free.fr wrote: Hi alejandro which image? — For the already built image, I used the version of May 9th (Build #467) and is based on Pharo 3 — For the one that I loaded the stable code using the last ConfigurationOf (commit number 13) on a

Re: [Pharo-dev] Transcript needs your love

2015-05-11 Thread Alain Rastoul
Le 10/05/2015 13:15, Esteban Lorenzano a écrit : On 10 May 2015, at 13:10, stepharo steph...@free.fr wrote: Why we cannot use the of Juan? you can type in it, make do it, etc. (just like now) Hi Esteban, did you try it in pharo ? It took me some time to read this whole thread

Re: [Pharo-dev] Lighthouse example throw segfault

2015-05-11 Thread Nicolai Hess
I don't know what lighthouse is about, but at least on windows, it does not segfault. But we have at least two issues of fogbugz about fullscreen on a mac: 12648 https://pharo.fogbugz.com/default.asp?12648 Full screen on Mac OS X 10.9 partially broken 13995

Re: [Pharo-dev] Lighthouse example throw segfault

2015-05-11 Thread Alejandro Infante
Lighthouse is an example about how to create a web application with seaside and good practices. I have no idea why it uses fullscreen, maybe there is something I’m missing. Well, the example is really cool and it had helped me to understand some stuff. Thank you Torsten for the app!! Cheers,

Re: [Pharo-dev] Transcript needs your love

2015-05-11 Thread David T. Lewis
On Mon, May 11, 2015 at 11:52:37PM +0200, Igor Stasenko wrote: On 11 May 2015 at 22:54, Igor Stasenko siguc...@gmail.com wrote: Speaking about penetrating multiple layers.. Lemme tell you the story: One day, a brave hero (let's call him Stef :) ) decided to save the world... err

Re: [Pharo-dev] Transcript needs your love

2015-05-11 Thread Alain Rastoul
Le 11/05/2015 23:32, Igor Stasenko a écrit : Don't think i am overreacting on Eliot's overreacting whatever.. We're a good friends, and pike fight on mailing list is not gonna change that. I just stating my POV, he stating own.. and that's how i see it, if you remove the giggles:). Good to

Re: [Pharo-dev] could the log message be placed on top of the files in the commit?

2015-05-11 Thread Nicolas Cellier
2015-05-03 21:56 GMT+02:00 Nicolas Cellier nicolas.cellier.aka.n...@gmail.com: 2015-05-03 18:54 GMT+02:00 Esteban Lorenzano esteba...@gmail.com: do you guys know that if you press in the link provided, for example:

[Pharo-dev] Pharo Catalog Job and 4.0

2015-05-11 Thread Sean P. DeNigris
It seems that https://ci.inria.fr/pharo-contribution/job/PharoProjectCatalog loads the latest Pier-Catalog from http://smalltalkhub.com/mc/DamienCassou/Pier-Gutemberg/main A couple of questions: - It seems like the latest CatalogBuilder#buildMapForRepository does not check Pharo 4.0 or 5.0.

[Pharo-dev] Loading Pillar in 4.0

2015-05-11 Thread Sean P. DeNigris
Loading from the Configuration Browser gives: This package depends on the following classes: PRWarning You must resolve these dependencies before you will be able to load these definitions: PRParameterWarning - Cheers, Sean -- View this message in context: