[squeak-dev] Problems while installing TweakCore

Hannes Hirzel hannes.hirzel at gmail.com
Mon Nov 8 19:23:25 UTC 2010


Casimiro,

Have you seen this email
http://lists.squeakfoundation.org/pipermail/squeak-dev/2010-May/151048.html

where Nikolay Suslov managed to load Tweak into Squeak 4.1?

--Hannes

On 11/8/10, Casimiro de Almeida Barreto <casimiro.barreto at gmail.com> wrote:
> While loading TweakCore there's a problem:
>
>     [done] whileFalse: [
>         entryArray := self primLookupEntryIn: path index: index.
>         #badDirectoryPath = entryArray ifTrue: [
>             ^(InvalidDirectoryError pathName: pathName) signal].
>         entryArray == nil
>             ifTrue: [done := true]
>             ifFalse: [aBlock value: (*DirectoryEntry fromArray:
> entryArray*)].
>         index := index + 1].
>
> Definition  of DirectoryEntry does not understand the message
> "fromArray:" but "fromArray:directory:"
>
>         DirectoryEntry>>fromArray: array directory:
>         aFileDirectoryOrServerDirectory
>             | entryType |
>             entryType := (array at: 4)
>                 ifTrue: [ DirectoryEntryDirectory ]
>                 ifFalse: [ DirectoryEntryFile ].
>             ^ entryType
>                 directory: aFileDirectoryOrServerDirectory
>                 name: (array at: 1)
>                 creationTime: (array at: 2)
>                 modificationTime: (array at: 3)
>                 fileSize: (array at: 5)
>
>
> This problem happens at several points of TweakCore.
>
> Best regards
>
> CdAB
>



More information about the Squeak-dev mailing list