World: r3wp
[!REBOL2 Releases] Discuss 2.x releases
older newer | first last |
Graham 31-Dec-2009 [802] | >> 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! |
Graham 31-Dec-2009 [810] | Installs on Windows 7 but need to be admin to install. |
Carl 1-Jan-2010 [811x2] | REBOL/View 2.7.7 released: http://www.rebol.com/downloads/v277/rebview.exe (Core 2.7.7 is rebcore.exe) |
Many thanks to Brian Hawley for his R2/Forward contributions in this release! | |
Graham 1-Jan-2010 [813] | Where's the docs? |
Carl 1-Jan-2010 [814] | I have a 2.7.7 summary page to be posted shortly - but, we're going to need someone to summarize the R2/Forward addition. |
Oldes 1-Jan-2010 [815] | the HTTPS scheme is missing in Core. Why? |
Graham 1-Jan-2010 [816x2] | Core ? |
There is only a View release isn't there? | |
Oldes 1-Jan-2010 [818] | http://www.rebol.com/downloads/v277/rebcore.exe |
Graham 1-Jan-2010 [819x2] | Anyone seen Brian's R2/Forward docs? |
Why are the names changing? | |
NickA 1-Jan-2010 [821] | Thank you for 2.7.7 - Happy New Year! |
Graham 1-Jan-2010 [822x3] | We should decide on a consistent scheme ... used to be rebol.exe for core ... |
Maybe rebcore is for web servers that don't need SSL ?? | |
Oldes, where did you get that link from? | |
Oldes 1-Jan-2010 [825x2] | From Carl's message of course, just read it again:) |
btw.. I can confirm, that SSL is working fine in the rebview. Thanks for it. | |
Graham 1-Jan-2010 [827] | Ah .. I wondered what that message meant at the bottom .. |
Janko 1-Jan-2010 [828] | wow, cool !! thanks to Brian and Carl for this ! |
Paul 1-Jan-2010 [829] | I ohpe there is a base with ssl and all the stripped out view stuff. |
Will 1-Jan-2010 [830x3] | Many thanks to BrianH and Carl !! 8-) |
has an osx version been build already? | |
build -> built ? | |
Graham 1-Jan-2010 [833x2] | Windows only ... |
I guess people need to test the new builds and report any issues before other ones are built | |
BrianH 1-Jan-2010 [835x2] | Now that I'm back home I can document the changes. Sorry for the delay. |
R2/Forward is documented in extensive code comments in the source, which is available in R3 chat #837. I need to integrate the fixes I did during the migration to the mezzanine source. | |
Paul 1-Jan-2010 [837x2] | Brian in R2 is says one of the components is Windows Registry access. What would some of those functions be? |
I see 'run is still not available in this version. | |
BrianH 1-Jan-2010 [839] | The R2/Forward code is licensed (MIT), not donated. From now on, the aim of the R2/Forward project has changed. Now its main goal is to provide forward compatibility to old R2 versions. I'll be reorganizing the code accordingly, and trying to push support as far back as 2.5.0, the last version that is supported on the deprecated platforms. |
Graham 1-Jan-2010 [840x2] | You don't need 'run .... |
call works ... | |
Paul 1-Jan-2010 [842] | not sure what run was. |
BrianH 1-Jan-2010 [843x2] | The registry functions are unset before runtime in /Core and /View, for security reasons. They are available to SDK apps if necessary. |
They are documented in the SDK docs. | |
Graham 1-Jan-2010 [845x2] | call "demo.pdf" is the same as run "demo.pdf" |
in my case, windows loads acrobat and loads demo.pdf | |
Paul 1-Jan-2010 [847] | Are we going to get a free SDK for this version? |
BrianH 1-Jan-2010 [848] | Afaict, RUN is basically CALL "start.exe ..." |
Graham 1-Jan-2010 [849] | You wish ... |
Paul 1-Jan-2010 [850x2] | Got ya. That is what I thought it was. |
I do wish. :-) | |
older newer | first last |