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
29-Dec-2009
[673x2]
Brian, I would like to see prot-http.r extended ... since googledoc, 
and amazon are big topics for some of us
I wrote some changes .. they just need to be optimized by someone.
BrianH
29-Dec-2009
[675]
By the way, the reason we can consider getting the installer in this 
release at all is because the hard part has already been done. If 
any of the rest of you have tested patches that don't break anything, 
get in touch. If they don't make it into 2.7.7, they might make it 
into 2.7.8 next month :)
Pekr
29-Dec-2009
[676]
BrianH: you have access to sources? Who can do native changes? Only 
Carl? Because if so, I hope there is not much of changes. I wish 
Carl finish R3, not to spend much time on further R2 enhancements 
in native code ....
Graham
29-Dec-2009
[677]
Here's my patches to http-prot.r .. http://rebol.wik.is/Protocols/Http

I have used it for a while and they do not break anything AFAIK ...
BrianH
29-Dec-2009
[678x2]
Graham, once we switch to the community development infrastructure 
next month such changes will be more possible. Yes, that means the 
R3 chat vcs too, so get your account and start learning to use it. 
If you think it sucks, write your own client - it's not hard.
I'll look at your patches :)
Pekr
29-Dec-2009
[680x2]
I also remember some patches to http by Oldes or someone else, I 
just don't remember details ...
BrianH: how can you write your own client to R3 Chat? Can you actually 
use its command set? I mean - create a gui, and "send" command like 
"n", "lm", etc. to console in the background?
BrianH
29-Dec-2009
[682]
Pekr, you'd be surprised how much we can fix in mezzanine. Nonetheless, 
it is our job (well, mine) to minimize the impact that R2 development 
has on Carl's R3 work. We're keeping the native changes to a minimum, 
but the big part is testing and coordination.
Henrik
29-Dec-2009
[683]
The UI should really be split out, if it's not already done in R3 
chat. But don't forget that we already have bots for R3 chat.
BrianH
29-Dec-2009
[684]
Own client to R3 chat: The interface between the client and server 
is simple RPC. The UI is split out already.
Graham
29-Dec-2009
[685]
I think we're off topic
BrianH
29-Dec-2009
[686]
Yes, thank you.
Graham
29-Dec-2009
[687]
Henrik ... is that memory leak still present?
Henrik
29-Dec-2009
[688x2]
Graham, I believe so.
I've avoided creating UIs with too much networking with open ports.
BrianH
29-Dec-2009
[690]
R2/Forward location: R3 chat 837 - Community/Libraries/R2-Forward
Graham
29-Dec-2009
[691x2]
Fix memory leak, fix installer, update http, back port some r3 mezzanines 
... and parse improvements, and we're done.
I read also that that Brian's vid resizing scheme works well too 
... does it break any old vid stuff?
BrianH
29-Dec-2009
[693]
No PARSE improvements this release unless Carl has a ready bugfix. 
Fixes to DECODE-URL are fair game though.
Henrik
29-Dec-2009
[694]
Resize doesn't break anything, however it's been re-used in the VID 
extension kit with some modifications, which I don't think are compatible.
BrianH
29-Dec-2009
[695x2]
The resizing scheme is too difficult to use yet - it needs better 
integration. Not going in this release.
Henrik, your VID extension kit is really cool and we'll definitely 
want to look at it for ideas for future VID improvements :)
Graham
29-Dec-2009
[697]
'run should be easy to add?  It was present in IOS
Henrik
29-Dec-2009
[698]
BrianH: Thanks... I would like to make it more a collaborative effort 
eventually. There are many things that need to be done, but I'm going 
to dive heavily into R3 in 2010.
Graham
29-Dec-2009
[699]
I think 'launch is broken at present ... dunno if there is time to 
fix that as well as it only affects the sdk
BrianH
29-Dec-2009
[700x2]
I can't answer about run, Graham. I've never used IOS.
LAUNCH affects the View desktop too. How is it broken? Is there a 
RAMBO bug report about this?
Graham
29-Dec-2009
[702x2]
>> help run
USAGE:
    RUN file /as suffix

DESCRIPTION:
     Runs the system application associated with a file.
     RUN is a native value.

ARGUMENTS:

     file -- The file to open (file, URL) or command to run (string). 
     (Type: file url string)

REFINEMENTS:
     /as
         suffix -- (Type: string file)
>> run "screen.png"
** Script Error: Feature not available in this REBOL
** Near: run "screen.png"
I think I would have posted a bug report about 'launch ..
BrianH
29-Dec-2009
[704]
Oh, it's like CALL "start"
Pekr
29-Dec-2009
[705x2]
I am against parse enhancements being backported to R2, or ppl will 
have one less reason to move to R3 :-) Also - there are some changes 
to R3 Parse, which could cause R2 parse scripts stop to work ...
btw - what memory leak are we talking about here? Networking? It 
might be difficult to track in current timeframe, no?
Graham
29-Dec-2009
[707]
http://www.rebol.net/cgi-bin/rambo.r?id=4205&
BrianH
29-Dec-2009
[708]
Pekr, there are PARSE bugs in R2, particularly with the BREAK operation. 
This kind of thing will eventually get fixed in R2.
Graham
29-Dec-2009
[709]
Oh .. my bug report is for linux, and I'm not using linux so can 
forget about it :)
BrianH
29-Dec-2009
[710]
This isn't a backport of the model - that kind of thing can be handled 
by a rule compiler.
Graham
29-Dec-2009
[711]
dunno about anton's report http://www.rebol.net/cgi-bin/rambo.r?id=4245&
BrianH
29-Dec-2009
[712]
Quick question: If I have the time, should I update the FUNCT backport 
and include it in 2.7.7?
Henrik
29-Dec-2009
[713]
#4371 is a couple of lines of code and necessary to avoid crashes 
with DUMP-FACE on iterated faces. it should be simple to add.
Graham
29-Dec-2009
[714]
Pekr, the memory leak affects View ... and open ports
Pekr
29-Dec-2009
[715]
Graham - is the leak reported anywhere? I mean - do we have some 
code example, when it happens?
Henrik
29-Dec-2009
[716]
Of note: I would not easily have found that memory leak if it wasn't 
for Instruments on OSX. It's a really nice tool.
Graham
29-Dec-2009
[717x2]
Pekr, Maarten and I found the leak years ago with rugby.
Henrik reduced the leak to the smallest example
BrianH
29-Dec-2009
[719]
Henrik, that #4371 fix sounds like a good candidate for 2.7.7.
Graham
29-Dec-2009
[720]
It was one of the reasons I had to stop using rugby I think ...
Henrik
29-Dec-2009
[721x2]
BrianH, as long as the functionality is agreed with. It will dump 
the first face rendered in an iterated face. That's the only issue.
Graham, I noticed it, when I was wondering why a simple two-button 
UI program with a bit of rugby networking ate up 500 MB RAM.