[Seaside] Error loading Seaside in Pharo

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


On Sep 21, 2011, at 6:55 PM, Mariano Martinez Peck wrote:

> 
> 
> 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 :)

ok so twice faster than in my office.
You rock :)

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



More information about the seaside mailing list