[Seaside] Error loading Seaside in Pharo

Mariano Martinez Peck marianopeck at gmail.com
Wed Sep 21 16:55:20 UTC 2011


On Wed, Sep 21, 2011 at 6:13 PM, stephane ducasse
<stephane.ducasse at free.fr>wrote:

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



> 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
>
> _______________________________________________
> seaside mailing list
> seaside at lists.squeakfoundation.org
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>



-- 
Mariano
http://marianopeck.wordpress.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.squeakfoundation.org/pipermail/seaside/attachments/20110921/47f680e0/attachment.htm


More information about the seaside mailing list