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

World: r3wp

[View] discuss view related issues

Anton
8-May-2005
[1043]
Did you install the binary into the same directory as your other 
Views ?
Henrik
8-May-2005
[1044]
yes
Anton
8-May-2005
[1045x2]
shadwolf -> I meet you in "Performance" group
mmm.
shadwolf
8-May-2005
[1047]
ypu can say I hate capitalism because it makes  little people very 
ricth and most of the people just poor  without having a rechange 
solution ;)
Henrik
8-May-2005
[1048]
running scripts directly as an argument works....
Volker
8-May-2005
[1049]
debian? you lack a config-file for teminal which name i forgot.
Anton
8-May-2005
[1050]
There's a quick workaround maybe - run a "halt" script. Does it give 
a console then?
Volker
8-May-2005
[1051x3]
termcap?
its in some old package for backward compatiility
shadwolf: try setting all inbuild functions to none and see if the 
system needs less memory. maybe that helps
Henrik
8-May-2005
[1054]
ah... let me check...
Anton
8-May-2005
[1055]
Mmm.. When you figure it out, write a quick "install script", which 
detects debian (if you can), and alerts the user with the advice. 
Then, when someone asks in future, you can just give your script. 
Also, this may evolve into a fully cross-platform installer script.
Henrik
8-May-2005
[1056]
with a halt script I get a prompt but no keyboard interaction
Volker
8-May-2005
[1057]
/etc/termcap ? i lack some concentration, early morning here. carl 
has changed keyboard handling for redirection and now you need that 
stuff. but cant remember the names. apt-getted something and it worked.
Henrik
8-May-2005
[1058]
installing termcap-compat (ubuntu)
Volker
8-May-2005
[1059]
i seem to remember that name. :)
Henrik
8-May-2005
[1060]
that was it! thanks
Volker
8-May-2005
[1061]
have fun :)
Anton
8-May-2005
[1062]
Excellent. Don't forget to write that script !  :)
Henrik
8-May-2005
[1063]
when I get time...
Anton
9-May-2005
[1064]
As a minimum copy the notes into a text file...
Henrik
9-May-2005
[1065]
when I get time... :-) I'm really hung up right now
Luis
9-May-2005
[1066]
Hi, i've a little problem is there a field property to limit the 
amount onf text an user can type in ? does it need to be coded or 
this is just impossible ?
Henrik
9-May-2005
[1067x2]
we talked about this not long ago...
http://www.rebol.org/cgi-bin/cgiwrap/rebol/ml-display-message.r?m=rmlCDDQ


this has some ideas. It's not easy unfortunately, but it can be done.
Maxim
9-May-2005
[1069x2]
hi guys, does opening a non-border window on linux garantee a window 
without borders in the later betas?
I remeber someone posting that x forces a border on some versions/builds 
of linux....
Ammon
9-May-2005
[1071]
It isn't X that forces the window border, it is the window manager 
(IIRC...)
JaimeVargas
10-May-2005
[1072]
Ammon is right.
Anton
11-May-2005
[1073]
Henrik, I've saved an extract to a text file, but I probably won't 
publish it for a while. Eventually it will go up, though...
Allen
11-May-2005
[1074x2]
Carl has slain one of the nasty recycle bugs. Yay! http://www.rebol.net/cgi-bin/rambo.r?sort=1&limit=1&cmd=Search&id=3403&pattern=
Fixed in test build 1.2.103
fixed in test build 1.2.103
DideC
12-May-2005
[1076]
I remember the problem with Rebol/view, Linux and foreign character 
input in field/area (spanish/portugese).
What was the solution, if any ?
eFishAnt
14-May-2005
[1077]
Does anyone know how to create "face in more than one pane"?
Gabriele
14-May-2005
[1078]
>> win: layout [t: text "hello" p: panel [text "in panel"]]
>> insert tail p/pane t
== []
>> view win

** Script Error: Face object reused (in more than one pane): hello
** Where: view
** Near: show scr-face
if new [do-events]
Volker
14-May-2005
[1079]
could such errors could add a field for the face? so that we can 
look into /stye and /facets? could help
[unknown: 10]
14-May-2005
[1080x2]
dt ws ht nws
sorry
Volker
14-May-2005
[1082]
encryption contest? ;)
[unknown: 10]
14-May-2005
[1083]
:)
eFishAnt
14-May-2005
[1084x5]
Volker....ditto from me.  (Gab? ;-)
in this case, 'win should also be shown in the Script Error.
oops, that is not right...hang on.
(I think there is a good set up here somewhere...)
it should be 'win. (too much caffeine)
François
14-May-2005
[1089]
Just my 1 cent contribution: there is a bug with the drop-down face 
when no action is set. The 'action facet defaults wrongly to 'show-dropdown, 
making the drop-down to freeze when the user does not override it. 
The fix is simply drop-down with [action: none]
Gabriele
15-May-2005
[1090]
françoise: please ad it to rambo if it's not there yet.
Micha
15-May-2005
[1091x2]
plis samples     set-it list ?
REBOL []
donnees: [
  ["un" 1 "rouge"]
  ["deux" 2 "vert"]
  ["trois" 3 "jaune"]
  ["quatre" 4 "bleu"]
]

view layout [ 
 list 300x200 [
    across 
    c1: text 100  [  c1/color: red ]

    c2: text 30
    c3: text 170
  ] supply [ print [ count index ]

   print [ face/font/color face/font ]



    ; SUPPLY est en fait une fonction avec 3 arguments :

    ; face=le facet, count=indice de la ligne, index=indice de la colonne

    face/text: either count > length? donnees [
      ""
    ] [
      to-string donnees/:count/:index
    ]
  ]
button "halt" [halt]]