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

World: r3wp

[!REBOL3]

Steeve
28-Aug-2010
[4692]
is there any related anounce ?
Demitri
28-Aug-2010
[4693x2]
The blog talks about a 104 version.  My last one is 100.x.x.x
The blog talks about a 104 version.  My last one is 100.x.x.x
Henrik
28-Aug-2010
[4695]
It's a guru only release and very unstable, but there is a link in 
the REBOL3 Host Kit group.
Demitri
28-Aug-2010
[4696]
ok, thanks.
Graham
28-Aug-2010
[4697]
You can build your own 104 release or download Robert's
Steeve
28-Aug-2010
[4698]
Oh ! Didn't see the blog
Demitri
28-Aug-2010
[4699]
ok, thanks guys.
Steeve
28-Aug-2010
[4700]
I'm like Henrik, I use an old one cuurently, A95
Graham
28-Aug-2010
[4701]
the 104 you build works with go.r but Robert's doesn't
Henrik
28-Aug-2010
[4702]
anything after A97 is pretty much bat country right now.
Demitri
28-Aug-2010
[4703]
Is there graphics yet?
Henrik
28-Aug-2010
[4704]
yes, barely working
Steeve
28-Aug-2010
[4705]
barely ? lol
Graham
28-Aug-2010
[4706]
depends ...
Demitri
28-Aug-2010
[4707]
ok.
Graham
28-Aug-2010
[4708]
old builds have draw, newer do not
Steeve
28-Aug-2010
[4709]
But richtexts seem to work, as far i tested
Graham
28-Aug-2010
[4710]
on what build?
Steeve
28-Aug-2010
[4711]
I mean the robert's one
Graham
28-Aug-2010
[4712]
for your IRC client?
Steeve
28-Aug-2010
[4713x4]
see !REBOL Host kit
it's not an IRC client
Shad made a wrong guess
It's only some demo styles
Graham
28-Aug-2010
[4717]
ok ...
Steeve
28-Aug-2010
[4718]
but maybe it will be a real GUI
Graham
28-Aug-2010
[4719]
SGUI ?
Steeve
28-Aug-2010
[4720x2]
S for ?
oh !
Graham
28-Aug-2010
[4722x2]
Steeve ....
I guess it should be GUIdS since the noun follows in french
Steeve
28-Aug-2010
[4724]
not bad :-)
Graham
28-Aug-2010
[4725]
GUIDuS
Steeve
28-Aug-2010
[4726x2]
I found GuiMove but it''s already taken
it's sound like guimauve in french and it means marshmallow
Graham
28-Aug-2010
[4728]
hmm... tasty
Henrik
1-Sep-2010
[4729x2]
I've created this function many times enough to think it should be 
standard:


; creates a string from a list of strings with human readable comma 
separation
string-list: func [blk /local out] [
	out: make string! 1000
	forall blk [
		append out form first blk

  unless tail? next blk [append out either tail? at blk 3 [" and "][", 
  "]]
	]
	out
]

string-list ["a" "b" "c"]
== "a, b and c"
feel free to optimize
Graham
1-Sep-2010
[4731]
Why is this R3?
Henrik
1-Sep-2010
[4732]
works in R2 as well. feel free to add it to R2/Forward.
Graham
1-Sep-2010
[4733]
What's the setting?
Henrik
1-Sep-2010
[4734]
what setting?
Graham
1-Sep-2010
[4735x2]
what input is causing you to create this output?
Are you creating sentences?
Henrik
1-Sep-2010
[4737]
blocks of strings, usually created for dialogs or other human readable 
output
Graham
1-Sep-2010
[4738x2]
I'd think that it is just something that you do :)
I don't do this .. but I have code that processes a whole sentence 
and grammar fixes it including the above.
Gregg
1-Sep-2010
[4740x2]
I've built similar funcs, but not often. Maybe it could be part of 
a formatting module, and I would give it a different name.
The output format is specific enough, and the name generic enough, 
that I wouldn't make it a standard func as is. It is useful though.