[Seaside] Porting Seaside30 to opencobalt-1.0alpha1

Lukas Renggli renggli at gmail.com
Fri Jul 30 17:15:18 UTC 2010


I am not sure why you try to merge Kernel or Network? This is not code
that is part of Seaside.

Look in a Pharo One Click image at the package dependency
specification given in GRPackage. This should give you an accurate
idea what you need to load in what order. All the packages with
'-Pharo-' inside are platform specific and probably need to
implemented/adapted for your platform.

Lukas


On 30 July 2010 19:03, Tim Murray <tmurray at ecsorl.com> wrote:
> Ok,
>
>
>
> I tried Merging in Kernel-MarcusDenker.xyz.mcz and it hung the system.
>
>
>
> So, in true smalltalk fashion, I copied and pasted the missing method in to
> Kernel-Mthods->BlockContext->evaluating….
>
>
>
> valueWithEnoughArguments: anArray
>
>             "call me with enough arguments from anArray"
>
>             | args |
>
>             (anArray size == self numArgs)
>
>                         ifTrue: [ ^self valueWithArguments: anArray ].
>
>
>
>             args := Array new: self numArgs.
>
>             args replaceFrom: 1
>
>                         to: (anArray size min: args size)
>
>                         with: anArray
>
>                         startingAt: 1.
>
>
>
>             ^ self valueWithArguments: args
>
>
>
>
>
> And I am now at the Seaside Dispatcher page…
>
>
>
>
>
> The adventure continues !
>
> _______________________________________________
> seaside mailing list
> seaside at lists.squeakfoundation.org
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
>



-- 
Lukas Renggli
www.lukas-renggli.ch


More information about the seaside mailing list