Hi,
I want to know if is possible to label the Edges in Roassal. For example, i
have two box and one Edges between both. I want put a text on this Edges.
Thanks
--
*ATREVI D. Fabrice*
*Master en Informatique A l'Institut de la Francophonie pour l'Informatique
(IFI/Hanoï)*
Hi,
I don’t know is there was already any discussion about this, but in vanilla Pharo when you right-click some entity in code, you get a browser, implementors or similar oren on it. In GTools a context menu pops up. Is browsing functionality re-mapped to some other shortcut, or just none uses it?
Uko
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 1086 by ukodrag: Nonexistent MalCustomObjectTraverser referenced
https://code.google.com/p/moose-technology/issues/detail?id=1086
Object>>#deepGraph: from Moose-Algos-GraphObjectTraverser references
nonexistent MalCustomObjectTraverser
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
I've been working in a data acquisition scenario today and GToolkit proved
to be of immense help.
Working in the live application, looking around for data (including file
contents), and inspecting it all + live debugging is really a sweet
experience.
With CommandShell I may not have to leave the environment...
Phil
Hi!
Just to share the result of a 30 minutes coding session.
Charter has grown with a double bar charter.
| b |
b := RTDoubleBarBuilder new.
b points: RTSVGEntity withAllSubclasses.
b value1: #numberOfMethods.
b value2: #numberOfVariables.
b open
produces the following:
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Hi guys - I was really amazed by the advances I saw being made in Moose at ESUG and so I’ve downloaded the latest 2292 image (using Pharo Launcher) to give things a spin.
Can I first check that this is the image I should use? I checked out the stable 4.9 version - but it doesn’t seem to have the playground that I observed people using at ESUG and seemed slicker? I should also say that I don’t mind if its a bit wobbly, as I figure I might as well help test the latest version.
Assuming this is the right version - I notice that on OSX when I press Shift-Enter (to spotlight search code), it doesn’t give me any auto-completed items like it does in Pharo (e.g. Typing “Order” doesn’t start showing any classes). I noticed this was broken in a version I downloaded at ESUG as well, so I took the latest just to check.
Tim
Hi!
When I compile a bunch of .pillar files, I have the following:
~/Dropbox/Workspace/2014-PillarTest/book-skeleton> ./compile.sh
Generating files for all chapters
At character 913: , expected
What should I do?
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Hi!
I think I have found a bug in the GTDebugger.
When I inspect a RTView, I have the graphical representation of the view. However, when I cmd-o an RTView, within the GTDebugger, I have the normal inspector. The ‘View’ tab is not selected. I prepared a video to illustrate this:
https://dl.dropboxusercontent.com/u/31543901/TMP/BugInTheDebugger.mov
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Hi all,
I would like parse a file of that structure:
-=-=-=-
1. Lorem ipsum dolor sit amet, <important
text> Cras sit amet elit euismod,
sodales nulla ac.
1. Lorem ipsum dolor <important text>, consectetur
adipiscing elit. Cras sit amet elit euismod,
2. Lorem ipsum dolor sit amet, consectetur
adipiscing elit. <important text 3> Cras sit
amet elit euismod.
2. Lorem ipsum dolor….
…
-=-=-=-=-
What is the best strategy to implement a parser using PetitParser? I need to identify each list, their nesting, and the <important text>.
I have tried to detect (i) first line of each list (#blank asParser, #number asParser plus, …), (ii) then the other lines and in the “==> [:node |…]” block to compute the indent. But I have failed and I do consider the <important text>.
Thank you for any idea!
Cheers,
Juraj