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

[REBOL] Re: rsp?

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.