[Pharo-users] Possible problem with WAFileMetadataLibrary

2013-06-29 Thread Thushar G R
Hi, I was using WAFileMetadataLibrary and i found a possible issue with* **addFileAt: aPath relativeToRootDirectory: relativeRootDirectory*. The problem i encountered is that some css with(../img/someImage.png) was getting pointed towards *http://localhost:8080/files/img/someImage.png* rather

[Pharo-users] unstable build

2013-06-29 Thread Camillo Bruni
I am not very happy with the current build it seems to be quite random when it comes to test results. I ran the tests multiple times and I get different outcomes each time. That said, I need somebody to pair program with me on the monkey since there is currently a non-deterministic bug present

Re: [Pharo-users] trait question

2013-06-29 Thread Igor Stasenko
On 29 June 2013 20:12, Camillo Bruni camillobr...@gmail.com wrote: Working on the new class builder I have a hard time figuring out the full trait semantics. If I use a trait on instance side, does that imply that its classTrait on the metaclass? yes. Trait resembles same dual property as

Re: [Pharo-users] trait question

2013-06-29 Thread Stéphane Ducasse
On Jun 29, 2013, at 8:19 PM, Igor Stasenko siguc...@gmail.com wrote: On 29 June 2013 20:12, Camillo Bruni camillobr...@gmail.com wrote: Working on the new class builder I have a hard time figuring out the full trait semantics. If I use a trait on instance side, does that imply that its

Re: [Pharo-users] unstable build

2013-06-29 Thread Camillo Bruni
On 2013-06-29, at 20:14, Igor Stasenko siguc...@gmail.com wrote: On 29 June 2013 17:48, Camillo Bruni camillobr...@gmail.com wrote: I am not very happy with the current build it seems to be quite random when it comes to test results. I ran the tests multiple times and I get different

[Pharo-users] How to do this in Pharo 2?

2013-06-29 Thread Donald
Logs uses a package called Bindings-Core-tbn.1 that has this description: /Name: Bindings-Core-tbn.1// //Author: tbn// //Time: 11 July 2012, 9:46:06.521 am// //UUID: 2c28d2f3-610f-a54d-82b1-f421a40394ce// //Ancestors: // // //Initial version from Benoit, see

Re: [Pharo-users] How to do this in Pharo 2?

2013-06-29 Thread Camillo Bruni
look at String #format: On 2013-06-29, at 22:26, Donald dm...@instantiations.com wrote: Logs uses a package called Bindings-Core-tbn.1 that has this description: /Name: Bindings-Core-tbn.1// //Author: tbn// //Time: 11 July 2012, 9:46:06.521 am// //UUID:

Re: [Pharo-users] trait question

2013-06-29 Thread Camillo Bruni
On 2013-06-29, at 22:32, Igor Stasenko siguc...@gmail.com wrote: On 29 June 2013 21:21, Stéphane Ducasse stephane.duca...@inria.fr wrote: On Jun 29, 2013, at 8:19 PM, Igor Stasenko siguc...@gmail.com wrote: On 29 June 2013 20:12, Camillo Bruni camillobr...@gmail.com wrote: Working on the

Re: [Pharo-users] Remove a dependency (was Re: How to do this in Pharo 2?)

2013-06-29 Thread Mariano Martinez Peck
Hi Donald, I guess there should be a ConfigurationOfLog4j (or similar name) that defines the versions, the baselines, dependencies, etc. Imagine this (similarly) as a ConfigurationMap. So I guess what you have to do is to take ConfigurationOfLog4j, edit the necessary #baselineXXX method and

Re: [Pharo-users] trait question

2013-06-29 Thread Camillo Bruni
so let's discuss that on monday with the trait specialists Damien et Sebastian :) On 2013-06-29, at 23:34, Igor Stasenko siguc...@gmail.com wrote: yes, i don't know if it good or bad, but i'd rather prefer that traits applied to Behavior, but not to Class (which has two entangled behaviors).

Re: [Pharo-users] Remove a dependency (was Re: How to do this in Pharo 2?)

2013-06-29 Thread Donald
On 6/29/2013 7:00 PM, Mariano Martinez Peck wrote: Hi Donald, I guess there should be a ConfigurationOfLog4j (or similar name) that defines the versions, the baselines, dependencies, etc. Imagine this (similarly) as a ConfigurationMap. So I guess what you have to do is to take

Re: [Pharo-users] Remove a dependency (was Re: How to do this in Pharo 2?)

2013-06-29 Thread Paul DeBruicker
In Pharo2 you can hit shift+enter to open the 'spotlight' which will search for classes and method implementors. Start typing the class name into the box at the top right of the window. It will then start to autocomplete. You can press the down arrow key to select the class or method name and

Re: [Pharo-users] Remove a dependency (was Re: How to do this in Pharo 2?)

2013-06-29 Thread Paul DeBruicker
And you're probably looking for ConfigurationOfLog4s rather than Log4j. On 06/29/2013 04:04 PM, Donald wrote: On 6/29/2013 7:00 PM, Mariano Martinez Peck wrote: Hi Donald, I guess there should be a ConfigurationOfLog4j (or similar name) that defines the versions, the baselines,

Re: [Pharo-users] Remove a dependency (was Re: How to do this in Pharo 2?)

2013-06-29 Thread Camillo Bruni
On 2013-06-30, at 00:56, Camillo Bruni camillobr...@gmail.com wrote: On 2013-06-30, at 00:47, Donald dm...@instantiations.com wrote: On 6/29/2013 4:42 PM, Camillo Bruni wrote: look at String #format: ok, got that fixed. how do I remove the log4s dependency on Bindings-Core-tbn.1?

Re: [Pharo-users] Remove a dependency (was Re: How to do this in Pharo 2?)

2013-06-29 Thread Mariano Martinez Peck
On Sat, Jun 29, 2013 at 8:13 PM, Camillo Bruni camillobr...@gmail.comwrote: On 2013-06-30, at 00:56, Camillo Bruni camillobr...@gmail.com wrote: On 2013-06-30, at 00:47, Donald dm...@instantiations.com wrote: On 6/29/2013 4:42 PM, Camillo Bruni wrote: look at String #format: ok,