B4A

viernes, noviembre 14, 2008

How to install latest (development) versions of Aida, Scribo and friends.

Being that we (the developers) usually wants to work with the latest version of the tools we use I wrote a small Installer script to install all the needed components.

The script use Installer, then it should be run (evaluated on a workspace) after having installed a working version of Installer.

To install Installer you can download it from here: http://installer.pbwiki.com/f/Installer.st

The script is:

Transcript open.
Installer installUrl: 'http://mc.bioskop.fr/Sport/Sport-mu.2.mcz'.
Installer installUrl: 'http://www.squeaksource.com/OSProcess/OSProcess-dtl.45.mcz'.
Installer installUrl: 'http://mc.bioskop.fr/Swazoo/Swazoo-np.11.mcz'.
Installer installUrl: 'http://mc.bioskop.fr/Aida/Aida5.6-janko.112.mcz'.
Installer installUrl: 'http://scribo.aidaweb.si/repository/scribo-np.176.mcz'.
Installer installUrl:
'http://scribo.bioskop.fr/repository/scriboshout-np.1.mcz'.
Installer installUrl:
'http://scribo.aidaweb.si/repository/scribopersistence-np.21.mcz'.
Installer installUrl:
'http://scribo.aidaweb.si/repository/scriboplugins-janko.12.mcz'.
Installer installUrl:
'http://scribo.aidaweb.si/repository/scribo-console-gsa.5.mcz'.
"Seems not work from FTP, install at hand"
"Installer installUrl: 'ftp://swikis.ddo.jp/SIXX/squeak/SIXX20071110.sar'."
Installer installUrl: 'http://squeaksource.blueplane.jp/FileMan/FileMan-mu.117.mcz'.

After the installation, you can put your Scribo to run, as follow:

SwazooAida demoStart.

(AIDASite named: 'aidademo') styleClass: #ScriboStyle; blog; wiki.

ScriboConsole new openAViewOnMe.


I tried this script succesfully on a stock Squeak 3.10.2 #7179 image. Of course, you should update the packages versions when they changes. Anyway, the script is here also.

Another useful script (to my style of work at least), to customize the stock image with
some development tools is the next:

Transcript open.
Installer installUrl: 'http://www.squeaksource.com/Installer/Installer-Core-mtf.250.mcz'.
Installer installUrl: 'http://www.squeaksource.com/shout/Shout.3.15-tween.72.mcz'.
Installer installUrl: 'http://www.squeaksource.com/shout/ShoutMonticello.1-tween.2.mcz'.
Installer installUrl: 'http://www.squeaksource.com/RoelTyper/RoelTyper-rw.60.mcz'.
Installer installUrl: 'http://www.squeaksource.com/eCompletion/ECompletion-danieroux.92.mcz'.
Installer installUrl: 'http://www.squeaksource.com/AST/AST-lr.160.mcz'.
Installer installUrl: 'http://www.squeaksource.com/RefactoringEngine/Refactoring-Core-lr.11.mcz'.
Installer installUrl: 'http://www.squeaksource.com/shout/ShoutWorkspace.1-tween.4.mcz'.
Installer installUrl: 'http://www.joeyhagedorn.com/media/downloads/Algernon.1.2.sar'.

It updates Installer and install some tools I usually use to develop.

1 comentario:

Nicolas Petton dijo...

AIDSite>>wiki and #blog are not necessary anymore.

Insted, if you want to activate/deactivate plugins, you can do it here: http://localhost:8888/configuration.html?view=plugins.

Cheers!

Nico