On Tue, Nov 2, 2010 at 6:57 PM, Lukas Renggli <renggli@gmail.com> wrote:
How do I load and start OB-Web ?
1. Download a recent Pharo image with OB loaded, e.g. <http://hudson.lukas-renggli.ch/job/Development/lastSuccessfulBuild/artifact/...>.
2. Evaluate the following script to load Kom and OB-Web:
 Gofer new   squeaksource: 'KomHttpServer';   package: 'DynamicBindings';   package: 'KomServices';   package: 'KomHttpServer';   load.  Gofer new   renggli: 'omnibrowser';   package: 'JSON';   package: 'OB-Web';   load.
3. Start the application by evaluating:
 OBKomHttpService startOn: 9090
4. Open the URL http://localhost:9090 in Safari or FireFox (make sure not to block popups).
The code should mostly work, I recently fixed all the tests. However keep in mind that it hasn't been used in the past 4 years and that it does not support some "newer" OB features like the button bar and the new completion and multiselect dialogs.
Lukas
Hmm, I must try that with PharoKernel :-) -- Pavel
-- Lukas Renggli www.lukas-renggli.ch