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

World: r3wp

[!REBOL3-OLD1]

BrianH
26-Feb-2009
[11711]
Good, because Carl has shifted his priorities for now to helping 
me by fixing errors that are blocking me. He asked me to change all 
of my worst pet peeves in CureCode to urgent last night, and he accepted 
almost all of my recent work in DevBase. GATHER hasn't made it in 
yet though - I am explaining its need to him now.
Henrik
26-Feb-2009
[11712]
Paul, see rebdev message #1804
[unknown: 5]
26-Feb-2009
[11713x2]
going now.
Ok, I see now.  It looks very specialized.
BrianH
26-Feb-2009
[11715x2]
Specialized is good. Let the programmer decide what they want to 
do at programming time, not the interpreter at runtime.
Specialized functions are faster, simpler to write and easier to 
understand.
Henrik
26-Feb-2009
[11717]
I proposed it, because I use it in many places to collapse chunks 
of 20-30 lines of code into one line and it works well in use as 
part of bigger functions.
[unknown: 5]
26-Feb-2009
[11718]
Cool guys.
Pekr
26-Feb-2009
[11719x2]
if we have gather, we might need scatter (the opposite). But also 
- getting just one field is unnecessary limitation imo :-)
I can imagine getting multiple fields. I can even imagine using 'extract 
to get block of result values from the block of objects. Hmm, I can 
imagine many things :-)
Henrik
26-Feb-2009
[11721]
You may be right about an opposite to GATHER.


Getting multiple fields will complicate GATHER. What is the output 
format going to be? In the form it is now, it's a good allround way 
to get one set of values from a block of objects. Use GATHER multiple 
times to get different values. Then use a different function afterwards 
to manipulate the blocks you have made with GATHER.
jocko
26-Feb-2009
[11722]
Typing accented strings is ok in the command window,  but raises 
an error when read from a file:   a: "terminé"  syntax error invalid 
string {"terminé"}. Is there a new  write or read option for text 
files with accented letters ?
DideC
26-Feb-2009
[11723]
R3 assume text file are UTF-8 encoded. Probably yours is ANSI or 
something else
jocko
26-Feb-2009
[11724]
It's ok. It was not the case with R2.
Henrik
26-Feb-2009
[11725]
Alpha 37 released.
Mchean
26-Feb-2009
[11726]
coming fast a furious
Henrik
26-Feb-2009
[11727]
It's BrianH's fixes that are going in. There are many of them. :-)
kib2
26-Feb-2009
[11728]
There are some things I can't understand in the demo : when you click 
on source, you don't get the full source but just a part of it.

Also, I've tried launching this script (from Dragger demo) :

REBOL [ ]

load-gui

view [

doc {
^-^-^-===Drag the boxes

^-^-^-Blue boxes are unbounded.

^-^-^-Red boxes are parent panel bounded.
^-^-}
d1: free-drag
d4: lock-drag red
panel 0 80.200.80.80 [
    d2: free-drag
    d3: lock-drag red
]
]

...and got a parse error : why ?
Henrik
26-Feb-2009
[11729]
there is no free-drag or lock-drag style. they are substyles created 
in the demo.
kib2
26-Feb-2009
[11730]
Henrik: so what's the point having a 'source' button if these styles 
are hidden ?
Henrik
26-Feb-2009
[11731]
that makes sense within the demo.
kib2
26-Feb-2009
[11732]
Don't you think a 'full source' might be better, it's confusing.
Henrik
26-Feb-2009
[11733x2]
they are not "hidden". they are just not part of the standard style 
list. and you can't create free-drag or lock-drag items in your layout 
without creating a style.
Try this:

write %/c/demo.r read http://www.rebol.com/r3/demo.r

This lets you study the code for the demo.
kib2
26-Feb-2009
[11735]
I've understood this; I was just wondering why
Henrik
26-Feb-2009
[11736x2]
including the free-drag and lock-drag style.
the style could be extreme complex and consist of other substyles. 
it doesn't make sense to have that code inside the layout.
kib2
26-Feb-2009
[11738]
Henrik : thanks; that seems really complicated code for me :)
Henrik
26-Feb-2009
[11739x2]
have you studied how the R3 GUI works?
there is a strong separation between the layout and the style code.
kib2
26-Feb-2009
[11741]
I'm just starting reading the wiki.
Anton
27-Feb-2009
[11742x2]
The error that has occurred above is that the "demo-let" that kib2 
looked at is not properly documented. Its script header should declare 
what its dependencies are and in what environment it should be run. 
This is a constant source of time-wasting for everyone, as an undocumented 
script apparently advertises that it has no dependencies and can 
run on its own. So all new-comers to the script will try it in the 
console themselves and see it doesn't work. Now the wondering begins: 
"is it supposed to be working or is it still in development?" etc. 
It's not kib2's fault for not having studied how the R3 GUI works.
Let me just temper that - it just shows that the script is not complete, 
and this is understandable in a system which is in flux.
Josh
27-Feb-2009
[11744]
Haven't they fixed the unicode issue to allow new chat users?
amacleod
27-Feb-2009
[11745x2]
Actually size of the image does not seem to be the prob as this works: 

SQL reduce [{insert into images values (?,?,?,?,?,?,?,?)} "img/1" 
"img/2" "img/3" "img/4" "img/5" pic "img/7" "img/8"]
where pic is a large 4000x3000 full color photo.
I get no error.

But if I loop 50 and insert the above data 50 times I get an error???
soory wrong Group
BrianH
27-Feb-2009
[11747x6]
I went through the CureCode tickets and marked the ones fixed in 
alphas 35 through 37, that weren't already marked. You can see the 
changes in the Change Log section of CureCode, and some fixes are 
summarized on the R3 Releases page too.
Josh, the issue is that the chat server is running on R2 right now 
for reliability. R2 can't handle Unicode except as binary, and certainly 
can't do case-sensitive searches for user names in Unicode. The web 
client for mobile is even worse, and is also R2 since R3 can't handle 
CGI yet.


Right now we are focusing on getting R3 stable enough to use on the 
server-side. Hence the changes in the newest alphas.
If you think there were a lot of changes in the last alpha, you should 
see the next one. I have fixed most of the bugs in LOAD and DO :)
My next project is the begin bugs - there are many - I am just waiting 
on an info request.
R2-Forward has been updated to match alpha 37 as well, though that 
meant adding one more function to the todo list (and 5 more to the 
done list, and 6 more to the improved list) :)
Sorry, make that 18 more to the improved list - I forgot to include 
last night as well :)
Pekr
27-Feb-2009
[11753]
I had another request to join R3 discussion. Couldn't some interim 
solution being made, e.g. refusing names with special chars? Returning 
error would be enough for ppl to know they ought to choose different 
name, no? Because - recent solution was meant to be interim one, 
but it typically became permanent one, without any resolution of 
when actually it gets fixed ...
BrianH
27-Feb-2009
[11754x2]
Not my call - ask Carl.
The function I added to my todo list yesterday is done. Two lines 
of code, though they are tricky :)
Gabriele
27-Feb-2009
[11756x2]
Brian, are you sure that R3 handles case-insensitiveness in Unicode 
text better than R2 with UTF-8?
I remember Carl being againist adding language-specific tables into 
R3.
[unknown: 5]
27-Feb-2009
[11758]
Where do we find information on the new VID of R3?
Henrik
27-Feb-2009
[11759]
http://www.rebol.net/wiki/R3_GUI
[unknown: 5]
27-Feb-2009
[11760]
Thanks Henrik