[Informal report] Building ChristmasSqueak, feedback please

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

[Informal report] Building ChristmasSqueak, feedback please

Edgar De Cleene
[Informal report] Building ChristmasSqueak, feedback please If you wish have a working .image with all old and new project running, please help with feedback.

I start from fresh Squeak4.2-10779-alpha.
First serious project in the list is Seaside 3.0 et All

For this I use  Installer squeaksource
                    project: 'MetacelloRepository';
                   install: 'ConfigurationOfSeaside30';
                    install: 'ConfigurationOfMagritte2';
                    install: 'ConfigurationOfPier2';
 install: 'ConfigurationOfPierAddOns2'.


             (Smalltalk at: #ConfigurationOfSeaside30) load.
           (Smalltalk at: #ConfigurationOfMagritte2) load.
            (Smalltalk at: #ConfigurationOfPier2) load.

          (Smalltalk at: #ConfigurationOfPierAddOns2) load.
          PRDistribution new register.


Here I have the complain about PRAjaxSearchWidget

Second when I open Seaside Control Panel, no apps shows as in earlier images

When I do WAKomEncoded startOn: 8080, shows in panel

http://localhost:8080/
http://localhost:8080/pier

Seems fine to me.

Any comments , some I must change?
Remember, Argentina is too far and Santa Reindeers
do not take well hot weather

Edgar


Reply | Threaded
Open this post in threaded view
|

Re: [Informal report] Building ChristmasSqueak, feedback please

espin
Hi Edgar,
the complain about
    PRAjaxSearchWidget
I think is due to the fact that Pier-JQuery package from
pier2addons is not loaded.

I modified your list of commands as follow (from just before
'PRDistribution new register'):
(Installer lukas)
        project: 'pier2addons';
        install: 'Pier-JQuery'.
(Smalltalk at: #PRDistribution) new register.
(Smalltalk at: #WAKomEncoded) startOn: 8080.
(Smalltalk at: #WAPharoServerAdaptorBrowser) open. "see Extending the
System in Squeak Trunk"

it now works even from my image build script.

Maybe/Probably there is a problem in one of the ConfigurationOfPier<>2

Hope it helps
Bye
Enrico

On Sat, Dec 18, 2010 at 12:10, Edgar J. De Cleene
<[hidden email]> wrote:

> If you wish have a working .image with all old and new project running,
> please help with feedback.
>
> I start from fresh Squeak4.2-10779-alpha.
> First serious project in the list is Seaside 3.0 et All
>
> For this I use  Installer squeaksource
>                     project: 'MetacelloRepository';
>                    install: 'ConfigurationOfSeaside30';
>                     install: 'ConfigurationOfMagritte2';
>                     install: 'ConfigurationOfPier2';
>  install: 'ConfigurationOfPierAddOns2'.
>
>
>              (Smalltalk at: #ConfigurationOfSeaside30) load.
>            (Smalltalk at: #ConfigurationOfMagritte2) load.
>             (Smalltalk at: #ConfigurationOfPier2) load.
>
>           (Smalltalk at: #ConfigurationOfPierAddOns2) load.
>           PRDistribution new register.
>
>
> Here I have the complain about PRAjaxSearchWidget
>
> Second when I open Seaside Control Panel, no apps shows as in earlier images
>
> When I do WAKomEncoded startOn: 8080, shows in panel
>
> http://localhost:8080/
> http://localhost:8080/pier
>
> Seems fine to me.
>
> Any comments , some I must change?
> Remember, Argentina is too far and Santa Reindeers
> do not take well hot weather
>
> Edgar
>
>
>



--
Enrico Spinielli
"Do Androids dream of electric sheep?"— Philip K. Dick
"Hear and forget; see and remember;do and understand."—Mitchel Resnick

Reply | Threaded
Open this post in threaded view
|

Re: [Informal report] Building ChristmasSqueak, feedback please

Edgar De Cleene



On 12/19/10 1:17 PM, "Enrico Spinielli" <[hidden email]>
wrote:

> Hi Edgar,
> the complain about
>     PRAjaxSearchWidget
> I think is due to the fact that Pier-JQuery package from
> pier2addons is not loaded.
>
> I modified your list of commands as follow (from just before
> 'PRDistribution new register'):
> (Installer lukas)
> project: 'pier2addons';
> install: 'Pier-JQuery'.
> (Smalltalk at: #PRDistribution) new register.
> (Smalltalk at: #WAKomEncoded) startOn: 8080.
> (Smalltalk at: #WAPharoServerAdaptorBrowser) open. "see Extending the
> System in Squeak Trunk"
>
> it now works even from my image build script.
>
> Maybe/Probably there is a problem in one of the ConfigurationOfPier<>2
>
> Hope it helps
> Bye
> Enrico


Thanks.Helps a lot.

I see very different package loads for OmniBrowser also.

The Pharo guys seems have a more complete set of Tools...

Edgar



Reply | Threaded
Open this post in threaded view
|

Re: [Informal report] Building ChristmasSqueak, feedback please

espin
In reply to this post by espin
Pier-Setup history tells about the search widget.
Note that the "Extending the System" proposes a different way to load
Seaside3.0/Pier2, i.e. using Pier-Setup.

Bye
Enrico

On Sun, Dec 19, 2010 at 16:17, Enrico Spinielli
<[hidden email]> wrote:

> Hi Edgar,
> the complain about
>    PRAjaxSearchWidget
> I think is due to the fact that Pier-JQuery package from
> pier2addons is not loaded.
>
> I modified your list of commands as follow (from just before
> 'PRDistribution new register'):
> (Installer lukas)
>        project: 'pier2addons';
>        install: 'Pier-JQuery'.
> (Smalltalk at: #PRDistribution) new register.
> (Smalltalk at: #WAKomEncoded) startOn: 8080.
> (Smalltalk at: #WAPharoServerAdaptorBrowser) open. "see Extending the
> System in Squeak Trunk"
>
> it now works even from my image build script.
>
> Maybe/Probably there is a problem in one of the ConfigurationOfPier<>2
>
> Hope it helps
> Bye
> Enrico
>
> On Sat, Dec 18, 2010 at 12:10, Edgar J. De Cleene
> <[hidden email]> wrote:
>> If you wish have a working .image with all old and new project running,
>> please help with feedback.
>>
>> I start from fresh Squeak4.2-10779-alpha.
>> First serious project in the list is Seaside 3.0 et All
>>
>> For this I use  Installer squeaksource
>>                     project: 'MetacelloRepository';
>>                    install: 'ConfigurationOfSeaside30';
>>                     install: 'ConfigurationOfMagritte2';
>>                     install: 'ConfigurationOfPier2';
>>  install: 'ConfigurationOfPierAddOns2'.
>>
>>
>>              (Smalltalk at: #ConfigurationOfSeaside30) load.
>>            (Smalltalk at: #ConfigurationOfMagritte2) load.
>>             (Smalltalk at: #ConfigurationOfPier2) load.
>>
>>           (Smalltalk at: #ConfigurationOfPierAddOns2) load.
>>           PRDistribution new register.
>>
>>
>> Here I have the complain about PRAjaxSearchWidget
>>
>> Second when I open Seaside Control Panel, no apps shows as in earlier images
>>
>> When I do WAKomEncoded startOn: 8080, shows in panel
>>
>> http://localhost:8080/
>> http://localhost:8080/pier
>>
>> Seems fine to me.
>>
>> Any comments , some I must change?
>> Remember, Argentina is too far and Santa Reindeers
>> do not take well hot weather
>>
>> Edgar
>>
>>
>>
>
>
>
> --
> Enrico Spinielli
> "Do Androids dream of electric sheep?"— Philip K. Dick
> "Hear and forget; see and remember;do and understand."—Mitchel Resnick
>



--
Enrico Spinielli
"Do Androids dream of electric sheep?"— Philip K. Dick
"Hear and forget; see and remember;do and understand."—Mitchel Resnick