eyesee

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
15 messages Options
Reply | Threaded
Open this post in threaded view
|

eyesee

abergel
Hi!

I just tried it in a Pharo 1.2 and got 11 errors and 1 failure among the 13 tests.
Apparently #displayString is used a bit everywhere. This method does not exist in Pharo.

After having added #displayString on Object, I got other problem with the examples: #any is not understood by a collection, it is invoked in Collection>>minValue.

After changing #any by #anyOne, I was able to get some nice graphics. There are other bugs from here, but I will report them after....

http://code.google.com/p/moose-technology/issues/detail?id=580

Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.





_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: eyesee

Andre Hora
Hello,

I just removed the dependence to Grease and changed others small things described by Alex. Now we have 12 tests green in Pharo 1.2 and 1.2.1.
The test not green is ESExamplesTest>>testSmoke that run all the examples. We still have a dependence to Moose. More specifically:
Color>>lightColors
Color>>strongColors
MalArrayMatrix

To become independent of Moose and all the things work in Pharo we need just provide this classe and methods in EyeSee. Should I do that?

On Mon, Apr 11, 2011 at 6:41 PM, Alexandre Bergel <[hidden email]> wrote:
Hi!

I just tried it in a Pharo 1.2 and got 11 errors and 1 failure among the 13 tests.
Apparently #displayString is used a bit everywhere. This method does not exist in Pharo.

After having added #displayString on Object, I got other problem with the examples: #any is not understood by a collection, it is invoked in Collection>>minValue.

After changing #any by #anyOne, I was able to get some nice graphics. There are other bugs from here, but I will report them after....

http://code.google.com/p/moose-technology/issues/detail?id=580

Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.





_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev



--
Andre Hora


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: eyesee

Tudor Girba
Hi Andre,

On 11 Apr 2011, at 23:21, Andre Hora wrote:

> Hello,
>
> I just removed the dependence to Grease and changed others small things described by Alex. Now we have 12 tests green in Pharo 1.2 and 1.2.1.

Great!

> The test not green is ESExamplesTest>>testSmoke that run all the examples. We still have a dependence to Moose. More specifically:
> Color>>lightColors
> Color>>strongColors
> MalArrayMatrix
>
> To become independent of Moose and all the things work in Pharo we need just provide this classe and methods in EyeSee. Should I do that?

Yes, please :). Especially the colors should be preserved in some utility class. Ideally, they should make their way into Pharo.

Cheers,
Doru



> On Mon, Apr 11, 2011 at 6:41 PM, Alexandre Bergel <[hidden email]> wrote:
> Hi!
>
> I just tried it in a Pharo 1.2 and got 11 errors and 1 failure among the 13 tests.
> Apparently #displayString is used a bit everywhere. This method does not exist in Pharo.
>
> After having added #displayString on Object, I got other problem with the examples: #any is not understood by a collection, it is invoked in Collection>>minValue.
>
> After changing #any by #anyOne, I was able to get some nice graphics. There are other bugs from here, but I will report them after....
>
> http://code.google.com/p/moose-technology/issues/detail?id=580
>
> Cheers,
> Alexandre
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel  http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
>
>
> --
> Andre Hora
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

--
www.tudorgirba.com

"Yesterday is a fact.
 Tomorrow is a possibility.
 Today is a challenge."




_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: eyesee

abergel
In reply to this post by Andre Hora
Excellent!

> Color>>lightColors
> Color>>strongColors
These two are part of Mondrian. Best would be to make these extensions part of the base image.

There is a refresh bug apparently. When I open an example, part of the drawing is not done. Do you see it?

Cheers,
Alexandre

On 11 Apr 2011, at 17:21, Andre Hora wrote:

> Hello,
>
> I just removed the dependence to Grease and changed others small things described by Alex. Now we have 12 tests green in Pharo 1.2 and 1.2.1.
> The test not green is ESExamplesTest>>testSmoke that run all the examples. We still have a dependence to Moose. More specifically:
> Color>>lightColors
> Color>>strongColors
> MalArrayMatrix
>
> To become independent of Moose and all the things work in Pharo we need just provide this classe and methods in EyeSee. Should I do that?
>
> On Mon, Apr 11, 2011 at 6:41 PM, Alexandre Bergel <[hidden email]> wrote:
> Hi!
>
> I just tried it in a Pharo 1.2 and got 11 errors and 1 failure among the 13 tests.
> Apparently #displayString is used a bit everywhere. This method does not exist in Pharo.
>
> After having added #displayString on Object, I got other problem with the examples: #any is not understood by a collection, it is invoked in Collection>>minValue.
>
> After changing #any by #anyOne, I was able to get some nice graphics. There are other bugs from here, but I will report them after....
>
> http://code.google.com/p/moose-technology/issues/detail?id=580
>
> Cheers,
> Alexandre
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel  http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
>
>
> --
> Andre Hora
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.





_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: eyesee

abergel
While we are talking about EyeSee, let me do a bit of publicity for my own work.
It would be cool to have a new version for each a nice traceability of EyeSee's versions. Especially that it has been split into many packages.
MetacelloBrowser should make the thing simple.

Alexandre


On 11 Apr 2011, at 18:30, Alexandre Bergel wrote:

> Excellent!
>
>> Color>>lightColors
>> Color>>strongColors
> These two are part of Mondrian. Best would be to make these extensions part of the base image.
>
> There is a refresh bug apparently. When I open an example, part of the drawing is not done. Do you see it?
>
> Cheers,
> Alexandre
>
> On 11 Apr 2011, at 17:21, Andre Hora wrote:
>
>> Hello,
>>
>> I just removed the dependence to Grease and changed others small things described by Alex. Now we have 12 tests green in Pharo 1.2 and 1.2.1.
>> The test not green is ESExamplesTest>>testSmoke that run all the examples. We still have a dependence to Moose. More specifically:
>> Color>>lightColors
>> Color>>strongColors
>> MalArrayMatrix
>>
>> To become independent of Moose and all the things work in Pharo we need just provide this classe and methods in EyeSee. Should I do that?
>>
>> On Mon, Apr 11, 2011 at 6:41 PM, Alexandre Bergel <[hidden email]> wrote:
>> Hi!
>>
>> I just tried it in a Pharo 1.2 and got 11 errors and 1 failure among the 13 tests.
>> Apparently #displayString is used a bit everywhere. This method does not exist in Pharo.
>>
>> After having added #displayString on Object, I got other problem with the examples: #any is not understood by a collection, it is invoked in Collection>>minValue.
>>
>> After changing #any by #anyOne, I was able to get some nice graphics. There are other bugs from here, but I will report them after....
>>
>> http://code.google.com/p/moose-technology/issues/detail?id=580
>>
>> Cheers,
>> Alexandre
>> --
>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>> Alexandre Bergel  http://www.bergel.eu
>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>
>>
>>
>>
>>
>> _______________________________________________
>> Moose-dev mailing list
>> [hidden email]
>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>
>>
>>
>> --
>> Andre Hora
>>
>> _______________________________________________
>> Moose-dev mailing list
>> [hidden email]
>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel  http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
>

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.





_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: eyesee

hernanmd
Hi Alex,

Do you have a ConfigurationOf or Gofer script to try EyeSee in
Pharo-Core 1.2.1 without having to install Moose?
Cheers,

Hernán

2011/4/12 Alexandre Bergel <[hidden email]>:

> While we are talking about EyeSee, let me do a bit of publicity for my own work.
> It would be cool to have a new version for each a nice traceability of EyeSee's versions. Especially that it has been split into many packages.
> MetacelloBrowser should make the thing simple.
>
> Alexandre
>
>
> On 11 Apr 2011, at 18:30, Alexandre Bergel wrote:
>
>> Excellent!
>>
>>> Color>>lightColors
>>> Color>>strongColors
>> These two are part of Mondrian. Best would be to make these extensions part of the base image.
>>
>> There is a refresh bug apparently. When I open an example, part of the drawing is not done. Do you see it?
>>
>> Cheers,
>> Alexandre
>>
>> On 11 Apr 2011, at 17:21, Andre Hora wrote:
>>
>>> Hello,
>>>
>>> I just removed the dependence to Grease and changed others small things described by Alex. Now we have 12 tests green in Pharo 1.2 and 1.2.1.
>>> The test not green is ESExamplesTest>>testSmoke that run all the examples. We still have a dependence to Moose. More specifically:
>>> Color>>lightColors
>>> Color>>strongColors
>>> MalArrayMatrix
>>>
>>> To become independent of Moose and all the things work in Pharo we need just provide this classe and methods in EyeSee. Should I do that?
>>>
>>> On Mon, Apr 11, 2011 at 6:41 PM, Alexandre Bergel <[hidden email]> wrote:
>>> Hi!
>>>
>>> I just tried it in a Pharo 1.2 and got 11 errors and 1 failure among the 13 tests.
>>> Apparently #displayString is used a bit everywhere. This method does not exist in Pharo.
>>>
>>> After having added #displayString on Object, I got other problem with the examples: #any is not understood by a collection, it is invoked in Collection>>minValue.
>>>
>>> After changing #any by #anyOne, I was able to get some nice graphics. There are other bugs from here, but I will report them after....
>>>
>>> http://code.google.com/p/moose-technology/issues/detail?id=580
>>>
>>> Cheers,
>>> Alexandre
>>> --
>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>> Alexandre Bergel  http://www.bergel.eu
>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>
>>>
>>>
>>>
>>>
>>> _______________________________________________
>>> Moose-dev mailing list
>>> [hidden email]
>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>
>>>
>>>
>>> --
>>> Andre Hora
>>>
>>> _______________________________________________
>>> Moose-dev mailing list
>>> [hidden email]
>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>
>> --
>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>> Alexandre Bergel  http://www.bergel.eu
>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>
>>
>>
>>
>>
>
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel  http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: eyesee

Tudor Girba
Try:

Gofer it
   squeaksource: 'EyeSee';
   package: 'ConfigurationOfEyeSee';
   load.
(Smalltalk at: #ConfigurationOfEyeSee) loadDefault

Cheers,
Doru



On 12 Apr 2011, at 08:43, Hernán Morales Durand wrote:

> Hi Alex,
>
> Do you have a ConfigurationOf or Gofer script to try EyeSee in
> Pharo-Core 1.2.1 without having to install Moose?
> Cheers,
>
> Hernán
>
> 2011/4/12 Alexandre Bergel <[hidden email]>:
>> While we are talking about EyeSee, let me do a bit of publicity for my own work.
>> It would be cool to have a new version for each a nice traceability of EyeSee's versions. Especially that it has been split into many packages.
>> MetacelloBrowser should make the thing simple.
>>
>> Alexandre
>>
>>
>> On 11 Apr 2011, at 18:30, Alexandre Bergel wrote:
>>
>>> Excellent!
>>>
>>>> Color>>lightColors
>>>> Color>>strongColors
>>> These two are part of Mondrian. Best would be to make these extensions part of the base image.
>>>
>>> There is a refresh bug apparently. When I open an example, part of the drawing is not done. Do you see it?
>>>
>>> Cheers,
>>> Alexandre
>>>
>>> On 11 Apr 2011, at 17:21, Andre Hora wrote:
>>>
>>>> Hello,
>>>>
>>>> I just removed the dependence to Grease and changed others small things described by Alex. Now we have 12 tests green in Pharo 1.2 and 1.2.1.
>>>> The test not green is ESExamplesTest>>testSmoke that run all the examples. We still have a dependence to Moose. More specifically:
>>>> Color>>lightColors
>>>> Color>>strongColors
>>>> MalArrayMatrix
>>>>
>>>> To become independent of Moose and all the things work in Pharo we need just provide this classe and methods in EyeSee. Should I do that?
>>>>
>>>> On Mon, Apr 11, 2011 at 6:41 PM, Alexandre Bergel <[hidden email]> wrote:
>>>> Hi!
>>>>
>>>> I just tried it in a Pharo 1.2 and got 11 errors and 1 failure among the 13 tests.
>>>> Apparently #displayString is used a bit everywhere. This method does not exist in Pharo.
>>>>
>>>> After having added #displayString on Object, I got other problem with the examples: #any is not understood by a collection, it is invoked in Collection>>minValue.
>>>>
>>>> After changing #any by #anyOne, I was able to get some nice graphics. There are other bugs from here, but I will report them after....
>>>>
>>>> http://code.google.com/p/moose-technology/issues/detail?id=580
>>>>
>>>> Cheers,
>>>> Alexandre
>>>> --
>>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>>> Alexandre Bergel  http://www.bergel.eu
>>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> _______________________________________________
>>>> Moose-dev mailing list
>>>> [hidden email]
>>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>>
>>>>
>>>>
>>>> --
>>>> Andre Hora
>>>>
>>>> _______________________________________________
>>>> Moose-dev mailing list
>>>> [hidden email]
>>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>
>>> --
>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>> Alexandre Bergel  http://www.bergel.eu
>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>
>>>
>>>
>>>
>>>
>>
>> --
>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>> Alexandre Bergel  http://www.bergel.eu
>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>
>>
>>
>>
>>
>> _______________________________________________
>> Moose-dev mailing list
>> [hidden email]
>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

--
www.tudorgirba.com

"Beauty is where we see it."




_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: eyesee

abergel
The 13 tests are green. Cool
As I said, it would be cool to have a version for each increment, even minor.
Since many of us are doing research on software evolution, we need material.

Cheers,
Alexandre


On 12 Apr 2011, at 02:55, Tudor Girba wrote:

> Try:
>
> Gofer it
>   squeaksource: 'EyeSee';
>   package: 'ConfigurationOfEyeSee';
>   load.
> (Smalltalk at: #ConfigurationOfEyeSee) loadDefault
>
> Cheers,
> Doru
>
>
>
> On 12 Apr 2011, at 08:43, Hernán Morales Durand wrote:
>
>> Hi Alex,
>>
>> Do you have a ConfigurationOf or Gofer script to try EyeSee in
>> Pharo-Core 1.2.1 without having to install Moose?
>> Cheers,
>>
>> Hernán
>>
>> 2011/4/12 Alexandre Bergel <[hidden email]>:
>>> While we are talking about EyeSee, let me do a bit of publicity for my own work.
>>> It would be cool to have a new version for each a nice traceability of EyeSee's versions. Especially that it has been split into many packages.
>>> MetacelloBrowser should make the thing simple.
>>>
>>> Alexandre
>>>
>>>
>>> On 11 Apr 2011, at 18:30, Alexandre Bergel wrote:
>>>
>>>> Excellent!
>>>>
>>>>> Color>>lightColors
>>>>> Color>>strongColors
>>>> These two are part of Mondrian. Best would be to make these extensions part of the base image.
>>>>
>>>> There is a refresh bug apparently. When I open an example, part of the drawing is not done. Do you see it?
>>>>
>>>> Cheers,
>>>> Alexandre
>>>>
>>>> On 11 Apr 2011, at 17:21, Andre Hora wrote:
>>>>
>>>>> Hello,
>>>>>
>>>>> I just removed the dependence to Grease and changed others small things described by Alex. Now we have 12 tests green in Pharo 1.2 and 1.2.1.
>>>>> The test not green is ESExamplesTest>>testSmoke that run all the examples. We still have a dependence to Moose. More specifically:
>>>>> Color>>lightColors
>>>>> Color>>strongColors
>>>>> MalArrayMatrix
>>>>>
>>>>> To become independent of Moose and all the things work in Pharo we need just provide this classe and methods in EyeSee. Should I do that?
>>>>>
>>>>> On Mon, Apr 11, 2011 at 6:41 PM, Alexandre Bergel <[hidden email]> wrote:
>>>>> Hi!
>>>>>
>>>>> I just tried it in a Pharo 1.2 and got 11 errors and 1 failure among the 13 tests.
>>>>> Apparently #displayString is used a bit everywhere. This method does not exist in Pharo.
>>>>>
>>>>> After having added #displayString on Object, I got other problem with the examples: #any is not understood by a collection, it is invoked in Collection>>minValue.
>>>>>
>>>>> After changing #any by #anyOne, I was able to get some nice graphics. There are other bugs from here, but I will report them after....
>>>>>
>>>>> http://code.google.com/p/moose-technology/issues/detail?id=580
>>>>>
>>>>> Cheers,
>>>>> Alexandre
>>>>> --
>>>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>>>> Alexandre Bergel  http://www.bergel.eu
>>>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> _______________________________________________
>>>>> Moose-dev mailing list
>>>>> [hidden email]
>>>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Andre Hora
>>>>>
>>>>> _______________________________________________
>>>>> Moose-dev mailing list
>>>>> [hidden email]
>>>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>>
>>>> --
>>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>>> Alexandre Bergel  http://www.bergel.eu
>>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>>
>>>>
>>>>
>>>>
>>>>
>>>
>>> --
>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>> Alexandre Bergel  http://www.bergel.eu
>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>
>>>
>>>
>>>
>>>
>>> _______________________________________________
>>> Moose-dev mailing list
>>> [hidden email]
>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>
>>
>> _______________________________________________
>> Moose-dev mailing list
>> [hidden email]
>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
> --
> www.tudorgirba.com
>
> "Beauty is where we see it."
>
>
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.






_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: eyesee

Tudor Girba
I am trying to use it, but the problems are:
- knowing what else was committed in the meantime, and
- merging

Cheers,
Doru


On 12 Apr 2011, at 15:08, Alexandre Bergel wrote:

> The 13 tests are green. Cool
> As I said, it would be cool to have a version for each increment, even minor.
> Since many of us are doing research on software evolution, we need material.
>
> Cheers,
> Alexandre
>
>
> On 12 Apr 2011, at 02:55, Tudor Girba wrote:
>
>> Try:
>>
>> Gofer it
>>  squeaksource: 'EyeSee';
>>  package: 'ConfigurationOfEyeSee';
>>  load.
>> (Smalltalk at: #ConfigurationOfEyeSee) loadDefault
>>
>> Cheers,
>> Doru
>>
>>
>>
>> On 12 Apr 2011, at 08:43, Hernán Morales Durand wrote:
>>
>>> Hi Alex,
>>>
>>> Do you have a ConfigurationOf or Gofer script to try EyeSee in
>>> Pharo-Core 1.2.1 without having to install Moose?
>>> Cheers,
>>>
>>> Hernán
>>>
>>> 2011/4/12 Alexandre Bergel <[hidden email]>:
>>>> While we are talking about EyeSee, let me do a bit of publicity for my own work.
>>>> It would be cool to have a new version for each a nice traceability of EyeSee's versions. Especially that it has been split into many packages.
>>>> MetacelloBrowser should make the thing simple.
>>>>
>>>> Alexandre
>>>>
>>>>
>>>> On 11 Apr 2011, at 18:30, Alexandre Bergel wrote:
>>>>
>>>>> Excellent!
>>>>>
>>>>>> Color>>lightColors
>>>>>> Color>>strongColors
>>>>> These two are part of Mondrian. Best would be to make these extensions part of the base image.
>>>>>
>>>>> There is a refresh bug apparently. When I open an example, part of the drawing is not done. Do you see it?
>>>>>
>>>>> Cheers,
>>>>> Alexandre
>>>>>
>>>>> On 11 Apr 2011, at 17:21, Andre Hora wrote:
>>>>>
>>>>>> Hello,
>>>>>>
>>>>>> I just removed the dependence to Grease and changed others small things described by Alex. Now we have 12 tests green in Pharo 1.2 and 1.2.1.
>>>>>> The test not green is ESExamplesTest>>testSmoke that run all the examples. We still have a dependence to Moose. More specifically:
>>>>>> Color>>lightColors
>>>>>> Color>>strongColors
>>>>>> MalArrayMatrix
>>>>>>
>>>>>> To become independent of Moose and all the things work in Pharo we need just provide this classe and methods in EyeSee. Should I do that?
>>>>>>
>>>>>> On Mon, Apr 11, 2011 at 6:41 PM, Alexandre Bergel <[hidden email]> wrote:
>>>>>> Hi!
>>>>>>
>>>>>> I just tried it in a Pharo 1.2 and got 11 errors and 1 failure among the 13 tests.
>>>>>> Apparently #displayString is used a bit everywhere. This method does not exist in Pharo.
>>>>>>
>>>>>> After having added #displayString on Object, I got other problem with the examples: #any is not understood by a collection, it is invoked in Collection>>minValue.
>>>>>>
>>>>>> After changing #any by #anyOne, I was able to get some nice graphics. There are other bugs from here, but I will report them after....
>>>>>>
>>>>>> http://code.google.com/p/moose-technology/issues/detail?id=580
>>>>>>
>>>>>> Cheers,
>>>>>> Alexandre
>>>>>> --
>>>>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>>>>> Alexandre Bergel  http://www.bergel.eu
>>>>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> _______________________________________________
>>>>>> Moose-dev mailing list
>>>>>> [hidden email]
>>>>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>>>>
>>>>>>
>>>>>>
>>>>>> --
>>>>>> Andre Hora
>>>>>>
>>>>>> _______________________________________________
>>>>>> Moose-dev mailing list
>>>>>> [hidden email]
>>>>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>>>
>>>>> --
>>>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>>>> Alexandre Bergel  http://www.bergel.eu
>>>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>
>>>> --
>>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>>> Alexandre Bergel  http://www.bergel.eu
>>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> _______________________________________________
>>>> Moose-dev mailing list
>>>> [hidden email]
>>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>>
>>>
>>> _______________________________________________
>>> Moose-dev mailing list
>>> [hidden email]
>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>
>> --
>> www.tudorgirba.com
>>
>> "Beauty is where we see it."
>>
>>
>>
>>
>> _______________________________________________
>> Moose-dev mailing list
>> [hidden email]
>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel  http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

--
www.tudorgirba.com

"Every thing should have the right to be different."




_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: eyesee

abergel
> I am trying to use it, but the problems are:
> - knowing what else was committed in the meantime, and
> - merging

Yes, unfortunately there is no immediate and automatic solution for this.
But really, have a trace at a fine grain is important. I agree with Dale that merging and concurrent saving are important and go a bit against doing a lot of commit. But I have more than 50 versions of Mondrian, and this is cool. I really would like to do the same for moose.

Cheers,
Alexandre


>
>
>
> On 12 Apr 2011, at 15:08, Alexandre Bergel wrote:
>
>> The 13 tests are green. Cool
>> As I said, it would be cool to have a version for each increment, even minor.
>> Since many of us are doing research on software evolution, we need material.
>>
>> Cheers,
>> Alexandre
>>
>>
>> On 12 Apr 2011, at 02:55, Tudor Girba wrote:
>>
>>> Try:
>>>
>>> Gofer it
>>> squeaksource: 'EyeSee';
>>> package: 'ConfigurationOfEyeSee';
>>> load.
>>> (Smalltalk at: #ConfigurationOfEyeSee) loadDefault
>>>
>>> Cheers,
>>> Doru
>>>
>>>
>>>
>>> On 12 Apr 2011, at 08:43, Hernán Morales Durand wrote:
>>>
>>>> Hi Alex,
>>>>
>>>> Do you have a ConfigurationOf or Gofer script to try EyeSee in
>>>> Pharo-Core 1.2.1 without having to install Moose?
>>>> Cheers,
>>>>
>>>> Hernán
>>>>
>>>> 2011/4/12 Alexandre Bergel <[hidden email]>:
>>>>> While we are talking about EyeSee, let me do a bit of publicity for my own work.
>>>>> It would be cool to have a new version for each a nice traceability of EyeSee's versions. Especially that it has been split into many packages.
>>>>> MetacelloBrowser should make the thing simple.
>>>>>
>>>>> Alexandre
>>>>>
>>>>>
>>>>> On 11 Apr 2011, at 18:30, Alexandre Bergel wrote:
>>>>>
>>>>>> Excellent!
>>>>>>
>>>>>>> Color>>lightColors
>>>>>>> Color>>strongColors
>>>>>> These two are part of Mondrian. Best would be to make these extensions part of the base image.
>>>>>>
>>>>>> There is a refresh bug apparently. When I open an example, part of the drawing is not done. Do you see it?
>>>>>>
>>>>>> Cheers,
>>>>>> Alexandre
>>>>>>
>>>>>> On 11 Apr 2011, at 17:21, Andre Hora wrote:
>>>>>>
>>>>>>> Hello,
>>>>>>>
>>>>>>> I just removed the dependence to Grease and changed others small things described by Alex. Now we have 12 tests green in Pharo 1.2 and 1.2.1.
>>>>>>> The test not green is ESExamplesTest>>testSmoke that run all the examples. We still have a dependence to Moose. More specifically:
>>>>>>> Color>>lightColors
>>>>>>> Color>>strongColors
>>>>>>> MalArrayMatrix
>>>>>>>
>>>>>>> To become independent of Moose and all the things work in Pharo we need just provide this classe and methods in EyeSee. Should I do that?
>>>>>>>
>>>>>>> On Mon, Apr 11, 2011 at 6:41 PM, Alexandre Bergel <[hidden email]> wrote:
>>>>>>> Hi!
>>>>>>>
>>>>>>> I just tried it in a Pharo 1.2 and got 11 errors and 1 failure among the 13 tests.
>>>>>>> Apparently #displayString is used a bit everywhere. This method does not exist in Pharo.
>>>>>>>
>>>>>>> After having added #displayString on Object, I got other problem with the examples: #any is not understood by a collection, it is invoked in Collection>>minValue.
>>>>>>>
>>>>>>> After changing #any by #anyOne, I was able to get some nice graphics. There are other bugs from here, but I will report them after....
>>>>>>>
>>>>>>> http://code.google.com/p/moose-technology/issues/detail?id=580
>>>>>>>
>>>>>>> Cheers,
>>>>>>> Alexandre
>>>>>>> --
>>>>>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>>>>>> Alexandre Bergel  http://www.bergel.eu
>>>>>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> _______________________________________________
>>>>>>> Moose-dev mailing list
>>>>>>> [hidden email]
>>>>>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> --
>>>>>>> Andre Hora
>>>>>>>
>>>>>>> _______________________________________________
>>>>>>> Moose-dev mailing list
>>>>>>> [hidden email]
>>>>>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>>>>
>>>>>> --
>>>>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>>>>> Alexandre Bergel  http://www.bergel.eu
>>>>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>> --
>>>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>>>> Alexandre Bergel  http://www.bergel.eu
>>>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> _______________________________________________
>>>>> Moose-dev mailing list
>>>>> [hidden email]
>>>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>>>
>>>>
>>>> _______________________________________________
>>>> Moose-dev mailing list
>>>> [hidden email]
>>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>
>>> --
>>> www.tudorgirba.com
>>>
>>> "Beauty is where we see it."
>>>
>>>
>>>
>>>
>>> _______________________________________________
>>> Moose-dev mailing list
>>> [hidden email]
>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>
>> --
>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>> Alexandre Bergel  http://www.bergel.eu
>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>
>>
>>
>>
>>
>>
>> _______________________________________________
>> Moose-dev mailing list
>> [hidden email]
>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
> --
> www.tudorgirba.com
>
> "Every thing should have the right to be different."
>
>
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.






_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: eyesee

hernanmd
In reply to this post by Tudor Girba
Thanks!

2011/4/12 Tudor Girba <[hidden email]>:

> Try:
>
> Gofer it
>   squeaksource: 'EyeSee';
>   package: 'ConfigurationOfEyeSee';
>   load.
> (Smalltalk at: #ConfigurationOfEyeSee) loadDefault
>
> Cheers,
> Doru
>
>
>
> On 12 Apr 2011, at 08:43, Hernán Morales Durand wrote:
>
>> Hi Alex,
>>
>> Do you have a ConfigurationOf or Gofer script to try EyeSee in
>> Pharo-Core 1.2.1 without having to install Moose?
>> Cheers,
>>
>> Hernán
>>
>> 2011/4/12 Alexandre Bergel <[hidden email]>:
>>> While we are talking about EyeSee, let me do a bit of publicity for my own work.
>>> It would be cool to have a new version for each a nice traceability of EyeSee's versions. Especially that it has been split into many packages.
>>> MetacelloBrowser should make the thing simple.
>>>
>>> Alexandre
>>>
>>>
>>> On 11 Apr 2011, at 18:30, Alexandre Bergel wrote:
>>>
>>>> Excellent!
>>>>
>>>>> Color>>lightColors
>>>>> Color>>strongColors
>>>> These two are part of Mondrian. Best would be to make these extensions part of the base image.
>>>>
>>>> There is a refresh bug apparently. When I open an example, part of the drawing is not done. Do you see it?
>>>>
>>>> Cheers,
>>>> Alexandre
>>>>
>>>> On 11 Apr 2011, at 17:21, Andre Hora wrote:
>>>>
>>>>> Hello,
>>>>>
>>>>> I just removed the dependence to Grease and changed others small things described by Alex. Now we have 12 tests green in Pharo 1.2 and 1.2.1.
>>>>> The test not green is ESExamplesTest>>testSmoke that run all the examples. We still have a dependence to Moose. More specifically:
>>>>> Color>>lightColors
>>>>> Color>>strongColors
>>>>> MalArrayMatrix
>>>>>
>>>>> To become independent of Moose and all the things work in Pharo we need just provide this classe and methods in EyeSee. Should I do that?
>>>>>
>>>>> On Mon, Apr 11, 2011 at 6:41 PM, Alexandre Bergel <[hidden email]> wrote:
>>>>> Hi!
>>>>>
>>>>> I just tried it in a Pharo 1.2 and got 11 errors and 1 failure among the 13 tests.
>>>>> Apparently #displayString is used a bit everywhere. This method does not exist in Pharo.
>>>>>
>>>>> After having added #displayString on Object, I got other problem with the examples: #any is not understood by a collection, it is invoked in Collection>>minValue.
>>>>>
>>>>> After changing #any by #anyOne, I was able to get some nice graphics. There are other bugs from here, but I will report them after....
>>>>>
>>>>> http://code.google.com/p/moose-technology/issues/detail?id=580
>>>>>
>>>>> Cheers,
>>>>> Alexandre
>>>>> --
>>>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>>>> Alexandre Bergel  http://www.bergel.eu
>>>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> _______________________________________________
>>>>> Moose-dev mailing list
>>>>> [hidden email]
>>>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Andre Hora
>>>>>
>>>>> _______________________________________________
>>>>> Moose-dev mailing list
>>>>> [hidden email]
>>>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>>
>>>> --
>>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>>> Alexandre Bergel  http://www.bergel.eu
>>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>>
>>>>
>>>>
>>>>
>>>>
>>>
>>> --
>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>> Alexandre Bergel  http://www.bergel.eu
>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>
>>>
>>>
>>>
>>>
>>> _______________________________________________
>>> Moose-dev mailing list
>>> [hidden email]
>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>>
>>
>> _______________________________________________
>> Moose-dev mailing list
>> [hidden email]
>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
> --
> www.tudorgirba.com
>
> "Beauty is where we see it."
>
>
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: eyesee

Stéphane Ducasse
In reply to this post by Tudor Girba

On Apr 11, 2011, at 11:27 PM, Tudor Girba wrote:

> Hi Andre,
>
> On 11 Apr 2011, at 23:21, Andre Hora wrote:
>
>> Hello,
>>
>> I just removed the dependence to Grease and changed others small things described by Alex. Now we have 12 tests green in Pharo 1.2 and 1.2.1.
>
> Great!
>
>> The test not green is ESExamplesTest>>testSmoke that run all the examples. We still have a dependence to Moose. More specifically:
>> Color>>lightColors
>> Color>>strongColors
>> MalArrayMatrix
>>
>> To become independent of Moose and all the things work in Pharo we need just provide this classe and methods in EyeSee. Should I do that?
>
> Yes, please :). Especially the colors should be preserved in some utility class. Ideally, they should make their way into Pharo.

Yes send a cs for the Color class and it will get integrated



_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: eyesee

abergel
http://code.google.com/p/pharo/issues/detail?id=4018
The issue contains a .cs file with the few methods added by Mondrian on Color.

Alexandre

On 13 Apr 2011, at 14:35, Stéphane Ducasse wrote:

>
> On Apr 11, 2011, at 11:27 PM, Tudor Girba wrote:
>
>> Hi Andre,
>>
>> On 11 Apr 2011, at 23:21, Andre Hora wrote:
>>
>>> Hello,
>>>
>>> I just removed the dependence to Grease and changed others small things described by Alex. Now we have 12 tests green in Pharo 1.2 and 1.2.1.
>>
>> Great!
>>
>>> The test not green is ESExamplesTest>>testSmoke that run all the examples. We still have a dependence to Moose. More specifically:
>>> Color>>lightColors
>>> Color>>strongColors
>>> MalArrayMatrix
>>>
>>> To become independent of Moose and all the things work in Pharo we need just provide this classe and methods in EyeSee. Should I do that?
>>
>> Yes, please :). Especially the colors should be preserved in some utility class. Ideally, they should make their way into Pharo.
>
> Yes send a cs for the Color class and it will get integrated
>
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.






_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: eyesee

jfabry

The XKCDColors class of Mondrian has a bunch more, (a subset) would be a good addition as well.

On 14 Apr 2011, at 09:36, Alexandre Bergel wrote:

> http://code.google.com/p/pharo/issues/detail?id=4018
> The issue contains a .cs file with the few methods added by Mondrian on Color.
>
> Alexandre
>
> On 13 Apr 2011, at 14:35, Stéphane Ducasse wrote:
>
>>
>> On Apr 11, 2011, at 11:27 PM, Tudor Girba wrote:
>>
>>> Hi Andre,
>>>
>>> On 11 Apr 2011, at 23:21, Andre Hora wrote:
>>>
>>>> Hello,
>>>>
>>>> I just removed the dependence to Grease and changed others small things described by Alex. Now we have 12 tests green in Pharo 1.2 and 1.2.1.
>>>
>>> Great!
>>>
>>>> The test not green is ESExamplesTest>>testSmoke that run all the examples. We still have a dependence to Moose. More specifically:
>>>> Color>>lightColors
>>>> Color>>strongColors
>>>> MalArrayMatrix
>>>>
>>>> To become independent of Moose and all the things work in Pharo we need just provide this classe and methods in EyeSee. Should I do that?
>>>
>>> Yes, please :). Especially the colors should be preserved in some utility class. Ideally, they should make their way into Pharo.
>>
>> Yes send a cs for the Color class and it will get integrated
>>
>>
>>
>> _______________________________________________
>> Moose-dev mailing list
>> [hidden email]
>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel  http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

--
Johan Fabry  
[hidden email] - http://dcc.uchile.cl/~jfabry
PLEIAD Lab - Computer Science Department (DCC) - University of Chile




_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: eyesee

abergel
I uploaded them on the google website.

Alexandre


On 14 Apr 2011, at 09:49, Johan Fabry wrote:

>
> The XKCDColors class of Mondrian has a bunch more, (a subset) would be a good addition as well.
>
> On 14 Apr 2011, at 09:36, Alexandre Bergel wrote:
>
>> http://code.google.com/p/pharo/issues/detail?id=4018
>> The issue contains a .cs file with the few methods added by Mondrian on Color.
>>
>> Alexandre
>>
>> On 13 Apr 2011, at 14:35, Stéphane Ducasse wrote:
>>
>>>
>>> On Apr 11, 2011, at 11:27 PM, Tudor Girba wrote:
>>>
>>>> Hi Andre,
>>>>
>>>> On 11 Apr 2011, at 23:21, Andre Hora wrote:
>>>>
>>>>> Hello,
>>>>>
>>>>> I just removed the dependence to Grease and changed others small things described by Alex. Now we have 12 tests green in Pharo 1.2 and 1.2.1.
>>>>
>>>> Great!
>>>>
>>>>> The test not green is ESExamplesTest>>testSmoke that run all the examples. We still have a dependence to Moose. More specifically:
>>>>> Color>>lightColors
>>>>> Color>>strongColors
>>>>> MalArrayMatrix
>>>>>
>>>>> To become independent of Moose and all the things work in Pharo we need just provide this classe and methods in EyeSee. Should I do that?
>>>>
>>>> Yes, please :). Especially the colors should be preserved in some utility class. Ideally, they should make their way into Pharo.
>>>
>>> Yes send a cs for the Color class and it will get integrated
>>>
>>>
>>>
>>> _______________________________________________
>>> Moose-dev mailing list
>>> [hidden email]
>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>
>> --
>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>> Alexandre Bergel  http://www.bergel.eu
>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>
>>
>>
>>
>>
>>
>> _______________________________________________
>> Moose-dev mailing list
>> [hidden email]
>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
> --
> Johan Fabry  
> [hidden email] - http://dcc.uchile.cl/~jfabry
> PLEIAD Lab - Computer Science Department (DCC) - University of Chile
>
>
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.






_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev