r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[View] discuss view related issues

Pekr
22-Sep-2005
[2711x2]
ok, I thought so, once you told me that it is not what I wrote. It 
is because of wrong translation into english, it should probably 
be - "so did anyone any changes in (for?, into?) focus system for 
(in) recent betas?" How should I write it correctly in english?
btw my friend Bobik informs me, that he tried with 1.2.48 and it 
does not work too ... maybe you meant some 1.3 View branch, when 
1.3 project was started ....
Bobik
22-Sep-2005
[2713]
Yes it is true
Graham
22-Sep-2005
[2714]
Well, since RT is the only agency that can make changes, I would 
have asked .. "Did RT make any changes in the focus system for 1.3" 
and I would have said, yes :)
Pekr
22-Sep-2005
[2715x2]
Graham - is it? :-) I thought they have their "co-operators" from 
community now, no? Gabriele taking care of some bits of networking/LNS, 
Cyphre AGG stuff, Gregg something else and IIRC it was Romano who 
did some changes to VID focusing, no? So that is why I asked "anyone" 
instead of RT ... :-)
... and I don't expect Carl (RT) to check every bit of changes, as 
he imo expects us to do testing and post reports :-) Anyway - bug 
is submitted, let's hope it will get corrected ...
Graham
22-Sep-2005
[2717x2]
View1240031.exe prevents the parent window from coming to the front.
I can test it on others ... but I did this all before.
Pekr
22-Sep-2005
[2719]
ok, thanks ... that is a good info ...
Graham
22-Sep-2005
[2720]
In the old code, you can see things like, "Jeff, why did you do this 
for?" but I suspect that everything is now checked by Carl very closely.
Pekr
22-Sep-2005
[2721]
yes? heh, I wonder if Rebol does have some easter eggs :-)
Geomol
22-Sep-2005
[2722]
As a side-note, requesters in Canvas are using INFORM, thus are modal.
Graham
22-Sep-2005
[2723]
Anyone have an idea of how hard it would be to mockup similar dashboards 
to these ones ?

http://www.ve.com/kavachart/prod_va_demos.html
Henrik
23-Sep-2005
[2724]
not particularly hard, I think...
Graham
23-Sep-2005
[2725]
You're on Henrik.  Then we can post them to the wikibook as view 
examples :)
Henrik
23-Sep-2005
[2726]
woah, did I say that? :-) meanwhile I do have a different example 
that could be useful: http://hmkdesign.dk/rebol/clock.zip
Graham
23-Sep-2005
[2727x4]
So retro!
I have to step back across the room to read the clock :)
I wonder what the implementation approach to the patient management 
dashboard would be.
create some type of self graphing widget perhaps
Henrik
23-Sep-2005
[2731]
a face with a rate that grabs some data from an array
Graham
23-Sep-2005
[2732x2]
I don't think they're intended to be in real time.
Just more to provide a snapshot over time.
Henrik
23-Sep-2005
[2734x2]
still, wouldn't it be a good approach? the rate could be once per 
hour, plus on demand updating
this way, if you really want realtime, it's a matter of adjusting 
the rate
Graham
23-Sep-2005
[2736x2]
I suspect it is unnecessary for the task at hand, and would complicate 
the task somewhat.
still, it would be a good demo :)
Henrik
23-Sep-2005
[2738]
I'd love to see a demo of an overview of graphs updated in realtime 
from any source. any.
Graham
23-Sep-2005
[2739]
of any graph in any language or just Rebol?
Henrik
23-Sep-2005
[2740]
well for starters Rebol, but what if you could mix data like that 
and then just display it, no matter if it's CVS, rebol blocks or 
something measured off the serial port from a physical device.
Graham
23-Sep-2005
[2741]
sounds like you want to make a rebol oscilloscope
Geomol
23-Sep-2005
[2742]
Is the stock-market data available somewhere online?
Henrik
23-Sep-2005
[2743x2]
actually I think the hardest part would be to display a pretty graph 
:-) retrieving data could be done from within the graph face
I don't know about raw stock data...
Geomol
23-Sep-2005
[2745]
Temperature data is also good for that.
Graham
23-Sep-2005
[2746]
stock market data is available from yahoo I believe, but delayed 
by 15 mins or something
Henrik
23-Sep-2005
[2747]
graham: an oscilloscope could be a bit too intensive :-)
Geomol
23-Sep-2005
[2748]
Or sea-level (changes with tide and weather).
Graham
23-Sep-2005
[2749]
or Canvas release rates
Geomol
23-Sep-2005
[2750x3]
Wind direction.
lol
release rates contra size in kB
Graham
23-Sep-2005
[2753]
I guess I'd better find some docs on the draw dialect and see how 
easily this could be done.
Henrik
23-Sep-2005
[2754]
It could be nice to have general graphing tools for Rebol like RRDTool 
which is a very powerful (but complex) graphing package for Linux
Geomol
23-Sep-2005
[2755x2]
A start:
view layout [box white effect [draw [pen black line 0x100 10x80 20x85 
30x50 40x60 50x65 60x55 70x40 80x50 90x20]]]
Graham
23-Sep-2005
[2757]
or gnuplot
Geomol
23-Sep-2005
[2758x2]
To change data, you could do:
clear next find face/effect/draw 'line
append face/effect/draw data-block
show face
Graham
23-Sep-2005
[2760]
what about scatter plots ?