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

World: r3wp

[!REBOL3 Schemes] Implementors guide

Gabriele
6-Jan-2010
[179x2]
also, there was documentation in the wiki...
http://www.rebol.net/wiki/Scheme:_HTTP
Graham
6-Jan-2010
[181]
ahh... couldn't find that ...
Gabriele
6-Jan-2010
[182]
the .r file is generated by Wetan, it was provided in r3-alpha together 
with the .r and the .rlp, but is probably not on r3 chat.
Graham
6-Jan-2010
[183]
read r: open [ scheme: 'http host: "www.compkarori.co.nz" port-id: 
8090 ]
probe r/state 
none
Gabriele
6-Jan-2010
[184x2]
of note, you are not supposed to look inside port in principle. so, 
apart from "playing" with it, you should not really expect to be 
able to do something like that.
maybe what you want is the result of QUERY?
Graham
6-Jan-2010
[186x3]
haven't got to query? yet :)
info: query port 
none
How do you access make-http-request ?  What's the path to this function?
Gabriele
6-Jan-2010
[189x2]
i don't remember when that can happen (i think you should always 
get something if you did a successfull request).
make-http-request is called from the read or write operations. eg. 
write [head %index.html] will make a HEAD request etc.
Graham
6-Jan-2010
[191x2]
but how can I access it ?
I followed the example to the letter with my url . ... and I get 
none
Gabriele
6-Jan-2010
[193]
in what sense? how do you need to access it?
Graham
6-Jan-2010
[194]
Say I want to create http header ... to sign it
Gabriele
6-Jan-2010
[195x2]
ah, aws. there is no direct way currently. that's what you get when 
people abuse http. :-) it should not be difficult though to allow 
the user to specify a callback for aws-like signatures etc.
or, just define a aws:// scheme inside the same module as http:// 
so that 99% of the code is reused.
Graham
6-Jan-2010
[197]
so these functions are inaccessible outside of the scheme?
Gabriele
6-Jan-2010
[198]
well, back when this was written, there were no modules yet, so everything 
was actually global.
Graham
6-Jan-2010
[199]
And now it's a module and hidden !
Gabriele
6-Jan-2010
[200]
now, in principle, prot-http.r should be a module. so, they can be 
imported from there, in principle. where the module is i don't know 
(this was much after i worked on this), i guess inside system/something 
, like system/modules or something like that.
Graham
6-Jan-2010
[201x3]
oh ...there it is
system/modules/http/make-http-request
Anyway, there does appear to be some type of bug that is setting 
state to none in the port .. and so query returns none
Gabriele
6-Jan-2010
[204]
it is possible... it's not like this was greatly tested (back then, 
not many people volunteered to test...), and it was written for a 
very different R3...
Graham
6-Jan-2010
[205]
there doesn't seem to be any inbuilt trace as in r2 ....
Gabriele
6-Jan-2010
[206x2]
except from using print directly in the scheme code, there was no 
way to do that at the time.
R3's trace function is very good now though, maybe that is enough.
Graham
6-Jan-2010
[208]
trace true   ????
Gabriele
6-Jan-2010
[209]
it has more options than that :)
Graham
6-Jan-2010
[210x3]
oh .. have to restart rebol and set secure
secure allow
yeah ... very detailed
Gabriele
6-Jan-2010
[213x2]
one of the things i wanted to do, but never got to, was to parse 
the output of R3's trace, and then show you a step-by-step code execution 
like in debuggers.
if trace were to add timestamps as well, then it could be used for 
both debugging and profiling, even on programs running on other people 
systems (they just save the trace, and you just load them).
Graham
6-Jan-2010
[215]
sounds good :)
Gabriele
6-Jan-2010
[216]
now someone with free time should start writing it :P
Graham
6-Jan-2010
[217x3]
I think that's Carl :)
Well, this has been useful... we need to test http a lot more ...
I think my proposed changed still stand http://rebol.wik.is/Rebol3/Schemes/Http/Prot-http.r/Make-http-request
Steeve
6-Jan-2010
[220]
it appears to me that if all the properties of the header was kept 
as strings.
then we could construct back the header's response with 
>>enline form headers
(no need to make a foreach anymore)
BrianH
6-Jan-2010
[221]
Gabriele, I didn't modify the .r, Carl did. I'm working on it now 
though. Pardon my memory lapse, but could you post a url to RLP?
Graham
6-Jan-2010
[222]
I think you mean WETAN?
BrianH
6-Jan-2010
[223]
Yeah. I'd like the literate programming to stay if we can manage 
it, because otherwise we'll have to reorganize the code from scratch. 
Reorganizing it from existing source would be easier.
Graham
6-Jan-2010
[224x3]
http://www.colellachiara.com/soft/MD3/emitters/wetan.r
and http://www.colellachiara.com/soft/MD3/emitters/wetan.html
google is your friend ...
I use LEO for my literate programming needs
BrianH
6-Jan-2010
[227]
I use the code story model.
Graham
6-Jan-2010
[228]
So, are you reviewing all the networking code now?