Hi Stefan,
On Tue, 28 Jun 2011 17:15:52 +0200There were a few messages about that on the iliad list recently.
Bernat Romagosa <tibabenfortlapalanca@gmail.com> wrote:
> Hi lists,
>
> I don't know whether this issue is Pharo's or Iliad's, so I'm writing to
> both lists.
>
> I've just tried to pull Iliad 0.9.1 from the repos into a fresh Pharo 1.3
> image and I keep getting the error "receiver of session is nil" every time I
> execute an action. If I click proceed in the debugger and manually refresh
> the page, it works as it should.
When I tried this, I noticed that anchor URLS were missing a value
> So I tried to install 0.9.2 instead, and now no actions work and nothing
> happens when clicking an anchor. I tried the examples (counter, todo, etc)
> and they're not working either. ILErrorHandler is in debugMode but I'm not
> getting any error walkbacks either.
for some parameter in their key. I followed the advice in Comment #2
of http://code.google.com/p/iliadproject/issues/detail?id=19
It took me a while to find out some nitty-gritty details on what
goes with what, but here is what I _just now_ ended up as a reliable
load script starting from PharoCore 1.3:
Gofer new
�� �� �� ��squeaksource: 'rb';
�� �� �� ��package: 'AST-Core';
�� �� �� ��package: 'AST-Semantic';
�� �� �� ��package: 'Refactoring-Core';
�� �� �� ��package: 'Refactoring-Environment';
�� �� �� ��package: 'Refactoring-Changes';
�� �� �� ��package: 'Refactoring-Critics';
�� �� �� ��package: 'Refactoring-Spelling';
�� �� �� ��package: 'Refactoring-Tests-Environment';
�� �� �� ��load.
Gofer new
�� �� �� ��squeaksource: 'PharoOB';
�� �� �� ��package: 'ConfigurationOfOmniBrowser';
�� �� �� ��package: 'ConfigurationOfShout';
�� �� �� ��package: 'ConfigurationOfOCompletion';
�� �� �� ��load.
((Smalltalk at: #ConfigurationOfOmniBrowser) project version: #stable) load.
((Smalltalk at: #ConfigurationOfShout) project version: #stable) load.
((Smalltalk at: #ConfigurationOfOCompletion) project version: #stable) load.
Gofer new
��squeaksource: 'MetacelloRepository';
��package: 'ConfigurationOfSandstoneDb';
��load.
(Smalltalk at: #ConfigurationOfSandstoneDb) project latestVersion load.
Gofer new
�� �� �� ��squeaksource: 'Fuel';
�� �� �� ��package: 'Fuel';
�� �� �� ��package: 'FuelTests';
�� �� �� ��package: 'FuelBenchmarks';
�� �� �� ��load.
Gofer new
�� �� �� ��squeaksource: 'SandstoneDb';
�� �� �� ��package: 'SandstoneDb';
�� �� �� ��package: 'SandstoneDbFuel';
�� �� �� ��package: 'SandstoneDbTests';
�� �� �� ��load.
(Smalltalk at: #SDFileStore) serializer: (Smalltalk at: #SDFuelSerializer) new.
Gofer new
�� �� �� ��squeaksource: 'XMLSupport';
�� �� �� ��package: 'ConfigurationOfXMLSupport';
�� �� �� ��load.
(Smalltalk at: #ConfigurationOfXMLSupport) perform: #loadDefault.
Gofer new
��squeaksource: 'IliadDev';
��package: 'ConfigurationOfIliad';
��load.
((Smalltalk at: #ConfigurationOfIliad) project version: '0.9.1.2') load.
Gofer new
��directory: '/home/stefan/work/agweb/repo';
��package: 'AgWeb';
��package: 'Sport';
��load.
Workspace openFile: '/home/stefan/work/agweb/PharoCore-1.3/scratch.ws'
In case you wonder about my local Sport package, it just contains a patch
enabling Swazoo to run only on 127.0.0.1 instead on 0.0.0.0. The only thing
that is missing here to make it perfect, is a patch in
�� �� �� ��ILJsonHandler>>updateHead
where you need to replace
�� �� �� ��headElement := ILElement new.
with
�� �� �� ��headElement := ILHeadElement new.
HTH,
s.