Hi Doru, list
I think that actions (those in the toolbar) should be rendered by a double dispatch mechanism... I want to be able to render different kind of things as an action (for instance, a multistate button). What do you think?
best,
Esteban
Hi,
I've been trying to run Kumpel on my computer the last few days following
the instructions here: http://www.moosetechnology.org/tools/kumpel
But i got nothing so far, even when i left my computer a couple of hours
doing the following:
KMPProject new
projectName: 'verveinej';
startRev: '1';
endRev:'2';
url: 'svn://scmscm.gforge.inria.fr/svn/verveinej/';
buildDiffs: true;
load
On my terminal i got this:
/usr/bin/zenity
Building Project verveinej main
Step 1: Loading Project Info...
Step 2: Loading Initial List of Directory Tree...
Step 3/4: Loading Logs...
Step 4/4: Loading File Diffs...
Initial Diff Path=svn://scm.gforge.inria.fr/svn/verveinej Thread 1
: Loading Diff 2
took miliseconds to load diffs: 15237
and then i got stuck.
Any suggestions? am i doing something wrong?
Regards,
--
Felipe González Martínez
Estudiante de Ingeniería Civil en Computación
Departamento de Ciencias de la Computación
Universidad de Chile
I hope this is one of our DNS server that is down or something.
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Hi!
We are glad to announce the first stable release of the DBXBrowser, named
Neptuno, the last piece in the DBXTalk tools project sponsored by ESUG.
*What is this browser?* It is a Glamour based browser which works as a GUI
to work with OpenDBX connections.
*
How does it look like?* I attach a screenshot with a brief look :)
*Which databases does it work with?* It is currently working with OpenDBX
connectors for:
- mysql
- postgresql
- oracle
- sqlite
*
How should I download it?* I'd like to link to the site here, but it's
currently down (and we are working for your happiness :D ), so:
Gofer it
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfDBXBrowser';
load.
(((Smalltalk at: #ConfigurationOfDBXTools)
perform: #project)
perform: #version: with: #stable)
load: 'Neptuno'
*How should I contact the DBXTalk team for feedback, bug reports,
questions, or whatever?*
The project's mailing list: dbxtalk(a)googlegroups.com
The project's issue tracker: http://code.google.com/p/dbxtalk/issues
The (currently down) site, with docs and stuff:
http://dbxtalk.smallworks.com.ar/
Thanks!
The DBXTalk team
Hi!
I have a browser where I do something like:
browser transmit
to: #somePane;
andShow: [ :a |
a dynamic presentation: [ :some :element | some custom: element
buildCustomBrowser ]
]
And then, I have implemented #buildCustomBrowser for example as:
buildCustomBrowser
| browser |
browser := GLMTabulator new.
browser row: #tables.
browser transmit
to: #tables;
andShow: [ :a |
a table
title: ('Columns for {1}' format: { table name });
addColumn: (GLMTableColumn new title: 'Column name'; computation:
#name);
addColumn: (GLMTableColumn new title: 'Null'; computation: [
:column | column nullable asString ]);
addColumn: (GLMTableColumn new title: 'Type'; computation: [
:column | column typeName asString ]);
addColumn: (GLMTableColumn new title: 'Length'; computation: [
:column | column length asString ]);
addColumn: (GLMTableColumn new title: 'Primary Key'; computation: [
:column | column isPrimaryKey asString ]);
display: self columns;
yourself.
].
^browser
And It does not render the table :(. If I change it to something like:
buildCustomBrowser
| browser |
browser := GLMTablePresentation new.
browser
title: ('Columns for {1}' format: { table name });
addColumn: (GLMTableColumn new title: 'Column name'; computation:
#name);
addColumn: (GLMTableColumn new title: 'Null'; computation: [
:column | column nullable asString ]);
addColumn: (GLMTableColumn new title: 'Type'; computation: [
:column | column typeName asString ]);
addColumn: (GLMTableColumn new title: 'Length'; computation: [
:column | column length asString ]);
addColumn: (GLMTableColumn new title: 'Primary Key'; computation: [
:column | column isPrimaryKey asString ]);
display: self columns.
^browser
It works, but I can't have several presentations for the same object... :(
I tried debugging the code, but I get lost and lost a lot of time without
figuring anything :(.
Is there a way to do this? any workaround? or is it a bug or it is
ignorance from my side?
Thanks!
Guille
On Mon, Jan 9, 2012 at 11:24 PM, Julia Lawall <julia.lawall(a)lip6.fr> wrote:
> On Mon, 9 Jan 2012, Usman Bhatti wrote:
>
> For me, it should work without modification....The following method that
>> you
>> are using should carry out the desired functionality...
>> LinearFillColor: #counts within: rules;
>>
>
> Thanks, but I'm not sure to understand. We just got one white box and one
> black box. Maybe it will look better with more data?
Yes. That is the reason. You can see a gradient of color for nodes with
more data.
>
>
> julia
>
>
> LinearFillColor: part should take as a parameter the count of a single
>> rule.
>> The within: part should take an array that contains all the counts of all
>> your rules in the system...
>>
>> On Mon, Jan 9, 2012 at 4:50 PM, Julia Lawall <julia.lawall(a)lip6.fr>
>> wrote:
>> I got some help from Damien Cassou, and he wrote the following
>> code:
>>
>> viewRules: rules
>> view interaction popupText: [:rule | rule ruleName].
>> view shape rectangle
>> linearFillColor: #counts
>> within: rules;
>> withoutBorder.
>> view nodes: rules forEach: [:rule | self viewRule: rule].
>> view verticalLineLayout.
>>
>> I would like the colors not to be arbitrary, but to vary
>> depending on the counts value. For example, for a small value,
>> I would like a light color and for a large value I would like a
>> dark color. I could for example normalize the values so that
>> they are between 0 and 100. Is there an easy way to do this?
>>
>> thanks,
>> julia
>>
>>
>>
>>
For me, it should work without modification....The following method that
you are using should carry out the desired functionality...
LinearFillColor: #counts within: rules;
LinearFillColor: part should take as a parameter the count of a single
rule. The within: part should take an array that contains all the counts of
all your rules in the system...
On Mon, Jan 9, 2012 at 4:50 PM, Julia Lawall <julia.lawall(a)lip6.fr> wrote:
> I got some help from Damien Cassou, and he wrote the following code:
>
> viewRules: rules
> view interaction popupText: [:rule | rule ruleName].
> view shape rectangle
> linearFillColor: #counts
> within: rules;
> withoutBorder.
> view nodes: rules forEach: [:rule | self viewRule: rule].
> view verticalLineLayout.
>
> I would like the colors not to be arbitrary, but to vary depending on the
> counts value. For example, for a small value, I would like a light color
> and for a large value I would like a dark color. I could for example
> normalize the values so that they are between 0 and 100. Is there an easy
> way to do this?
>
> thanks,
> julia
>