Compare commits

..

No commits in common. "661b3c35a9ad4426271feafaadccc067d3e8f418" and "42753c1b18c74b9ef0f4cdb90272fcf663ac0c56" have entirely different histories.

6 changed files with 26 additions and 30 deletions

View File

@ -1,7 +0,0 @@
To install library run
make SCHEME=chibi LIBRARY=fcgi build install
Change chibi to any other implementation supported by snow-chibi, and library
to any filename without suffix in retropikzel/*.sld

View File

@ -52,15 +52,18 @@ hello.scm:
(scheme write)
(retropikzel cgi))
(handle-request
'()
(lambda (request headers parameters cookies body files)
(display "Content-type: text/html")
(display "
(display "Content-type: text/html")
(display "
")
(display "
(display "
")
(display "Hello")))
(display "Hello")
(display "</br>")
(display "Request: ")
(write (get-request))
(display "</br>")
(cgi-exit)
Run:

View File

@ -52,13 +52,16 @@ hello.scm:
(scheme write)
(retropikzel cgi))
(handle-request
'()
(lambda (request headers parameters cookies body files)
(display "Content-type: text/html")
(display "\r\n")
(display "\r\n")
(display "Hello")))
(display "Content-type: text/html")
(display "\r\n")
(display "\r\n")
(display "Hello")
(display "</br>")
(display "Request: ")
(write (get-request))
(display "</br>")
(cgi-exit)
Run:

View File

@ -1 +1 @@
1.2.0
1.1.0

View File

@ -5,11 +5,8 @@
(retropikzel cgi)
(srfi 64))
(handle-request
'()
(lambda (request headers parameters cookies body files)
(display "Content-type: text/html")
(display "\r\n")
(display "\r\n")
(display "Hello")))
(test-begin "cgi")
(display "Hello")
(test-end "cgi")

View File

@ -1 +1 @@
1.1.0
1.0.0