Hi,
I'm creating a table with two column using glamour and I want the first
column size to be greater than the second one...in other words, how can I
control the width of the columns in a table?
Thanks!
Hernan.
--
*Hernán Wilkinson
Agile Software Development, Teaching & Coaching*
*Phone: +54 - 011 - *6091 - 3125*
Mobile: +54 - 911 - 4470 - 7207
email: hernan.wilkinson(a)10Pines.com
site: http://www.10Pines.com <http://www.10pines.com/>*
Address: Alem 693, Floor 5 B, Buenos Aires, Argentina
Hi!
We are currently trying to analyze JavaScript code in Moose. We have a working parser to generate .mse files. The parser extract for each JavaScript function its position in the source code, its amount of lines of code, incoming and outgoing invocations.
We also have the nesting between functions. How can we represent this in Famix? A famix function can have a parent scope, but a parent scope can either be a package or a namespace, and not a function. Any hint ?
Another question. How can we link the source code to the famix model?
Help appreciated
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Ok, I admit defeat. I see other issues in the bug tracker with components
listed, such as EyeSee, but I can't seem to figure out how to tag my bugs.
could someone explain briefly, please?
Thanks,
Chris
Did someone try to export individual panes of a glamour browser to an image
file?
I see that GLMBrowser>>screenshot: aFilenameString on: anObject after:
aBlock
does an export of the browser window's image but that more than what I am
looking for.
tx,
Usman
Dear all,
I have a question about the library EyeSee and Glamour Seaside:
I can use EyeSee to show the composite Diagram(you can see plotVector:
aSymbol) and it run very well on Pharo + Moose.
Now, my goal is representation of this diagram on Glamour Seaside(using
browser, display on Glamour+Pharo and on the web Glamour+Seaside). But I
don't find any solution for resolve this problem.
The code on Pharo + EyeSee:
The data that I use is a type Dictionary : a Dictionary 'result'
a result : key #I value: a vector I ( I1, I2 , I3)
key #S value: a vector S (S1, S2, S3)
>From this data, I return key and value and call a method plotVector:
result keysAndValuesDo: [ :key :eachSeries | eachSeries sqrt plotVector:
key]
Function plotVector to show diagram:
<http://forum.world.st/file/n4691887/CompositeDiagram%23S.png>
plotVector: aSymbol
   | cqdiag f Ylabel nbSpecies listColor diagRenderer |
   cqdiag := ESCompositeDiagram new.
   nbSpecies := (data at: 1) size.
   listColor := self initializeListColors.
   Ylabel := 'Number of Individuals of ',aSymbol asString.
   1 to: nbSpecies do:[:i|
      |diag|
      f := [ :x | (self atIndex: x) at: i ].
      diag := (ESDiagramRenderer new lineDiagram)
         y: f;
         defaultColor: (listColor at: i);
         yAxisLabel: Ylabel;
         regularAxis;
         startLineAtZero;
         models: index.
         cqdiag add: diag.
      ].
   cqdiag width: 1200.
   cqdiag height: 500.
   cqdiag preferredAxisMaxY: (self preferredDataMax).
   diagRenderer := ESDiagramRenderer new.
   diagRenderer diagram: cqdiag.
   ^ diagRenderer open
My goal is represent this composite diagram (a ESDiagramRenderer ---> n
lineDiagram) on Seaside + Glamour. I looked the examples of eyeseeDiagram on
GLMBasicExample and SGLBasicExample but I haven't idea to resolve my
problem. Could you help me, please!
Best regards,
--
View this message in context: http://forum.world.st/EyeSee-show-composite-diagram-on-Glamour-Seaside-tp46…
Sent from the Moose mailing list archive at Nabble.com.
hi!
Am I the only one to see no connection of the mail threads? Discussions are complete entangled. Is it because of my mail client?
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
I was just pointing someone to have a look at Moose, but I'm not sure of
the status of Moose 4.8 Development. I understand that Moose is
tracking Pharo 3.0, but I'm unsure if that is being done in 4.8, or 4.8
was going to synch with Pharo 2.0, and 4.9 was to track Pharo 3.0.
Could you clarify.
This from February...
http://forum.world.st/when-do-we-release-4-8-td4670554.html
cheers -ben
Andre Hora wrote:
>I see space to investigate the use of a graph database such as http://www.neo4j.org in order to store the model. The >Moose model is "just" a graph.
What do you hope to achieve by using a graph database? From my POV it just looks like a very inefficient
java based image. 64 bit though.
Stephan
Some thoughts on the interaction with a Moose server retained from the
discussion with Anne and Vincent (it was also Vincent in my previous mail
but i misspelt :-).
With the current implementation, one can start by interacting with a model
at any level (allClasses, allMethods, etc.) and then narrow his search on
an entity or a set of entities. Every entity returns in the results the
list of msgs it implements. We are working on how to correctly choose a
specific moose entity from the returned collection (see my previous mail).
Scoping information is essential to correctly identify/find an entity. So
scoping information can be retained by the way user interacts with the
server. For example:
http://mooseserver/allPackage/first/allClasses/first/allMethod/first
But that would mean interaction is restrictive, one has to start with the
highest level of container (allPackages in java) and drill down to search
for the required entity. Not retained.
Nicolas P. suggested to keep a way to search entities by their mooseIDs as
well so we'll implement it as well.
Specify the number of entities to return.
Be able to specify an element by its position in the collection returned.
http://mooseserver/allPackage/3/allClasses
What do you think?
Usman
(* I send the other part without finishing it *)
Wouldn't it be
nice (useful) if a layout could have a legend easily ?
I mean
automatically making a kind of grid layout representing different nodes
and edges, with the possibility of telling what they mean ?
Regards
Mathieu