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

World: r3wp

[!REBOL2 Releases] Discuss 2.x releases

Graham
30-Dec-2009
[760x2]
Gab. has mentioned an updated imap protocol that might be donated 
... dunno if that is still on or not.
I guess he'll be up in 4 hours or more ...
BrianH
30-Dec-2009
[762]
If it can get to me this evening (which will be for quite a while), 
it can go in. Otherwise, 2.7.8 next month :)
Graham
30-Dec-2009
[763]
what time is it for you now?
BrianH
30-Dec-2009
[764]
7:41pm. I'll be up til early morning tomorrow.
Graham
30-Dec-2009
[765]
Hope you are leaving the installer for last ...
BrianH
30-Dec-2009
[766x3]
Yes. And it looks like it might not make the cut for this version, 
instead doing just a simple fix to make the existing installer work 
again. To do a full installer revamp would require testing on every 
Windows platform, and I don't have time to set up all of the VMs 
required.
It is likely to make in into the next version a month from now though.
R2 2.7.6 SDK sources posted to R3 chat in the appropriate headers. 
Time to integrate the backwards-compatible R2/Forward changes.
Graham
30-Dec-2009
[769]
If you need temporary access to windows 2008, windows 2003 servers, 
you can start them up in Amazon EC2
BrianH
30-Dec-2009
[770]
Thanks, that will help for next month :)
Davide
30-Dec-2009
[771]
Brian is it possible to backport that "func" with all words as local 
? 
I don't recall exactly ... maybe "funct" in R3
BrianH
30-Dec-2009
[772]
It's in R2/Forward already. With any luck I'll have enough time to 
backport the /with option too :)
Davide
30-Dec-2009
[773]
R2/forward ? Is it a patch ?
BrianH
30-Dec-2009
[774]
It's a full rewrite of a lot of the R2 mezzanines, making them less 
buggy and more R3 compatible.
Davide
30-Dec-2009
[775]
but it's a separate .r file or a new rebol exe ?
BrianH
30-Dec-2009
[776]
It's a separate .r file, but its functions can be swapped into the 
SDK source and a new .exe built. And that is my task for the evening: 
to swap in the more R2-compatible functions in R2/Forward into the 
mezzanine source.
Davide
30-Dec-2009
[777x2]
Great ! Brian, you are our avatar
in 3d !
BrianH
30-Dec-2009
[779]
10 feet tall and blue?
Davide
30-Dec-2009
[780]
Aren't you ?
BrianH
30-Dec-2009
[781]
Sure, why not? :)
Davide
30-Dec-2009
[782]
Thanks for all your work.
Kaj
30-Dec-2009
[783]
Yes, great work!
BrianH
31-Dec-2009
[784]
Proposed 2.7.7 mezz changes have been submitted to DevBase - look 
in R3 chat for details. Haven't gotten to the protocols or VID yet.
Paul
31-Dec-2009
[785x2]
Brian, for R2 can we make sure that a base component isn't doing 
any unnecessary reads or writes - such as registry values etc...
I get killed trying to use stuff like REBOL in the enterprise because 
it does stuff that I didn't advertise.
BrianH
31-Dec-2009
[787]
Core doesn't do anything like that, just View. I'm going to do a 
full review of the installer for the next version though.
Paul
31-Dec-2009
[788]
I hope core or base doesn't do it.  We need those as lean as possible.
BrianH
31-Dec-2009
[789]
Graham, I'm looking over your http scheme changes now. They won't 
maker the cut this release but should make the next release once 
it's been through the REBOL optimizer. The installer revamp didn't 
make this release either, though in theory the current installer 
might be working again. The 2.7.7 release has been mostly the licensing 
changes, a few native fixes, and the integration of a lot of R2/Forward 
backports and fixes.
Paul
31-Dec-2009
[790]
What is the licensing changes looking like?
Graham
31-Dec-2009
[791]
Brian, I thought you were the Rebol optimizer!
BrianH
31-Dec-2009
[792]
You get SSL, ODBC and encryption for free in 2.7.7.
Paul
31-Dec-2009
[793]
Got ya.  Cool.
BrianH
31-Dec-2009
[794x4]
As for the REBOL optimizer, for R2 networking code there are better 
optimizers than me: Doc, Gabriele, Maarten, ... :)
By the way, the backports include FUNCT, closures (faked), typesets 
(faked), the REFLECT and *-OF functions, APPLY, MAP-EACH, ...
Carl might even add the missing operators != and !== :)
If we're really lucky we'll get the STRICT-NOT-EQUAL? integer! integer! 
fix (crossing fingers...).
Graham
31-Dec-2009
[798]
Shame .. the changes don't break anything .. just add new functionality 
needed for REST etc
BrianH
31-Dec-2009
[799]
It's a time thing. The next release is next month so it's not much 
of a shame :)
Graham
31-Dec-2009
[800x3]
'func  Defines a function with all set-words as locals.  but if you 
use a parse rule which sets a word, it appears in global name space.
'funct
>> d
** Script Error: d has no value
** Where: halt-view
** Near: d
>> e
** Script Error: e has no value
** Where: halt-view
** Near: e

>> test: funct [ ][ parse [ "abcd" ] [ set d string! end ] e: "abcd"]
>> test
== "abcd"
>> d
== "abcd"
>> e
** Script Error: e has no value
** Where: halt-view
** Near: e
Steeve
31-Dec-2009
[803]
only set-word are used as markers to declare a var as local
BrianH
31-Dec-2009
[804]
Right. So you need to use it in a set-word expression somewhere, 
or put it in the locals list manually.
Steeve
31-Dec-2009
[805]
like this

test: funct [ ][d: none  parse [ "abcd" ] [set d string! end ] e: 
"abcd"]
Graham
31-Dec-2009
[806]
I guess it saves writing /local
BrianH
31-Dec-2009
[807]
Or like this:

test: funct [/local d ][parse [ "abcd" ] [set d string! end ] e: 
"abcd"]
Steeve
31-Dec-2009
[808]
yes, but you can inspect the source of funct if you want :-)
BrianH
31-Dec-2009
[809]
R2 builds with the new changes! Yay! Time to go out and party!