[Seaside] Error loading Seaside in Pharo

stephane ducasse stephane.ducasse at free.fr
Wed Sep 21 16:13:32 UTC 2011


mariano you should let us know the time to load the 62 packages of seaside with fuel :)
Especially with the latest version :)

Stef

On Sep 21, 2011, at 2:45 PM, Mariano Martinez Peck wrote:

> Hi guys. I am loading seaside in Pharo 1.2.1 or 1.3 and in both I have the same problem.
> 
> GRNumberPrinter >> digitsOf: aNumber base: aBaseInteger
>     "Answer the absolute digits of aNumber in the base aBaseInteger."
> 
>     | integer stream next |
>     integer := aNumber truncated abs.
>     integer = 0 ifTrue: [ ^ '0' ].
>     stream := WriteStream on: (String new: 10).
>     [ integer > 0 ] whileTrue: [
>         next := integer quo: aBaseInteger.
>         stream nextPut: (characters 
>             at: 1 + integer - (next * aBaseInteger)).
>         integer := next ].
>     ^ stream contents reverse
> 
> 
> is being called and the instVar 'characters'  is nil. 
> 
> If I replace stream nextPut: (characters 
> with
>     stream nextPut: ((characters ifNil: NumbersToCharactersLowercase)
>     
> it seems to "work". 
> 
> The way I install it is:
> 
>   Gofer new squeaksource: 'MetacelloRepository'; package:
> 'ConfigurationOfSeaside30'; load.
>                (Smalltalk at: #ConfigurationOfSeaside30) project latestVersion
> load: #(Core)
> 
> Any ideas?
> 
> Thanks
> 
> 
> -- 
> Mariano
> http://marianopeck.wordpress.com
> 
> _______________________________________________
> seaside mailing list
> seaside at lists.squeakfoundation.org
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside



More information about the seaside mailing list