pharo-ide / Calypso

Pharo system browser
http://dionisiydk.blogspot.com/2017/07/calypso-update-many-improvements-and.html
MIT License
38 stars 21 forks source link
ide pharo systembrowser

Calypso

Build Status

The Pharo system browser (now live in Pharo 7)

Consists of:

Contribution (Pharo 7 and higher)

Use dev branch of Calypso for contribution:

Metacello new
  baseline: 'Calypso';
  repository: 'github://pharo-ide/Calypso:dev/src';
  load

Pharo 6 installation

To install Calypso in Pharo 6 use following script (which disables Iceberg intergation):

Iceberg enableMetacelloIntegration: false.
Metacello new
  baseline: 'Calypso';
  repository: 'github://pharo-ide/Calypso:pharo6';
  load

To make Calypso default toolset evaluate:

ClyBrowserMorph beAllDefault

And to open browser evaluate:

ClyFullBrowser open.

Or use World menu Calypso item

Documentation

If you want to learn more about the architecture of Calypso, refer to the the Pharo Infrascture mini booklet as well as the ClassAnnotation project.

The classes in the Calypso package also have some high level documentation as well.

Problems

If you will find many processes hanging in the image it can be caused by some issue of critic plugin implementation. Some people report it in the past. It should be fixed now but there is always possibility that fix is not complete.

Following line should be enough to disable critic method group with all related computation. It is the main reason of that kind of problems:

ClyCriticEnvironmentPlugin disableMethodGroup.

It is not full critic disable. If it not helps then turn off it completely:

ClyCriticBrowserPlugin disable.
ClyCriticEnvironmentPlugin disable.
ClyNavigationEnvironment reset.

And please report this problem on issue tracker or with direct mail or Pharo mailing list.