[REBOL] Re: Wake up ;-)

2004-03-02 Thread Alan Crandall
Neato! Though at the moment, it does seem to fail after a while. :( The plugin stopped working after about 30 - 40 seconds after the install. Have no idea why as it's working here with no problems.Even have a page of the Rebol 1 liners here: http://home.comcast.net/~alanore/rebol/demo/index.html

[REBOL] Re: [Time frame for REBOL/VIEW 1.3]

2004-03-02 Thread Hallvard Ystad
Hello I don't know if I'm supposed to report bugs for view1.3, and I don't know where to, and this list surely is not the best place, but here goes anyway: I have a problem updating lists with the newest view1.3beta. When I update, the contents are "almost there", because the slider clearly kn

[REBOL] Re: Right mouse button popup-menu for all my REBOl apps.

2004-03-02 Thread Al TS
Hi Gregg, > If your app is already handling events (e.g. by calling VIEW), you > don't need to call DO-EVENTS again. Yes Gregg that's right. My app is for example a style definition [face with etc...] defined in a module like the Show-menu function and all the functions of the differents libs i

[REBOL] Re: [Time frame for REBOL/VIEW 1.3]

2004-03-02 Thread Ammon Johnson
I had a little trouble updating the lists in 1.3 initially too, but then I discovered that all you have to do is change the DATA of the list and call its UPDATE function and you are good to go! HTH ~~Ammon ;~> - Original Message - From: "Hallvard Ystad" <[EMAIL PROTECTED]> To: <[EMAIL

[REBOL] Re: Wake up ;-)

2004-03-02 Thread Henrik Mikael Kristensen
Alan Crandall wrote: > Neato! > > Though at the moment, it does seem to fail after a while. :( The plugin > stopped working after about 30 - 40 seconds after the install. > > Have no idea why as it's working here with no problems.Even have a page of the Rebol > 1 liners here: http://home.comcas

[REBOL] Re: [Time frame for REBOL/VIEW 1.3]

2004-03-02 Thread Hallvard Ystad
Ah! Brilliant. So now 'prob works again. updating BOTH 'lines and 'data in the list doesn't seem to bother neither earlier versions nor the 1.3beta, so updating the list can be done in a manner that works for both. And tada! The script turns out to work wonderfully with the plugin module: http

[REBOL] Re: [Time frame for REBOL/VIEW 1.3]

2004-03-02 Thread Ammon Johnson
Actually, I am afraid that there isn't a clean solution unless you insert code to check which version is running cause for some reason when updating both LINES and DATA in 1.2.8 and previous versions sometimes leaves the first item in the list 2 or 3 times. ;-( HTH ~~Ammon ;~> - Original Me

[REBOL] Re: Right mouse button popup-menu for all my REBOl apps.

2004-03-02 Thread Ladislav Mecir
Al TS napsal(a): >I now the Rebol Style is not to have libs concept but put all the source in the same >file > That is a subjective POV. I *am* using libraries. I am using http://www.fm.vslib.cz/~ladislav/rebol/include.r to handle my optimizing routines, matrix processing routines etc. > BUT

[REBOL] Re: Wake up ;-)

2004-03-02 Thread iNetW3
Finally, a Plug-in But it's just not working for me. My IE settings are all correct. Has anyone gotten it to work for them? - Original Message - From: Henrik Mikael Kristensen <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 02, 2004 3:33 AM Subject: [REBOL] Re: Wake up

[REBOL] YAPAQ

2004-03-02 Thread Hallvard Ystad
Hi, YAPAQ: Yet Another PArse Question I know this has been asked before, but the list archives are so full of parse emails that I couldn't find it. Here goes: I want to parse a string like this: {word1 word2 "expression 1" "expression 2" word3 "expression 3"} and I want the output to be: ["wo

[REBOL] Re: Wake up ;-)

2004-03-02 Thread Bruno G. Albuquerque
It looks it would work for me *IF* there was some way to configure it to use a proxy server. I guess what it should do is use whatever is set in the IE connection settings. -Bruno iNetW3 disse: > Finally, a Plug-in > > But it's just not working for me. My IE settings are all correct. Has > an

[REBOL] Re: Wake up ;-)

2004-03-02 Thread Maxim Olivier-Adlhoch
I have the same limitation! -MAx --- "You can either be part of the problem or part of the solution, but in the end, being part of the problem is much more fun." > -Original Message- > From: Bruno G. Albuquerque [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 02, 2004 9:01 AM > To: [

[REBOL] Re: Right mouse button popup-menu for all my REBOl apps.

2004-03-02 Thread Maxim Olivier-Adlhoch
you can checkout slim.r Steel Library Manager. its a tool I've developed which attempts to standardize the way we all use our external stuff. basically, it offers integrated tools to manage namespaces in the way you want. its very versatile, and it even handles resources locally to itself, s

[REBOL] just some praise

2004-03-02 Thread Greg Brondo
I just want to say 'thank you' to all the people on this list who help us newcomers to Rebol. I must say that this is one of the best lists I've ever partcipated. Thanks much! Greg Brondo -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subjec

[REBOL] upcomming tool [glayout]

2004-03-02 Thread Maxim Olivier-Adlhoch
hi everyone, just tought I'd let you all in on glayout. Its an integration of the core functionality of the second-generation glass layout engine RIGHT INTO VID :-) this will let you build uis based on the nested row/column layout mechanism. everything resizes when the window is resized, an

[REBOL] Re: YAPAQ

2004-03-02 Thread Volker Nitsch
Am Dienstag, 2. März 2004 14:53 schrieben Sie: > Hi, > > YAPAQ: Yet Another PArse Question > .. > I want to parse a string like this: {word1 word2 "expression 1" "expression > 2" word3 "expression 3"} and I want the output to be: ["word1" "word2" > "expression 1" "expression 2" "word3" "expression

[REBOL] Re: YAPAQ

2004-03-02 Thread Gabriele Santilli
Hi Hallvard, On Tuesday, March 2, 2004, 2:53:19 PM, you wrote: HY> I want to parse a string like this: {word1 word2 HY> "expression 1" "expression 2" word3 "expression 3"} HY> and I want the output to be: ["word1" "word2" "expression HY> 1" "expression 2" "word3" "expression 3"] >> parse {word1

[REBOL] Re: YAPAQ

2004-03-02 Thread Paul Tretter
load {word1 word2 "expression 1" "expression 2" word3 "expression 3"} - Original Message - From: "Hallvard Ystad" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 02, 2004 7:53 AM Subject: [REBOL] YAPAQ > > Hi, > > YAPAQ: Yet Another PArse Question > > I know this has b

[REBOL] Re: Wake up ;-)

2004-03-02 Thread Vos, Doug
Can't load this or install it, seems to fail on install or have proxy problems. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Petr Krenzelok Sent: Tuesday, March 02, 2004 1:29 AM To: [EMAIL PROTECTED] Subject: [REBOL] Re: Wake up ;-) A J Martin napsa

[REBOL] Re: newbie question (and some frustration)

2004-03-02 Thread Greg Brondo
Thanks! Reduce worked like a champ. Now I think I'm starting to understand a 'little' better ;-). BTW, is there anywhere to find info about all the available system objects and what not in Rebol? I 've notice in a some or Carl's scripts he accesses object that I've never seen mentioned in t

[REBOL] Re: upcomming tool [glayout]

2004-03-02 Thread Andreas Bolka
Tuesday, March 2, 2004, 4:21:34 PM, Maxim wrote: > just tought I'd let you all in on glayout. > Its an integration of the core functionality of the > second-generation glass layout engine RIGHT INTO VID :-) > this will let you build uis based on the nested row/column layout > mechanism. sound

[REBOL] Re: newbie question (and some frustration)

2004-03-02 Thread Ammon Johnson
>From the Link console... Found these words: blank-face object! [type offset size span pane text color image effec... ctx-install-fileset object! [spec-obj] ctx-linkobject! [ctx-link-exec init-link-root link-sync server-tag... ctx-server-prefs object! [select-serve

[REBOL] Re: Wake up ;-)

2004-03-02 Thread Petr Krenzelok
Vos, Doug napsal(a): >Can't load this or install it, seems to fail on install or have proxy >problems. > > > What you guys all are doing? W2K here, behind complicated proxy and firewall set-up, and works nicely here ... IE 5.50 -pekr- -- To unsubscribe from this list, just send an email to

[REBOL] Re: newbie question (and some frustration)

2004-03-02 Thread Ammon Johnson
I really should start reading my messages before I post them. ;~> I don't know how I missed the first line from my console session... >> ? Object! HTH ~~Ammon ;~> - Original Message - From: "Ammon Johnson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 02, 2004 9:4

[REBOL] Re: newbie question (and some frustration)

2004-03-02 Thread Maxim Olivier-Adlhoch
> -Original Message- > From: Greg Brondo [mailto:[EMAIL PROTECTED] > BTW, is there anywhere to find info about all the available > system objects and > what not in Rebol? I 've notice in a some or Carl's scripts > he accesses > object that I've never seen mentioned in the documentat

[REBOL] Re: Wake up ;-)

2004-03-02 Thread Bruno G. Albuquerque
Petr Krenzelok disse: >>Can't load this or install it, seems to fail on install or have proxy >> problems. > > What you guys all are doing? W2K here, behind complicated proxy and > firewall set-up, and works nicely here ... > > IE 5.50 Nothing, really. After installing and trying tro check the d

[REBOL] Re: upcomming tool [glayout]

2004-03-02 Thread Maxim Olivier-Adlhoch
jgoodies seems nice!!!. It goes a long way towards what glass is meant to be when finished. My current design problem, is with regards to the new glass dialect. I wonder how I can make it so that the general concept of "styles" is kept, since we've all been so spoiled by its ease of use. WRT

[REBOL] Re: upcomming tool [glayout]

2004-03-02 Thread Gregg Irwin
Hi Andreas, AB> sounds interesting. if you know a bit about java i'd suggest having a AB> look on jgoodies forms (http://www.jgoodies.com/freeware/forms/) which AB> is by far the best layout engine i've ever worked with. may be AB> inspiring ... Might have to look into that. The Mullet and Sano

[REBOL] Re: Wake up ;-)

2004-03-02 Thread Vos, Doug
Same exact error message I am getting. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bruno G. Albuquerque Sent: Tuesday, March 02, 2004 11:56 AM To: [EMAIL PROTECTED] Subject: [REBOL] Re: Wake up ;-) Petr Krenzelok disse: >>Can't load this or insta

[REBOL] Re: Wake up ;-)

2004-03-02 Thread Vos, Doug
When I visit this link... http://www.rebol.cz/plug-in/bounce-alpha.html I see this and then the DO YOU WANT TO INSTALL PLUGIN? Dialogue. Which I say YES, please install plugin. and then ... The rebol window opens and I get this ** Access Error: Cannot connect to www.rebol.cz ** Where: open-pr

[REBOL] Re: Wake up ;-)

2004-03-02 Thread Maxim Olivier-Adlhoch
> > When I visit this link... > > http://www.rebol.cz/plug-in/bounce-alpha.html > > I see this and then the DO YOU WANT TO INSTALL PLUGIN? > Dialogue. Which I say > YES, please install plugin. > the plugin installs as it does not ask me no more, if I refresh the page... > and then ... The

[REBOL] Re: Wake up ;-)

2004-03-02 Thread Bruno G. Albuquerque
Maxim Olivier-Adlhoch disse: > I don't even get the rebol window... I guess it only appears in the case of an error. > does the plug-in expect a default install of rebol?. I don't think so. Based on the size of the plugin itself I would guess it has a complete REBOL interpreter inside it. -Br

[REBOL] Rebol/plugin install issues - was Re: Wake up ;-)

2004-03-02 Thread Vos, Doug
Yes, it downloads a full rebol/view interpreter and attempts to install it as a plugin, however not sure were the loading and installing of the rebol/view interpreter failes... We need a few things to test when first installing the rebol/plugin. Don't understand yet what is failing in the instal

[REBOL] Re: Wake up ;-)

2004-03-02 Thread Jason Cunliffe
Please, anyone having trouble with the plugin *specify* how your system is configured: Browser, OS version, cpu, ram etc fyi, the new plugin runs ok here on two machines: Win98se IE6.0.2 500mhz 256Mb ram WinXP IE6.0.2 3Ghz 512Mb ram It loads and installs so quickly [about 15secs on WinXP no

[REBOL] Re: Wake up ;-)

2004-03-02 Thread Bruno G. Albuquerque
Well, the problem being reported by me, at least, is simple. The plugin is not using a proxy server and need it to do so. :) Anyway, this is my configuration (I am sure it won't help). Windows 2000 SP4 Internet Explorer 6 (latest fixes applied) PIII 800 with 512 Mb -Bruno Jason Cunliffe disse

[REBOL] Re: Wake up ;-)

2004-03-02 Thread Vos, Doug
Running windows/XP with IE-6.0.2800.1105... Dell Precision laptop -- Pentium 4 with 1 GIG RAM Seems like the problem is related to proxy setting but there are no install instructions on this alpha release, not complaining, just trying to provide feedback helpful to those who are have not been ab

[REBOL] Re: Wake up ;-)

2004-03-02 Thread Vos, Doug
How did you manually change the proxy settings? What directory does rebol/plugin try to install in? It tried to install, but can find it anywhere... Running Windows/XP with IE-6 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bruno G. Albuquerque Sent:

[REBOL] Re: Rebol/plugin install issues - was Re: Wake up ;-)

2004-03-02 Thread Vos, Doug
The plugin will probably work on my home-PC running win-98 and IE-6, but the plugin fails on my work-PC - looks like a proxy related issue. (NOT SURE YET - just speculating). Unknowns: 1. Where does the plugin attempt to install? What directory? 2. How would I manually configure the plugin to use

[REBOL] Re: Wake up ;-)

2004-03-02 Thread Maxim Olivier-Adlhoch
I can't see how ram and GHz affect anything, but I'm using: IE v6.026 on NT4 with latest SP It IS a milestone for rebol to fun from browser. Now we can put our apps online and let people try them without any fuss... once it gets ironed out. :-) -MAx > -Original Message- > From:

[REBOL] Re: YAPAQ

2004-03-02 Thread Carl Read
On 03-Mar-04, Volker Nitsch wrote: > Am Dienstag, 2. März 2004 14:53 schrieben Sie: >> Hi, >> >> YAPAQ: Yet Another PArse Question >> > .. >> I want to parse a string like this: {word1 word2 "expression 1" >> "expression 2" word3 "expression 3"} and I want the output to be: >> ["word1" "word2"

[REBOL] Re: Wake up ;-)

2004-03-02 Thread Bruno G. Albuquerque
Well, I didn't. I still can't use it. Anyway, the plugins install itself in "C:\WINNT\Downloaded Internet Files" (at least on my configuration) but there is no config file for it or anything. -Bruno Vos, Doug disse: > How did you manually change the proxy settings? > What directory does rebol/

[REBOL] Re: Wake up ;-)

2004-03-02 Thread Maxim Olivier-Adlhoch
This is getting really strange! I've read the plugin docs and by what I read, it seems that the plug-in did not install itself correctly (red X in white box) . I've looked in the supposed install directory and rebol is nowhere to be found! YET, rebol does not ask me to download itself, letting

[REBOL] Re: Wake up ;-)

2004-03-02 Thread bry
> What could this plug-in be useful for? Please note this is not sticking a > knife into Rebol's back, I had the same question for Java applets as well! > 1. Well if it's an ActiveXObject it should be usable from within any OLE container right? Microsoft Word, PowerPoint Presentations, as wel

[REBOL] Re: Wake up ;-)

2004-03-02 Thread Carl Read
On 03-Mar-04, Bruno G. Albuquerque wrote: > Well, I didn't. I still can't use it. > Anyway, the plugins install itself in "C:\WINNT\Downloaded Internet > Files" (at least on my configuration) but there is no config file > for it or anything. C:\WINDOWS\Downloaded Program Files for me on Win98s

[REBOL] 3 flex with the new browser REBOL/Plugin

2004-03-02 Thread Jeannot Chapdelaine
Very interesting. I tried 3flex-13 from vanilla (http://www.langreiter.com/space/3flex). It works well but a little slow. Hopefully the next plugin version will fix it. Jeannot Chapdelaine -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subj

[REBOL] Re: The complete Rebol named argument passing

2004-03-02 Thread Anton Rolls
This sparks an idea for new syntax for me. How about: find/::case/::skip a b size That way you can pick and choose which refinements will be propagated and which are hard-coded. eg: find/::case/skip a b size This means: /case is propagated if case is true /skip is always