Hi,
I tried to load inti profiler, but without success:
Gofer new smalltalkhubUser: 'azazael'
project: 'inti';
package: 'ConfigurationOfInti';
load.
(Smalltalk at: #ConfigurationOfInti) load.
When I run "IntiExamples new openExample" I got an error:
MessageNotUnderstood: receiver of "initializeElement:" is nil
(more in the end of the email).
I tried pharo 3, moose 5 and moose 4.9. None of these were without errors.
What am I missing?
Cheers,
Jan
THERE_BE_DRAGONS_HERE
MessageNotUnderstood: receiver of "initializeElement:" is nil
31 August 2014 12:53:37.167557 pm
VM: unix - i686 - linux-gnu - NBCoInterpreter
NativeBoost-CogPlugin-GuillermoPolito.19 uuid:
acc98e51-2fba-4841-a965-2975997bba66 May 6 2014
NBCogit NativeBoost-CogPlugin-GuillermoPolito.19 uuid:
acc98e51-2fba-4841-a965-2975997bba66 May 6 2014
https://github.com/pharo-project/pharo-vm.git Commit:
ef5832e6f70e5b24e8b9b1f4b8509a62b6c88040 Date: 2014-01-26 15:34:28 +0100
By: Esteban Lorenzano <estebanlm(a)gmail.com> Jenkins build #14794
Image: Pharo3.0 [Latest update: #30856]
UndefinedObject(Object)>>doesNotUnderstand: #initializeElement:
Receiver: nil
Arguments and temporary variables:
aMessage: initializeElement: a RTElement
exception: MessageNotUnderstood: receiver of
"initializeElement:" is nil
resumeValue: nil
Receiver's instance variables:
nil
RTElement(RTAnnounceableObject)>>addInteraction:
Receiver: a RTElement
Arguments and temporary variables:
anInteractionClassOrInstance: nil
Receiver's instance variables:
announcer: an Announcer
shape: a RTArc
trachelShape: a TRArcShape
attributes: a Dictionary(#sbChildren->an OrderedCollection(a
RTNode<nil(ROMondr...etc...
view: nil
model: nil(IntiExamples) >> openExample
isFixed: false
connectedEdges: nil
RTElement(RTAnnounceableObject)>>@
Receiver: a RTElement
Arguments and temporary variables:
anInteractionClassOrInstance: nil
Receiver's instance variables:
announcer: an Announcer
shape: a RTArc
trachelShape: a TRArcShape
attributes: a Dictionary(#sbChildren->an OrderedCollection(a
RTNode<nil(ROMondr...etc...
view: nil
model: nil(IntiExamples) >> openExample
isFixed: false
connectedEdges: nil
[ :i | el @ i ] in RTSunburstNodeVisitor>>createArc
Receiver: a RTSunburstNodeVisitor
Arguments and temporary variables:
el: a RTElement
arc: a RTArc
auxArc: 360
auxRadius: 45
i: nil
Receiver's instance variables:
arcs: an OrderedCollection()
lines: an OrderedCollection()
node: a RTNode<nil(IntiExamples) >> openExample>
builder: a RTSunburstBuilder
radialSpacing: 5
angularSpacing: 0
interactions: an OrderedCollection(RTPopup nil MTInteraction)
weightBlock: [ :n | 1 ]
OrderedCollection>>do:
Receiver: an OrderedCollection(RTPopup nil MTInteraction)
Arguments and temporary variables:
aBlock: [ :i | el @ i ]
index: 2
Receiver's instance variables:
array: {RTPopup. nil. MTInteraction. nil. nil. nil. nil. nil.
nil. nil}
firstIndex: 1
lastIndex: 3
RTSunburstNodeVisitor>>createArc
Receiver: a RTSunburstNodeVisitor
Arguments and temporary variables:
el: a RTElement
arc: a RTArc
auxArc: 360
auxRadius: 45
Receiver's instance variables:
arcs: an OrderedCollection()
lines: an OrderedCollection()
node: a RTNode<nil(IntiExamples) >> openExample>
builder: a RTSunburstBuilder
radialSpacing: 5
angularSpacing: 0
interactions: an OrderedCollection(RTPopup nil MTInteraction)
weightBlock: [ :n | 1 ]
Hi!
Currently, the GTDebugger does not work well to see evolution of a RTView.
Consider the video:
https://dl.dropboxusercontent.com/u/31543901/TMP/RequestForFeature.mov
When I do the over operation, I still want to see the view displayed. And not inspecting the context.
That would be awesome!
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Hi,
I'm trying to load the GT Inspector and debugger from following instructions found at http://www.humane-assessment.com/blog/the-moldable-gtinspector-deconstructe… :
Gofer new
url: 'http://www.smalltalkhub.com/mc/Moose/GToolkit/main';
configuration;
load.
(Smalltalk globals at: #ConfigurationOfGToolkit) loadDevelopment.
(Smalltalk globals at: #GTInspector) registerToolsOn: Smalltalk tools.
(Smalltalk globals at: #GTDebugger) registerToolsOn: Smalltalk tools.
I then got this error. Is there something missing in the configuration?
This package depends on the following classes:
GLMBrowserTemplate
You must resolve these dependencies before you will be able to load these definitions:
GLMParameterizableExamplesBrowser
buildBrowser
compose
exampleIn:
exampleListIn:
exampleSelectorsFromClass:
installTitle
renderedExampleIn:
Regards,
Christophe.
Hi,
Recent changes in PetitParser have caused parsing to slow down by a factor
of 15-20. Here is an example run on freshly downloaded Moose image:
[|string allStyles text|
string := (PharoFilesOpener default changesFileOrNil contents copyFrom: 1
to: 60000).
text := string asText.
allStyles := {
'Announcement' -> TextColor green.
'Collections' -> TextColor blue.
'File' -> TextColor blue.
'Metacello' -> TextColor red.
'Monticello' -> TextColor magenta.
'Morphic' -> TextColor orange.
'Mooose' -> TextColor green.
'FAMIX' -> TextColor green.
'Roassal' -> TextColor green.
}.
allStyles do: [ :assoc | ((assoc key asParser, #newline asParser negate
star) matchingRangesIn: string) do: [:aRange | text addAttribute: (assoc
value) from: aRange first to: aRange last] ].
text] timeToRun ==> 15 sec
==============
now do this:
Gofer new url: 'http://smalltalkhub.com/mc/Moose/PetitParser/main';
version:'PetitParser-DiegoLont.233'; load.
and run the example again.
timeToRun ===> 2 sec
So, we need to have a look at what is added recently in PetitParser that is
making it slow down quite significantly because the for the larger systems,
this can be enormous.
regards,
Usman
P.S: Tests run on OS X 10.9.4, 2.3 GHz, 8 GB RAM, HD SSD.
Or should I move to Glamour?
On 28 Aug 2014, at 15:31, Yuriy Tymchuk <yuriy.tymchuk(a)me.com> wrote:
> HI guys,
>
> is it possible? I’ve tried `autoDeselection: false`, `multiSelection: true`… and it continues to deselect selected items :(. Maybe there is any kind of example how to do a classic checkbox tree? For example if we have filesystem and want to select which items to backup.
>
> Uko
Thanks Damien!
I am currently travelling. I will have a closer look at your fix next week.
Thanks for your work!
Cheers,
Alexandre
On Aug 26, 2014, at 9:38 AM, Damien Pollet <damien.pollet(a)gmail.com> wrote:
> …speaking of code changes, here's a small fix
>
> On 26 August 2014 15:41, Damien Pollet <damien.pollet(a)gmail.com> wrote:
>> On 26 August 2014 15:23, Alexandre Bergel <alexandre.bergel(a)me.com> wrote:
>>> Can you share what is necessary to reproduce the pictures you’ve sent ? (e.g., PoissonDiscDistribution class)
>>
>> sure:
>>
>> Gofer new
>> smalltalkhubUser: 'cdlm' project: 'Flatland';
>> package: 'PoissonDiscSampler';
>> load
>>
>> --
>> Damien Pollet
>> type less, do more [ | ] http://people.untyped.org/damien.pollet
>
>
>
> --
> Damien Pollet
> type less, do more [ | ] http://people.untyped.org/damien.pollet
> <Roassal2-DamienPollet.449.mcz>
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Clicking on the first few examples gives "MessageNotUnderstood:
TRBitmapShape>>width". I noticed they worked in Alexandre's demo. Is that a
more recent image? Available anywhere? Thanks.
-----
Cheers,
Sean
--
View this message in context: http://forum.world.st/Roassal-Examples-Error-tp4774167.html
Sent from the Moose mailing list archive at Nabble.com.
In my downloaded image, the morph that appears with the result is blue,
making it very hard to tell whether the text is selected. I noticed in
Doru's demo, it was gray and very clear when he selected the text. Any idea
why the difference?
-----
Cheers,
Sean
--
View this message in context: http://forum.world.st/New-PrintIt-tp4774170.html
Sent from the Moose mailing list archive at Nabble.com.
Hi Alex,
Any updates of the project about constructing visualizations with Roassal
for the web (with Amber?)?
Did that project get accepted for GSoc? If not, do you plan to have a
version of Roassal that could allow scripting visualizations on the web
(with Seaside)?
Because soon we'll need it ;).
regards,
usman
Hi guys,
some time ago I was complaining a lot about the fact that Moose image is much more different than Pharo and I created moose-less version on CI.
I was wrong in a first place because instead of giving useful feedback, I just complained. Please forgive me for that.
Now, I used moose-less image a couple of times, and then things were solved. Moreover GTools improved a lot, and now they are introducing a completely new developer experience, and we need to push them further.
That is why I remove the moose-less image from CI and if someone is frustrated with something, please take a deep berth and explain us what is wrong :).
Have a nice weekend!
Uko
Hi,
Roassal2 has new interaction RTShowLabel witch dynamically shows labels the same way RTShowEdge shows edges. It uses RTLabelled for placing labels.
Example:
-=-=-=- RTExample new dynamicLabels -=-=-=-
| view elements |
view := RTView new.
elements := RTEllipse new size: 30; elementsOn: (1 to: 20).
view addAll: elements.
RTCircleLayout new initialRadius: 150; on: elements.
elements @ (RTShowLabel new highlight: [ :value | value - 5 to: value + 5]; center; yourself).
elements @ (RTShowEdge new
connectTo: [ :value | value - 5 to: value + 5];
shape: (RTLine new color: (Color blue alpha: 0.4))).
view open
-=-=-=-
Picture:
Cheers,
Juraj
Hi guys,
in case you still don’t know there is a way to zoom your view by using mouse wheel. Just add:
view @ RTZoomableView.
and your view will zoom to mouse pointer on wheel scroll.
Uko
Dear Friends and Colleagues,
It is a great pleasure for me to announce the result of the 2014 Roassal contest organized by ObjectProfile.com
Certificates and the money awards were delivered during a ceremony held at the Esug conference, in Cambridge, UK.
This year we have two winners:
Roassal2 track:
“RTVoronyjBuilder” by Natalia Tymchuk
http://youtu.be/SlJptrlBbho
Roassal 3d track:
"Roassal City Layouts”, by Yuriy Tymchuk
http://youtu.be/CuimMwuZiGA
Other remarkable contributions:
"Navigate and visualize epidemiological models with the KendrickBrowser”, by Fabrice Atrevi
https://vimeo.com/103197416
"Explora Qualitas Corpus", by Leonel Merino
http://www.youtube.com/watch?v=0eoSV7LdPac
The very same contest will be organized next year.
Cheers,
Alexandre on behalf of the Object Profile crew
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Hi Alex,
Roassal menu items are added to the Tools menu in Pharo, which makes
looking for "native" tools a bit difficult. I propose to place Roassal
items in a Roassal menu. I did a bit of modification to create a Roassal
menu and place items there. Can you review and integrate it?
https://dl.dropboxusercontent.com/u/11804892/Roassal-world-menu-reorganisat…
tx.
usman
[image: Inline image 3]
In freshly downloaded Moose latest, opening the Roassal Easel from the world
menu -> MNU StrikeFont>>#glyphRendererOn:. Known bug?
-----
Cheers,
Sean
--
View this message in context: http://forum.world.st/Roassal-Easel-Red-X-of-Death-tp4773878.html
Sent from the Moose mailing list archive at Nabble.com.
I use this feature a lot for Workspaces from the window menu. It helps when I
have a bunch of experiments open to distinguish them from the task bar. I
can still do it from the halos, but it'd be nice to have available more
obviously.
-----
Cheers,
Sean
--
View this message in context: http://forum.world.st/Changing-Playground-Title-tp4773952.html
Sent from the Moose mailing list archive at Nabble.com.
Hi,
I am playing with Ronie just now with Woden and Glamour, and we just
noticed that this code crashes the regular VM:
v := RWView new.
v add: RWCube element.
v addInteraction: RWMouseKeyControl.
v open
v open
This is just a reminder. I am sure Ronie will not let it stay like that for
too long :).
Doru
--
www.tudorgirba.com
"Every thing has its own flow"
This example produce a bug dnu.
view := RTView new.
el := (RTBox new size: 20) elementOn: #symbol.
el @ RTPopup.
view add: el.
view open
--
Cheers,
Leo Perard
University of Lille 1