At Wed, 26 Nov 2008 22:26:14 +0000, ... It was added to MethodAuthorship-yo.8 last week but I forgot to mention it. Thank you! -- Yoshiki...
Yoshiki Ohshima
yoshiki@...
Dec 1, 2008 10:43 am
135193
Hi list, I have downloaded a squeak 3.10 based web-dev image from Damien Cassou's website and stumbled upon the following problem: Some of the tests in my...
Thomas Kowark
thomas.kowark@...
Dec 1, 2008 11:12 am
135194
Hi Thomas, ... Keith, this is about SUnit-Improved. What do you think? ... Which image did you try? I thought I fixed it. -- Damien Cassou ...
Damien Cassou
damien.cassou@...
Dec 1, 2008 11:53 am
135195
I have tried the latest one from your website (sq3.10.2-7179web08.11.1). Downloaded it today. The error is MessageNotUnderstood: UndefinedObject>>select:. ...
Thomas Kowark
thomas.kowark@...
Dec 1, 2008 11:59 am
135196
... I thought the bug was fixed by Kent but it does not seem to be the case. I contacted him to see what happens. -- Damien Cassou ...
Damien Cassou
damien.cassou@...
Dec 1, 2008 1:52 pm
135197
Thank you for the quick and helpful response, Damien. BTW which is the preferred system for installing packages? While the squeak map package loader wasn't...
Thomas Kowark
thomas.kowark@...
Dec 1, 2008 2:08 pm
135198
... For each package, please ask the maintainer to update the Universe. If they do not answer, ask me. ... No because Universe is a set of packages "known to...
Damien Cassou
damien.cassou@...
Dec 1, 2008 2:57 pm
135199
Hi all, I am new to Squeak and I would like to know if there is a way to use an external C++ API from it. I find the language and the environment very ...
jordi inglada
jordi.inglada@...
Dec 1, 2008 4:29 pm
135200
... Take a look at FFI. If examples are needed, you can go for the squeak interface for FANN (Fast Artificial Neural Network). ...
Casimiro de Almeida B...
casimiro.barreto@...
Dec 1, 2008 4:43 pm
135201
There was an interesting thread about c++. http://www.nabble.com/-squeak-dev--C%2B%2B-parser-in-Smalltalk--td18191480.html cheers, Mariano On Mon, Dec 1, 2008...
Mariano Martinez Peck
marianopeck@...
Dec 1, 2008 4:50 pm
135202
... #allSelectorsBelow: is available separately to KernelExtensions in an attempt to reduce dependencies. I believe it has been harvested into Pharo. It is...
Keith Hodges
keith_hodges@...
Dec 1, 2008 7:10 pm
135203
... As part of previous Release Team I support Jerome. Also reminds he (and all) Pavel have less unimplemented in his works, so some could be learn and moved...
Edgar J. De Cleene
edgardec2001@...
Dec 1, 2008 8:21 pm
135204
Unfortunately, here is currently no direct way to interface directly with C++ code (only C code). This is due to the lack of standardization of eg:...
Joshua Gargus
schwa@...
Dec 1, 2008 8:30 pm
135205
How about tagging each legitimate unsent method with a pragma? e.g. myUnsentMethod <unsentByDesign> ^42 You can easily see all of them by using senders of...
David Pennell
pennell.david@...
Dec 1, 2008 10:25 pm
135206
... good idea, except maybe naming of pragma. ... -- Best regards, Igor Stasenko AKA sig....
Igor Stasenko
siguctua@...
Dec 2, 2008 12:41 am
135207
The logging front end to the 3 logging frameworks has been refactored and simplified. In the process it has become much more powerful. Highlights: Output...
Keith Hodges
keith_hodges@...
Dec 2, 2008 6:08 am
135208
... I just added a new feature to Sake-Packages If universes, and "Packages current" defines a package as being loadable from url:...
Keith Hodges
keith_hodges@...
Dec 2, 2008 8:47 am
135209
Problem upgrading Rio to last version. Hello, yesterday I tried to upgrade one of the images I use for development, but during the upgrade of File-Kernel...
Casimiro de Almeida B...
casimiro.barreto@...
Dec 2, 2008 9:29 am
135210
... fixed Keith...
Keith Hodges
keith_hodges@...
Dec 2, 2008 4:25 pm
135211
... Thanks !!! Now it is Ok. Casimiro...
Casimiro de Almeida B...
casimiro.barreto@...
Dec 2, 2008 7:17 pm
135212
Hi John, here's the fix for signed32BitValueOf: On Tue, Nov 25, 2008 at 11:15 PM, John M McIntosh < ... Hi John, here's the fix for signed32BitValueOf: On Tue,...
Eliot Miranda
eliot.miranda@...
Dec 2, 2008 7:32 pm
135213
Eliot thanks for this. I went with (negative and: [value = (1<<31)]) ifTrue: [^value]. versus (negative and: [value - 1 > 0]) ifTrue: [^value]. I had hardcoded...
John M McIntosh
johnmci@...
Dec 2, 2008 8:04 pm
135214
2008/12/2 John M McIntosh <johnmci@...> ... But value doesn't equal 1 << 31. It equals -(1 << 31). It only appears to equal 1 << 31...
Eliot Miranda
eliot.miranda@...
Dec 2, 2008 8:17 pm
135215
Also needed to be fixed are Interpreter>>signed64BitIntegerFor: and Interpreter>>primitiveSubtractLargeIntegers:. Find attached. Once one fixes...
Eliot Miranda
eliot.miranda@...
Dec 2, 2008 9:57 pm
135216
I'm not sure I've seen a problem logged about that. ... -- = = = ======================================================================== John M. McIntosh...
John M McIntosh
johnmci@...
Dec 2, 2008 10:16 pm
135217
in squeak, there is one assymetry in handling names, when used in array literals: #(true false nil foo) = (Array with: true with: false with: nil with: #foo) ...
Igor Stasenko
siguctua@...
Dec 3, 2008 10:01 am
135218
Igor, What would you expect from the following: #(1)? Should it be (Array with: 1) or (Array with: #'1')? I think that the assumption is that you should be...
James Foster
Smalltalk@...
Dec 3, 2008 10:46 am
135219
... Last time this came up, I believe we established that that's the ANSI standard behavior. Avi...
Avi Bryant
avi@...
Dec 3, 2008 10:46 am
135220
... Hello Keith, Working in a Fedora rel 10 intel box I've had the following problem: aStream := self myFileName asFile reader. ... [ aStream atEof ]...
Casimiro de Almeida B...
casimiro.barreto@...
Dec 3, 2008 12:35 pm
135221
... Thanks for the feedback, I fixed this in latest. CrLfStream has been replaced by MultiByteFileStream and this can be set to read in various modes, it is...