World: r3wp
[!REBOL3-OLD1]
older newer | first last |
BrianH 26-Jan-2009 [10193] | The dictionary should be in the DocBase wiki. |
[unknown: 5] 26-Jan-2009 [10194x2] | Yeah we can put it there. |
The info that is. | |
Nicolas 26-Jan-2009 [10196] | Thank You Oldes |
Pekr 27-Jan-2009 [10197] | Carl also built Community site upon my suggestions. Hopefully everything important is there. Still better than nothing :-) http://www.rebol.com/community.html |
BrianH 27-Jan-2009 [10198] | I like it :) |
Pekr 27-Jan-2009 [10199] | Brian - could you look at my #904 msg, if something like that could be possible in RebDev? :-) |
BrianH 27-Jan-2009 [10200] | Yes, but not the leading / version. Chat commands are parsed with block parsing. |
Pekr 27-Jan-2009 [10201] | What's wrong with following? (except the fact that we can't user / as a start of path datatype, which complicates the request) >> parse [/ /R3/GUI] [word! path!] == false >> parse [/ /R3/GUI] [word! path!] |
Henrik 27-Jan-2009 [10202] | No GUI yet, as I'm still busy with something else. I need to do a serious code audit before it's included. Many things are still up in the air. |
Janko 27-Jan-2009 [10203] | wow, did I just download new R3 ?!? :) |
[unknown: 5] 27-Jan-2009 [10204x3] | Pekr definately a bug it looks like as any-type! doesn't work either: >> parse [/ /R3/Blah/] [any-type! path!] == false |
Please submit it Pekr to curecode. | |
That doesn't work in 2.7.6 either. | |
Pekr 27-Jan-2009 [10207] | You can submit it yourself. It was matched as a word!, so I can see no problem with that :-) |
[unknown: 5] 27-Jan-2009 [10208x6] | matched as a word? |
>> parse [/r3/blah][any-type!] == false | |
How are you seeing it as a match for word? | |
We will need to know that cause any-type! doesn't match. | |
I'm thinking we need an any-path function. | |
or type rather. | |
Henrik 27-Jan-2009 [10214] | Paul, it returns false, because they are two separate refinements. >> parse [/b/a] [2 any-type!] == true |
[unknown: 5] 27-Jan-2009 [10215x2] | Ahhhh. I went the path route. |
So with parse we should always think in terms of refinements instead of path. | |
Henrik 27-Jan-2009 [10217] | only if the leading char is not a /. |
[unknown: 5] 27-Jan-2009 [10218] | Gotcha. |
Henrik 27-Jan-2009 [10219] | whoops, only if the leading char IS a /. |
[unknown: 5] 27-Jan-2009 [10220x2] | right, I understand. |
I'm curious how Pekr, got word! do match though. | |
Pekr 27-Jan-2009 [10222] | Paul - as easy as parse [ / ] [word!] ? :-) |
Mchean 27-Jan-2009 [10223] | line continuation doesn't work in the r3 console? |
Henrik 27-Jan-2009 [10224] | there are some limitations compared to the r2 console. |
Mchean 27-Jan-2009 [10225] | an open [ doesn't continue to next line? - just checking |
Henrik 27-Jan-2009 [10226] | yes, correct. you can't paste code in the console. |
Mchean 27-Jan-2009 [10227] | thx |
sqlab 27-Jan-2009 [10228] | i just tried to download the new r3alpha. my NOD32-antivirus guard identified it as a variant of Win32/Adware.Antivirus2008 |
Henrik 27-Jan-2009 [10229] | :-) |
sqlab 27-Jan-2009 [10230] | that' s curious. I can download with firefox without problems. but with seamonkey it's no longer available. |
Maarten 27-Jan-2009 [10231] | I know of no language that has this! evoke 'crash |
Mchean 27-Jan-2009 [10232x2] | nice... |
why settle for unintentional crashing | |
Henrik 27-Jan-2009 [10234x2] | >> ? evoke USAGE: EVOKE chant DESCRIPTION: Special guru meditations. (Not for beginners.) EVOKE is a native value. ARGUMENTS: chant -- Single or block of words ('? to list) (word! block! integer!) |
perhaps a single guaranteed way to provoke crashes to see how they are handled on different platforms. | |
[unknown: 5] 27-Jan-2009 [10236] | Pekr, i thought you were parsing the /R3/GUI as word!. Ok, I misunderstood. Thanks Pekr. |
Maarten 27-Jan-2009 [10237] | I like that. This could eb a cult hit. Somebody quits your app, evoke crash. Wish for evoke 'reboot-os!!! |
PeterWood 27-Jan-2009 [10238] | The RebDev Web Client seems to be broken : *** RebDev Error: client is out of date ** Script Error: cause-error-here has no value ** Where: error ** Near: cause-error-here I guess this is to do with the changes being made to the server to fix the "unicode" problem. |
Will 27-Jan-2009 [10239] | is rebol.com going Cheyenne ? |
BrianH 27-Jan-2009 [10240x2] | Nice trick that works in R2 and R3: If you put rebol [] before the code you would otherwise paste in the console and include that header in the copy, you can do clipboard:// to do the code :) |
It doesn't mess up your console history either, as pasting in the console does. | |
Oldes 27-Jan-2009 [10242] | I'm using this one-liner function for it: >> ?? drc drc: func [][do read clipboard://] |
older newer | first last |