how to load magritte in seaside 3.0?

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

how to load magritte in seaside 3.0?

stephane ducasse
Hi

I want to load magritte with Seaside 3.0 and I followed

http://book.pharo-project.org/book/PharoTools/Magritte/

Magritte2 For Pharo With Seaside 3

Gofer it
       squeaksource: 'MetacelloRepository';
       package: 'ConfigurationOfMagritte';
       load.
(ConfigurationOfMagritte2 project version: '2.0.5') load

but I does not load.

Stef



Reply | Threaded
Open this post in threaded view
|

Re: how to load magritte in seaside 3.0?

Lukas Renggli
Until somebody figures out why the configuration does not work you
could use the following script from
http://github.com/renggli/builder/blob/master/scripts/magritte2.st. Of
course this assumes that Seaside 3 is already loaded.

Gofer new
        renggli: 'magritte2';
        package: 'Magritte-Model';
        package: 'Magritte-Pharo-Model';
        package: 'Magritte-Seaside';
        package: 'Magritte-Pharo-Seaside';
        package: 'Magritte-Morph';
        package: 'Magritte-Tests-Model';
        package: 'Magritte-Tests-Pharo-Model';
        load.

Lukas

On 31 October 2010 09:38, stephane ducasse <[hidden email]> wrote:

> Hi
>
> I want to load magritte with Seaside 3.0 and I followed
>
> http://book.pharo-project.org/book/PharoTools/Magritte/
>
> Magritte2 For Pharo With Seaside 3
>
> Gofer it
>       squeaksource: 'MetacelloRepository';
>       package: 'ConfigurationOfMagritte';
>       load.
> (ConfigurationOfMagritte2 project version: '2.0.5') load
>
> but I does not load.
>
> Stef
>
>
>
>



--
Lukas Renggli
www.lukas-renggli.ch

Reply | Threaded
Open this post in threaded view
|

Re: how to load magritte in seaside 3.0?

Stéphane Ducasse
In reply to this post by stephane ducasse
thanks lukas

what is magritte2 vs magritte?
Because I 'm trying to rebuild an old image of mine that use an old version of magritte

Stef

On Oct 31, 2010, at 10:11 AM, Lukas Renggli wrote:

> Until somebody figures out why the configuration does not work you
> could use the following script from
> http://github.com/renggli/builder/blob/master/scripts/magritte2.st. Of
> course this assumes that Seaside 3 is already loaded.
>
> Gofer new
> renggli: 'magritte2';
> package: 'Magritte-Model';
> package: 'Magritte-Pharo-Model';
> package: 'Magritte-Seaside';
> package: 'Magritte-Pharo-Seaside';
> package: 'Magritte-Morph';
> package: 'Magritte-Tests-Model';
> package: 'Magritte-Tests-Pharo-Model';
> load.
>
> Lukas
>
> On 31 October 2010 09:38, stephane ducasse <[hidden email]> wrote:
>> Hi
>>
>> I want to load magritte with Seaside 3.0 and I followed
>>
>> http://book.pharo-project.org/book/PharoTools/Magritte/
>>
>> Magritte2 For Pharo With Seaside 3
>>
>> Gofer it
>>       squeaksource: 'MetacelloRepository';
>>       package: 'ConfigurationOfMagritte';
>>       load.
>> (ConfigurationOfMagritte2 project version: '2.0.5') load
>>
>> but I does not load.
>>
>> Stef
>>
>>
>>
>>
>
>
>
> --
> Lukas Renggli
> www.lukas-renggli.ch
>


Reply | Threaded
Open this post in threaded view
|

Re: how to load magritte in seaside 3.0?

Lukas Renggli
Magritte 2 uses Grease as a portability layer and works well on Seaside 3.

Magritte 1 has its own portability layer, works well on Seaside 2.8,
but also 3 (I think).

You should use Magritte 2 on Seaside 3.

Lukas



On 31 October 2010 10:36, Stéphane Ducasse <[hidden email]> wrote:

> thanks lukas
>
> what is magritte2 vs magritte?
> Because I 'm trying to rebuild an old image of mine that use an old version of magritte
>
> Stef
>
> On Oct 31, 2010, at 10:11 AM, Lukas Renggli wrote:
>
>> Until somebody figures out why the configuration does not work you
>> could use the following script from
>> http://github.com/renggli/builder/blob/master/scripts/magritte2.st. Of
>> course this assumes that Seaside 3 is already loaded.
>>
>> Gofer new
>>       renggli: 'magritte2';
>>       package: 'Magritte-Model';
>>       package: 'Magritte-Pharo-Model';
>>       package: 'Magritte-Seaside';
>>       package: 'Magritte-Pharo-Seaside';
>>       package: 'Magritte-Morph';
>>       package: 'Magritte-Tests-Model';
>>       package: 'Magritte-Tests-Pharo-Model';
>>       load.
>>
>> Lukas
>>
>> On 31 October 2010 09:38, stephane ducasse <[hidden email]> wrote:
>>> Hi
>>>
>>> I want to load magritte with Seaside 3.0 and I followed
>>>
>>> http://book.pharo-project.org/book/PharoTools/Magritte/
>>>
>>> Magritte2 For Pharo With Seaside 3
>>>
>>> Gofer it
>>>       squeaksource: 'MetacelloRepository';
>>>       package: 'ConfigurationOfMagritte';
>>>       load.
>>> (ConfigurationOfMagritte2 project version: '2.0.5') load
>>>
>>> but I does not load.
>>>
>>> Stef
>>>
>>>
>>>
>>>
>>
>>
>>
>> --
>> Lukas Renggli
>> www.lukas-renggli.ch
>>
>
>
>



--
Lukas Renggli
www.lukas-renggli.ch

Reply | Threaded
Open this post in threaded view
|

Re: how to load magritte in seaside 3.0?

Stéphane Ducasse
In reply to this post by Stéphane Ducasse
Ok I will use magritte2. should I load grease too?

Stef

On Oct 31, 2010, at 10:41 AM, Lukas Renggli wrote:

> Magritte 2 uses Grease as a portability layer and works well on Seaside 3.
>
> Magritte 1 has its own portability layer, works well on Seaside 2.8,
> but also 3 (I think).
>
> You should use Magritte 2 on Seaside 3.
>
> Lukas
>
>
>
> On 31 October 2010 10:36, Stéphane Ducasse <[hidden email]> wrote:
>> thanks lukas
>>
>> what is magritte2 vs magritte?
>> Because I 'm trying to rebuild an old image of mine that use an old version of magritte
>>
>> Stef
>>
>> On Oct 31, 2010, at 10:11 AM, Lukas Renggli wrote:
>>
>>> Until somebody figures out why the configuration does not work you
>>> could use the following script from
>>> http://github.com/renggli/builder/blob/master/scripts/magritte2.st. Of
>>> course this assumes that Seaside 3 is already loaded.
>>>
>>> Gofer new
>>>       renggli: 'magritte2';
>>>       package: 'Magritte-Model';
>>>       package: 'Magritte-Pharo-Model';
>>>       package: 'Magritte-Seaside';
>>>       package: 'Magritte-Pharo-Seaside';
>>>       package: 'Magritte-Morph';
>>>       package: 'Magritte-Tests-Model';
>>>       package: 'Magritte-Tests-Pharo-Model';
>>>       load.
>>>
>>> Lukas
>>>
>>> On 31 October 2010 09:38, stephane ducasse <[hidden email]> wrote:
>>>> Hi
>>>>
>>>> I want to load magritte with Seaside 3.0 and I followed
>>>>
>>>> http://book.pharo-project.org/book/PharoTools/Magritte/
>>>>
>>>> Magritte2 For Pharo With Seaside 3
>>>>
>>>> Gofer it
>>>>       squeaksource: 'MetacelloRepository';
>>>>       package: 'ConfigurationOfMagritte';
>>>>       load.
>>>> (ConfigurationOfMagritte2 project version: '2.0.5') load
>>>>
>>>> but I does not load.
>>>>
>>>> Stef
>>>>
>>>>
>>>>
>>>>
>>>
>>>
>>>
>>> --
>>> Lukas Renggli
>>> www.lukas-renggli.ch
>>>
>>
>>
>>
>
>
>
> --
> Lukas Renggli
> www.lukas-renggli.ch
>


Reply | Threaded
Open this post in threaded view
|

Re: how to load magritte in seaside 3.0?

Lukas Renggli
You have Grease if you have Seaside 3 loaded.

Lukas

On 31 October 2010 10:44, Stéphane Ducasse <[hidden email]> wrote:

> Ok I will use magritte2. should I load grease too?
>
> Stef
>
> On Oct 31, 2010, at 10:41 AM, Lukas Renggli wrote:
>
>> Magritte 2 uses Grease as a portability layer and works well on Seaside 3.
>>
>> Magritte 1 has its own portability layer, works well on Seaside 2.8,
>> but also 3 (I think).
>>
>> You should use Magritte 2 on Seaside 3.
>>
>> Lukas
>>
>>
>>
>> On 31 October 2010 10:36, Stéphane Ducasse <[hidden email]> wrote:
>>> thanks lukas
>>>
>>> what is magritte2 vs magritte?
>>> Because I 'm trying to rebuild an old image of mine that use an old version of magritte
>>>
>>> Stef
>>>
>>> On Oct 31, 2010, at 10:11 AM, Lukas Renggli wrote:
>>>
>>>> Until somebody figures out why the configuration does not work you
>>>> could use the following script from
>>>> http://github.com/renggli/builder/blob/master/scripts/magritte2.st. Of
>>>> course this assumes that Seaside 3 is already loaded.
>>>>
>>>> Gofer new
>>>>       renggli: 'magritte2';
>>>>       package: 'Magritte-Model';
>>>>       package: 'Magritte-Pharo-Model';
>>>>       package: 'Magritte-Seaside';
>>>>       package: 'Magritte-Pharo-Seaside';
>>>>       package: 'Magritte-Morph';
>>>>       package: 'Magritte-Tests-Model';
>>>>       package: 'Magritte-Tests-Pharo-Model';
>>>>       load.
>>>>
>>>> Lukas
>>>>
>>>> On 31 October 2010 09:38, stephane ducasse <[hidden email]> wrote:
>>>>> Hi
>>>>>
>>>>> I want to load magritte with Seaside 3.0 and I followed
>>>>>
>>>>> http://book.pharo-project.org/book/PharoTools/Magritte/
>>>>>
>>>>> Magritte2 For Pharo With Seaside 3
>>>>>
>>>>> Gofer it
>>>>>       squeaksource: 'MetacelloRepository';
>>>>>       package: 'ConfigurationOfMagritte';
>>>>>       load.
>>>>> (ConfigurationOfMagritte2 project version: '2.0.5') load
>>>>>
>>>>> but I does not load.
>>>>>
>>>>> Stef
>>>>>
>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> Lukas Renggli
>>>> www.lukas-renggli.ch
>>>>
>>>
>>>
>>>
>>
>>
>>
>> --
>> Lukas Renggli
>> www.lukas-renggli.ch
>>
>
>
>



--
Lukas Renggli
www.lukas-renggli.ch

Reply | Threaded
Open this post in threaded view
|

Re: how to load magritte in seaside 3.0?

EstebanLM
In reply to this post by Lukas Renggli
MAReport from magritte 1 does not work well with Seaside 3 (it needs a
small fix), all other things works ok.

cheers,
Esteban

On 2010-10-31 06:40:31 -0300, Lukas Renggli
<[hidden email]> said:

> Magritte 2 uses Grease as a portability layer and works well on Seaside 3.
>
> Magritte 1 has its own portability layer, works well on Seaside 2.8,
> but also 3 (I think).
>
> You should use Magritte 2 on Seaside 3.
>
> Lukas
>
>
>
> On 31 October 2010 10:36, Stéphane Ducasse
> <[hidden email]> wr
> ote:
>> thanks lukas
>>
>> what is magritte2 vs magritte?
>> Because I 'm trying to rebuild an old image of mine that use an old versi
> on of magritte
>>
>> Stef
>>
>> On Oct 31, 2010, at 10:11 AM, Lukas Renggli wrote:
>>
>>> Until somebody figures out why the configuration does not work you
>>> could use the following script from
>>> http://github.com/renggli/builder/blob/master/scripts/magritte2.st. Of
>>> course this assumes that Seaside 3 is already loaded.
>>>
>>> Gofer new
>>>       renggli: 'magritte2';
>>>       package: 'Magritte-Model';
>>>       package: 'Magritte-Pharo-Model';
>>>       package: 'Magritte-Seaside';
>>>       package: 'Magritte-Pharo-Seaside';
>>>       package: 'Magritte-Morph';
>>>       package: 'Magritte-Tests-Model';
>>>       package: 'Magritte-Tests-Pharo-Model';
>>>       load.
>>>
>>> Lukas
>>>
>>> On 31 October 2010 09:38, stephane ducasse
>>> <[hidden email]> wr
> ote:
>>>> Hi
>>>>
>>>> I want to load magritte with Seaside 3.0 and I followed
>>>>
>>>> http://book.pharo-project.org/book/PharoTools/Magritte/
>>>>
>>>> Magritte2 For Pharo With Seaside 3
>>>>
>>>> Gofer it
>>>>       squeaksource: 'MetacelloRepository';
>>>>       package: 'ConfigurationOfMagritte';
>>>>       load.
>>>> (ConfigurationOfMagritte2 project version: '2.0.5') load
>>>>
>>>> but I does not load.
>>>>
>>>> Stef
>>>>
>>>>
>>>>
>>>>
>>>
>>>
>>>
>>> --
>>> Lukas Renggli
>>> www.lukas-renggli.ch