[squeak-dev] Re: Problems while installing TweakCore

Andreas Raab andreas.raab at gmx.de
Mon Nov 8 19:23:36 UTC 2010


Try it now. The method directoryContentsFor:do: was added to 4.2 and 
created a conflict when loading TweakCore. I've removed it from Tweak so 
hopefully it will work now.

Cheers,
   - Andreas

On 11/8/2010 11:08 AM, Casimiro de Almeida Barreto 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