Refactoring Browser doesn't work with Squeak 4.3

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

Refactoring Browser doesn't work with Squeak 4.3

Gerardo Navarro Suarez
Hi Guys,

I have a clean Squeak image from the squeak.org website and I just wanted to install the OmniBrowser as described on here [1].

I executed the following statements to install the OmniBrowser:

"Omnibrowser"
(Installer wiresong project: 'ob')
install: 'OmniBrowser';
install: 'OB-Morphic';
install: 'OB-Standard';
install: 'OB-Shout';
install: 'OB-SUnitIntegration'.

"Refactoring engine and OB integration"
(Installer ss project: 'rb')
install: 'AST';
install: 'Refactoring-Core';
install: 'Refactoring-Spelling';
project: 'Regex';
install: 'VB-Regex'.

(Installer wiresong project: 'ob')
install: 'OB-Refactory';
install: 'OB-Regex'.

When I execute the commands on the workspace, the execution crashes after a while, see the attached image.

Does anybody knows what to do? What do I need to do to installl the Refactoring Browser. Thanks for the help, guys.

Cheers,

Gerardo



[1] - http://wiki.squeak.org/squeak/227
Reply | Threaded
Open this post in threaded view
|

Re: Refactoring Browser doesn't work with Squeak 4.3

Colin Putney-3
 
On Mon, Nov 19, 2012 at 4:46 PM, Gerardo Navarro Suarez
<[hidden email]> wrote:

> Does anybody knows what to do? What do I need to do to installl the
> Refactoring Browser. Thanks for the help, guys.

Hi Gerardo,

Try the script below. OmniBrowser has changed a bit since Squeak 4.3
was released. I ran into a few DNS lookup failures when I tried it
just now, but retrying the lookup worked ok.

Colin



(Installer wiresong project: 'ob')
  addPackage: 'OmniBrowser';
  addPackage: 'OB-ToolBuilder';
  addPackage: 'OB-Squeak-Platform';
  addPackage: 'OB-Standard';
  addPackage: 'Morphic';
  addPackage: 'ToolBuilder-Kernel';
  addPackage: 'ToolBuilder-Morphic';
  install.

(Installer ss project: 'rb')
  addPackage: 'Refactoring-Changes';
  addPackage: 'Refactoring-Core';
  addPackage: 'Refactoring-Tests-Changes';
  addPackage: 'Refactoring-Tests-Core';
  addPackage: 'Refactoring-Tests-Environment';
  addPackage: 'Refactoring-Squeak-Platform';
  addPackage: 'Refactoring-Environment';
  addPackage: 'AST-Core';
  addPackage: 'Refactoring-Critics';
  install.

(Installer lukas project: 'omnibrowser')
  addPackage: 'OB-Refactory';
  addPackage: 'OB-Regex';
  install.

(Installer wiresong project: 'ob')
  addPackage: 'VB-Regex';
  addPackage: 'OB-SUnitIntegration';
  install.

(Installer ss project: 'OCompletion');
  addPackage: 'OCForOB';
  addPackage: 'Ocompletion;
  install.

(Installer ss project: 'RoelTyper')
  install: 'RoelTyper'.