Issue 7027 in pharo: Wrong halo handle balloon text showing

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
27 messages Options
12
Reply | Threaded
Open this post in threaded view
|

Issue 7027 in pharo: Wrong halo handle balloon text showing

pharo
Status: New
Owner: ----
Labels: Type-Bug

New issue 7027 by [hidden email]: Wrong halo handle balloon text showing
http://code.google.com/p/pharo/issues/detail?id=7027

Pharo image: one-click, latest
Pharo core version: #20414

Hover over any halo handle. Notice that every balloon text is set  
to 'unknown halo handle'.




_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7027 in pharo: Wrong halo handle balloon text showing

pharo
Updates:
        Labels: Milestone-2.0

Comment #1 on issue 7027 by [hidden email]: Wrong halo handle  
balloon text showing
http://code.google.com/p/pharo/issues/detail?id=7027

balloonHelpTextForHandle: aHandle
        "Answer a string providing balloon help for the
        given halo handle"
        | itsSelector |
        aHandle eventHandler firstMouseSelector crLog.
        itsSelector := aHandle eventHandler firstMouseSelector.
        itsSelector == #doRecolor:with: ifTrue: [^ 'Change color'].
        itsSelector == #mouseDownInDimissHandle:with:
                ifTrue: [^ 'Remove from screen' translated].
        #(#(#addFullHandles 'More halo handles')  
#(#chooseEmphasisOrAlignment 'Emphasis & alignment') #(#chooseFont 'Change  
font') #(#chooseNewGraphicFromHalo 'Choose a new graphic')  
#(#chooseStyle 'Change style') #(#doDebug:with: 'Debug')  
#(#doDirection:with: 'Choose forward direction')  
#(#doDup:with: 'Duplicate')  #(#doMenu:with: 'Menu') #(#doGrab:with: 'Pick  
up')  #(#mouseDownInCollapseHandle:with: 'Collapse')  
#(#mouseDownOnHelpHandle: 'Help')  
#(#prepareToTrackCenterOfRotation:with: 'Move object or set center of  
rotation') #(#startDrag:with: 'Move') #(#startGrow:with: 'Change size')  
#(#startRot:with: 'Rotate') #(#startScale:with: 'Change  
scale')#(#trackCenterOfRotation:with: 'Set center of rotation') )
                do: [:pair | itsSelector == pair first
                                ifTrue: [^ pair last]].
        ^ 'unknown halo handle'translated


in 1.4
mouseDownInCollapseHandle:with:
doDebug:with:
mouseDownInDimissHandle:with:
doMenu:with:
doGrab:with:
startDrag:with:
doDup:with:
startGrow:with:
doRecolor:with:


in 20
#endInteraction
#endInteraction
#endInteraction
#endInteraction
#endInteraction
#endInteraction
#endInteraction
#endInteraction
#endInteraction


so clearly it does not work…

Now the four methods using endInteration between 20 and 14 are the same… so  
still looking to understand what changes.

… some time later

MorphicEventHandler>>firstMouseSelector
is a new method not present in 1.4

MorphicEventHandler>>firstMouseSelector
        "Answer the selector corresponding to the first mouse-handling selector  
fielded.  Created in support of providing balloon-help for halo handles,  
triggered by the selector handled"
        self flag: #hack. "this has to be changed probably, nobody should depend  
on the first selector"
        subscriptions keysAndValuesDo: [ :eventKind :subscription |
                (#(
                        mouseDown
                        mouseStillDown
                        mouseUp
                        mouseMove
                        mouseEnter
                        mouseLeave
                        mouseEnterDragging
                        mouseLeaveDragging
                        doubleClick ) includes: eventKind) ifTrue: [ ^subscription anyOne  
selector ].
        ].
        ^nil


aHandle eventHandler returns a MorphicEventHandler.

Now I do not understand the logic of this code :(
I suspect that the MorphicEventHandler is not well initialized because  
there are only two eventKind
registered mouseUp and mouseDown.


Now I have no clue how to use the Morphic Event Handler

Apparently it is defined in

Morph>>on: eventName send: selector to: recipient
        self eventHandler ifNil: [self eventHandler: MorphicEventHandler new].
        self eventHandler on: eventName send: selector to: recipient

Now I tried to put a break point and the system died on me of course

_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7027 in pharo: Wrong halo handle balloon text showing

pharo
Updates:
        Status: FixReviewNeeded
        Cc: [hidden email]

Comment #2 on issue 7027 by [hidden email]: Wrong halo handle  
balloon text showing
http://code.google.com/p/pharo/issues/detail?id=7027

This area of the system could really use a refactor. I fixed it to get it  
working, cleaned a very little bit, and tried not to make it any uglier  
than it was...

Fix in inbox:  
SLICE-Issue-7027-Wrong-halo-handle-balloon-text-showing-SeanDeNigris.1

- Remove extra #mouseDown handler from #addRecolorHandle:
- Add MorphicEventHandler>>mouseUpSelectors; before 2.0, you could never  
have more than one action per mouse event type, so this message wouldn't  
make sense. It's now needed - see next item
- Morph>>balloonHelpTextForHandle: now sends #mouseUpSelectors to get help  
text for recolor handle, which has two #mouseUp actions
- Fix MorphicEventHandler>>firstMouseSelector to work more like the one  
from 1.4. I think this method is fatally flawed because it was never  
designed to work with multiple-actions-per-event-type


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7027 in pharo: Wrong halo handle balloon text showing

pharo

Comment #3 on issue 7027 by [hidden email]: Wrong halo handle  
balloon text showing
http://code.google.com/p/pharo/issues/detail?id=7027

Thanks sean indeed this is a mess.


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7027 in pharo: Wrong halo handle balloon text showing

pharo
Updates:
        Status: MonkeyIsChecking

Comment #4 on issue 7027 by [hidden email]: Wrong halo handle  
balloon text showing
http://code.google.com/p/pharo/issues/detail?id=7027#c4

The Monkey is currently checking this issue. Please don't change it!


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7027 in pharo: Wrong halo handle balloon text showing

pharo
Updates:
        Status: FailingTest

Comment #5 on issue 7027 by [hidden email]: Wrong halo handle  
balloon text showing
http://code.google.com/p/pharo/issues/detail?id=7027#c5

Test Results:
-------------
Passed: 6431
        CollectionsTests-Arrayed (553)
        CollectionsTests-Atomic (12)
        CollectionsTests-Sequenceable (912)
        CollectionsTests-SplitJoin (27)
        CollectionsTests-Stack (16)
        CollectionsTests-Streams (37)
        CollectionsTests-Strings (611)
        CollectionsTests-Support (12)
        CollectionsTests-Unordered (1954)
        CollectionsTests-Weak (739)
        CompilerTests (181)
        KernelTests-Chronology (593)
        KernelTests-Classes (68)
        KernelTests-Exception (2)
        KernelTests-Methods (179)
        KernelTests-Numbers (276)
        KernelTests-Objects (86)
        KernelTests-Pragmas (3)
        KernelTests-Processes (38)
        MorphicTests-Basic (12)
        MorphicTests-Event (8)
        MorphicTests-Kernel (8)
        MorphicTests-Layouts (5)
        MorphicTests-Text Support (4)
        MorphicTests-Widgets (3)
        MorphicTests-WindowNotification (8)
        SUnit-Core-Extensions (3)
        SUnit-Core-Utilities (3)
        SUnit-Tests-Core (78)


Failures: 1
        MorphicEventHandlerTest>>#testFirstMouseSelector

----------------------------------------------------------
Loaded Source:  
SLICE-Issue-7027-Wrong-halo-handle-balloon-text-showing-SeanDeNigris.1 from  
http://ss3.gemstone.com/ss/PharoInbox
Tested using Pharo-2.0-20493-a on CoInterpreter  
VMMaker-oscog-EstebanLorenzano.166 uuid:  
5773fcb9-2982-4507-8a9e-4308ec33731e Dec 12 2012
StackToRegisterMappingCogit VMMaker-oscog-EstebanLorenzano.166 uuid:  
5773fcb9-2982-4507-8a9e-4308ec33731e Dec 12 2012
git://gitorious.org/cogvm/blessed.git Commit:  
452863bdfba2ba0b188e7b172e9bc597a2caa928 Date: 2012-12-07 16:49:46 +0100  
By: Esteban Lorenzano <[hidden email]> Jenkins build #5922


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7027 in pharo: Wrong halo handle balloon text showing

pharo
Updates:
        Status: WorkNeeded

Comment #6 on issue 7027 by [hidden email]: Wrong halo handle  
balloon text showing
http://code.google.com/p/pharo/issues/detail?id=7027

(No comment was entered for this change.)


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7027 in pharo: Wrong halo handle balloon text showing

pharo
Updates:
        Status: FixReviewNeeded

Comment #7 on issue 7027 by [hidden email]: Wrong halo handle  
balloon text showing
http://code.google.com/p/pharo/issues/detail?id=7027

New slice in inbox:  
SLICE-Issue-7027-Wrong-halo-handle-balloon-text-showing-SeanDeNigris.2

- Remove #firstMouseSelector, which no longer makes sense (if it ever did)  
with multiple subscriptions per event type; also, it was only being used by  
halos, and this slice makes it obsolete
- Remove test for above
- Add MorphicEventHandler>>#mouseSelectorsInclude: so as a replacement for  
the above

 From slice v. 1:
- Remove extra #mouseDown handler from #addRecolorHandle:


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7027 in pharo: Wrong halo handle balloon text showing

pharo
Updates:
        Status: MonkeyIsChecking

Comment #8 on issue 7027 by [hidden email]: Wrong halo handle  
balloon text showing
http://code.google.com/p/pharo/issues/detail?id=7027#c8

The Monkey is currently checking this issue. Please don't change it!


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7027 in pharo: Wrong halo handle balloon text showing

pharo
Updates:
        Status: ValidatedByTheMonkey
        Labels: CheckedIn20498

Comment #9 on issue 7027 by [hidden email]: Wrong halo handle  
balloon text showing
http://code.google.com/p/pharo/issues/detail?id=7027#c9

This Issue has been checked by Ulysse the Monkey
       
6431 tests passed in 00:02:52s:
===============================
        CollectionsTests-Arrayed (553)
        CollectionsTests-Atomic (12)
        CollectionsTests-Sequenceable (912)
        CollectionsTests-SplitJoin (27)
        CollectionsTests-Stack (16)
        CollectionsTests-Streams (37)
        CollectionsTests-Strings (611)
        CollectionsTests-Support (12)
        CollectionsTests-Unordered (1954)
        CollectionsTests-Weak (739)
        CompilerTests (181)
        KernelTests-Chronology (593)
        KernelTests-Classes (68)
        KernelTests-Exception (2)
        KernelTests-Methods (179)
        KernelTests-Numbers (276)
        KernelTests-Objects (86)
        KernelTests-Pragmas (3)
        KernelTests-Processes (38)
        MorphicTests-Basic (12)
        MorphicTests-Event (8)
        MorphicTests-Kernel (8)
        MorphicTests-Layouts (5)
        MorphicTests-Text Support (4)
        MorphicTests-Widgets (3)
        MorphicTests-WindowNotification (8)
        SUnit-Core-Extensions (3)
        SUnit-Core-Utilities (3)
        SUnit-Tests-Core (78)

----------------------------------------------------------
Loaded Source:  
SLICE-Issue-7027-Wrong-halo-handle-balloon-text-showing-SeanDeNigris.2 from  
http://ss3.gemstone.com/ss/PharoInbox
Tested using Pharo-2.0-20498-a on CoInterpreter  
VMMaker-oscog-EstebanLorenzano.166 uuid:  
5773fcb9-2982-4507-8a9e-4308ec33731e Dec 12 2012
StackToRegisterMappingCogit VMMaker-oscog-EstebanLorenzano.166 uuid:  
5773fcb9-2982-4507-8a9e-4308ec33731e Dec 12 2012
git://gitorious.org/cogvm/blessed.git Commit:  
452863bdfba2ba0b188e7b172e9bc597a2caa928 Date: 2012-12-07 16:49:46 +0100  
By: Esteban Lorenzano <[hidden email]> Jenkins build #5922


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7027 in pharo: Wrong halo handle balloon text showing

pharo
Updates:
        Status: MonkeyIsChecking

Comment #10 on issue 7027 by [hidden email]: Wrong halo handle  
balloon text showing
http://code.google.com/p/pharo/issues/detail?id=7027#c10

The Monkey is currently checking this issue. Please don't change it!


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7027 in pharo: Wrong halo handle balloon text showing

pharo
Updates:
        Status: ValidatedByTheMonkey
        Labels: CheckedIn20499

Comment #11 on issue 7027 by [hidden email]: Wrong halo handle  
balloon text showing
http://code.google.com/p/pharo/issues/detail?id=7027#c11

This Issue has been checked by Ulysse the Monkey
       
6431 tests passed in 00:06:10s:
===============================
        CollectionsTests-Arrayed (553)
        CollectionsTests-Atomic (12)
        CollectionsTests-Sequenceable (912)
        CollectionsTests-SplitJoin (27)
        CollectionsTests-Stack (16)
        CollectionsTests-Streams (37)
        CollectionsTests-Strings (611)
        CollectionsTests-Support (12)
        CollectionsTests-Unordered (1954)
        CollectionsTests-Weak (739)
        CompilerTests (181)
        KernelTests-Chronology (593)
        KernelTests-Classes (68)
        KernelTests-Exception (2)
        KernelTests-Methods (179)
        KernelTests-Numbers (276)
        KernelTests-Objects (86)
        KernelTests-Pragmas (3)
        KernelTests-Processes (38)
        MorphicTests-Basic (12)
        MorphicTests-Event (8)
        MorphicTests-Kernel (8)
        MorphicTests-Layouts (5)
        MorphicTests-Text Support (4)
        MorphicTests-Widgets (3)
        MorphicTests-WindowNotification (8)
        SUnit-Core-Extensions (3)
        SUnit-Core-Utilities (3)
        SUnit-Tests-Core (78)

----------------------------------------------------------
Loaded Source:  
SLICE-Issue-7027-Wrong-halo-handle-balloon-text-showing-SeanDeNigris.2 from  
http://ss3.gemstone.com/ss/PharoInbox
Tested using Pharo-2.0-20499-a on CoInterpreter  
VMMaker-oscog-EstebanLorenzano.166 uuid:  
5773fcb9-2982-4507-8a9e-4308ec33731e Dec 12 2012
StackToRegisterMappingCogit VMMaker-oscog-EstebanLorenzano.166 uuid:  
5773fcb9-2982-4507-8a9e-4308ec33731e Dec 12 2012
git://gitorious.org/cogvm/blessed.git Commit:  
452863bdfba2ba0b188e7b172e9bc597a2caa928 Date: 2012-12-07 16:49:46 +0100  
By: Esteban Lorenzano <[hidden email]> Jenkins build #5922


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7027 in pharo: Wrong halo handle balloon text showing

pharo
Updates:
        Status: MonkeyIsChecking

Comment #12 on issue 7027 by [hidden email]: Wrong halo handle  
balloon text showing
http://code.google.com/p/pharo/issues/detail?id=7027#c12

The Monkey is currently checking this issue. Please don't change it!


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7027 in pharo: Wrong halo handle balloon text showing

pharo
Updates:
        Status: ValidatedByTheMonkey
        Labels: CheckedIn20500

Comment #13 on issue 7027 by [hidden email]: Wrong halo handle  
balloon text showing
http://code.google.com/p/pharo/issues/detail?id=7027#c13

This Issue has been checked by Ulysse the Monkey
       
6431 tests passed in 00:02:05s:
===============================
        CollectionsTests-Arrayed (553)
        CollectionsTests-Atomic (12)
        CollectionsTests-Sequenceable (912)
        CollectionsTests-SplitJoin (27)
        CollectionsTests-Stack (16)
        CollectionsTests-Streams (37)
        CollectionsTests-Strings (611)
        CollectionsTests-Support (12)
        CollectionsTests-Unordered (1954)
        CollectionsTests-Weak (739)
        CompilerTests (181)
        KernelTests-Chronology (593)
        KernelTests-Classes (68)
        KernelTests-Exception (2)
        KernelTests-Methods (179)
        KernelTests-Numbers (276)
        KernelTests-Objects (86)
        KernelTests-Pragmas (3)
        KernelTests-Processes (38)
        MorphicTests-Basic (12)
        MorphicTests-Event (8)
        MorphicTests-Kernel (8)
        MorphicTests-Layouts (5)
        MorphicTests-Text Support (4)
        MorphicTests-Widgets (3)
        MorphicTests-WindowNotification (8)
        SUnit-Core-Extensions (3)
        SUnit-Core-Utilities (3)
        SUnit-Tests-Core (78)

----------------------------------------------------------
Loaded Source:  
SLICE-Issue-7027-Wrong-halo-handle-balloon-text-showing-SeanDeNigris.2 from  
http://ss3.gemstone.com/ss/PharoInbox
Tested using Pharo-2.0-20500-a on NBCoInterpreter  
NativeBoost-CogPlugin-IgorStasenko.15 uuid:  
44b6b681-38f1-4a9e-b6ee-8769b499576a Nov 27 2012
NBCogit NativeBoost-CogPlugin-IgorStasenko.15 uuid:  
44b6b681-38f1-4a9e-b6ee-8769b499576a Nov 27 2012
https://git.gitorious.org/cogvm/blessed.git Commit:  
40ac7e7bdec6fef0e934d2c019b86db996053912 Date: 2012-11-19 18:54:49 +0100  
By: Mariano Martinez Peck <[hidden email]> Jenkins build #146


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7027 in pharo: Wrong halo handle balloon text showing

pharo
Updates:
        Status: MonkeyIsChecking

Comment #14 on issue 7027 by [hidden email]: Wrong halo handle  
balloon text showing
http://code.google.com/p/pharo/issues/detail?id=7027#c14

The Monkey is currently checking this issue. Please don't change it!


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7027 in pharo: Wrong halo handle balloon text showing

pharo
Updates:
        Status: ValidatedByTheMonkey
        Labels: CheckedIn20507

Comment #15 on issue 7027 by [hidden email]: Wrong halo handle  
balloon text showing
http://code.google.com/p/pharo/issues/detail?id=7027#c15

This Issue has been checked by Ulysse the Monkey
       
6432 tests passed in 00:01:29s:
===============================
        CollectionsTests-Arrayed (553)
        CollectionsTests-Atomic (12)
        CollectionsTests-Sequenceable (912)
        CollectionsTests-SplitJoin (27)
        CollectionsTests-Stack (16)
        CollectionsTests-Streams (37)
        CollectionsTests-Strings (611)
        CollectionsTests-Support (12)
        CollectionsTests-Unordered (1954)
        CollectionsTests-Weak (739)
        CompilerTests (181)
        KernelTests-Chronology (593)
        KernelTests-Classes (69)
        KernelTests-Exception (2)
        KernelTests-Methods (179)
        KernelTests-Numbers (276)
        KernelTests-Objects (86)
        KernelTests-Pragmas (3)
        KernelTests-Processes (38)
        MorphicTests-Basic (12)
        MorphicTests-Event (8)
        MorphicTests-Kernel (8)
        MorphicTests-Layouts (5)
        MorphicTests-Text Support (4)
        MorphicTests-Widgets (3)
        MorphicTests-WindowNotification (8)
        SUnit-Core-Extensions (3)
        SUnit-Core-Utilities (3)
        SUnit-Tests-Core (78)

----------------------------------------------------------
Loaded Source:  
SLICE-Issue-7027-Wrong-halo-handle-balloon-text-showing-SeanDeNigris.2 from  
http://ss3.gemstone.com/ss/PharoInbox
Tested using Pharo-2.0-20507-a on NBCoInterpreter  
NativeBoost-CogPlugin-IgorStasenko.15 uuid:  
44b6b681-38f1-4a9e-b6ee-8769b499576a Nov 27 2012
NBCogit NativeBoost-CogPlugin-IgorStasenko.15 uuid:  
44b6b681-38f1-4a9e-b6ee-8769b499576a Nov 27 2012
https://git.gitorious.org/cogvm/blessed.git Commit:  
40ac7e7bdec6fef0e934d2c019b86db996053912 Date: 2012-11-19 18:54:49 +0100  
By: Mariano Martinez Peck <[hidden email]> Jenkins build #146


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7027 in pharo: Wrong halo handle balloon text showing

pharo
Updates:
        Status: MonkeyIsChecking

Comment #16 on issue 7027 by [hidden email]: Wrong halo handle  
balloon text showing
http://code.google.com/p/pharo/issues/detail?id=7027#c16

The Monkey is currently checking this issue. Please don't change it!


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7027 in pharo: Wrong halo handle balloon text showing

pharo
Updates:
        Status: ValidatedByTheMonkey
        Labels: CheckedIn20509

Comment #17 on issue 7027 by [hidden email]: Wrong halo handle  
balloon text showing
http://code.google.com/p/pharo/issues/detail?id=7027#c17

This Issue has been checked by Ulysse the Monkey
       
6432 tests passed in 00:01:23s:
===============================
        CollectionsTests-Arrayed (553)
        CollectionsTests-Atomic (12)
        CollectionsTests-Sequenceable (912)
        CollectionsTests-SplitJoin (27)
        CollectionsTests-Stack (16)
        CollectionsTests-Streams (37)
        CollectionsTests-Strings (611)
        CollectionsTests-Support (12)
        CollectionsTests-Unordered (1954)
        CollectionsTests-Weak (739)
        CompilerTests (181)
        KernelTests-Chronology (593)
        KernelTests-Classes (69)
        KernelTests-Exception (2)
        KernelTests-Methods (179)
        KernelTests-Numbers (276)
        KernelTests-Objects (86)
        KernelTests-Pragmas (3)
        KernelTests-Processes (38)
        MorphicTests-Basic (12)
        MorphicTests-Event (8)
        MorphicTests-Kernel (8)
        MorphicTests-Layouts (5)
        MorphicTests-Text Support (4)
        MorphicTests-Widgets (3)
        MorphicTests-WindowNotification (8)
        SUnit-Core-Extensions (3)
        SUnit-Core-Utilities (3)
        SUnit-Tests-Core (78)

----------------------------------------------------------
Loaded Source:  
SLICE-Issue-7027-Wrong-halo-handle-balloon-text-showing-SeanDeNigris.2 from  
http://ss3.gemstone.com/ss/PharoInbox
Tested using Pharo-2.0-20509-a on NBCoInterpreter  
NativeBoost-CogPlugin-IgorStasenko.15 uuid:  
44b6b681-38f1-4a9e-b6ee-8769b499576a Nov 27 2012
NBCogit NativeBoost-CogPlugin-IgorStasenko.15 uuid:  
44b6b681-38f1-4a9e-b6ee-8769b499576a Nov 27 2012
https://git.gitorious.org/cogvm/blessed.git Commit:  
40ac7e7bdec6fef0e934d2c019b86db996053912 Date: 2012-11-19 18:54:49 +0100  
By: Mariano Martinez Peck <[hidden email]> Jenkins build #146


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7027 in pharo: Wrong halo handle balloon text showing

pharo
Updates:
        Status: MonkeyIsChecking

Comment #18 on issue 7027 by [hidden email]: Wrong halo handle  
balloon text showing
http://code.google.com/p/pharo/issues/detail?id=7027#c18

The Monkey is currently checking this issue. Please don't change it!


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 7027 in pharo: Wrong halo handle balloon text showing

pharo
Updates:
        Status: ValidatedByTheMonkey

Comment #19 on issue 7027 by [hidden email]: Wrong halo handle  
balloon text showing
http://code.google.com/p/pharo/issues/detail?id=7027#c19

This Issue has been checked by Ulysse the Monkey
       
6432 tests passed in 00:01:30s:
===============================
        CollectionsTests-Arrayed (553)
        CollectionsTests-Atomic (12)
        CollectionsTests-Sequenceable (912)
        CollectionsTests-SplitJoin (27)
        CollectionsTests-Stack (16)
        CollectionsTests-Streams (37)
        CollectionsTests-Strings (611)
        CollectionsTests-Support (12)
        CollectionsTests-Unordered (1954)
        CollectionsTests-Weak (739)
        CompilerTests (181)
        KernelTests-Chronology (593)
        KernelTests-Classes (69)
        KernelTests-Exception (2)
        KernelTests-Methods (179)
        KernelTests-Numbers (276)
        KernelTests-Objects (86)
        KernelTests-Pragmas (3)
        KernelTests-Processes (38)
        MorphicTests-Basic (12)
        MorphicTests-Event (8)
        MorphicTests-Kernel (8)
        MorphicTests-Layouts (5)
        MorphicTests-Text Support (4)
        MorphicTests-Widgets (3)
        MorphicTests-WindowNotification (8)
        SUnit-Core-Extensions (3)
        SUnit-Core-Utilities (3)
        SUnit-Tests-Core (78)

----------------------------------------------------------
Loaded Source:  
SLICE-Issue-7027-Wrong-halo-handle-balloon-text-showing-SeanDeNigris.2 from  
http://ss3.gemstone.com/ss/PharoInbox
Tested using Pharo-2.0-20509-a on NBCoInterpreter  
NativeBoost-CogPlugin-IgorStasenko.15 uuid:  
44b6b681-38f1-4a9e-b6ee-8769b499576a Nov 27 2012
NBCogit NativeBoost-CogPlugin-IgorStasenko.15 uuid:  
44b6b681-38f1-4a9e-b6ee-8769b499576a Nov 27 2012
https://git.gitorious.org/cogvm/blessed.git Commit:  
40ac7e7bdec6fef0e934d2c019b86db996053912 Date: 2012-11-19 18:54:49 +0100  
By: Mariano Martinez Peck <[hidden email]> Jenkins build #146


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
12