Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

rsp?

 [1/4] from: bry::itnisk::com at: 13-Feb-2003 14:52


Is there some resource somewhere that puts together the most pertinent stuff about the rsp rebol server pages implementation?

 [2/4] from: maarten:koopmans:surfnet:nl at: 13-Feb-2003 16:56


I got it here, I'll upload it at last this weekend. OK? --Maarten bryan wrote:

 [3/4] from: dockimbel:free at: 14-Feb-2003 2:26


Hi Bryan, bryan wrote:
> Is there some resource somewhere that puts together the most pertinent > stuff about the rsp rebol server pages implementation? >
The 'build-markup function has been added to the lastest betas to help make RSP pages easily. Here's an example : 8<-------------------- #!/usr/bin/rebol -cs REBOL [comment: "RSP CGI sample"] print "Content-Type: text/html^/" print build-markup { <HTML> <BODY> <% now/time %> </BODY> </HTML> } 8<-------------------- will produce the following result page : <HTML> <BODY> 2:17:55 </BODY> </HTML> Last betas can be found in http://www.reboltech.com/downloads/ HTH, -DocKimbel.

 [4/4] from: maarten:koopmans:surfnet:nl at: 14-Feb-2003 15:13


'build-markup was my original erebol function, but I have an improved one on my harddisk, comng Real Soon Now. I already mailed bryan some stuff. --Maarten