racket/collects/web-server/default-web-root/htdocs/servlets/examples
Jay McCarthy ba378b0a63 DrDr props
svn: r15496
2009-07-20 15:01:19 +00:00
..
add-dispatch.ss Newlines at EOFs 2009-07-04 02:28:31 +00:00
add-formlets.ss send/formlet issue 2009-01-06 15:37:23 +00:00
add-ssd.ss
add-v2.ss
add.ss
adjust.ss
bad-xexpr.ss Newlines at EOFs 2009-07-04 02:28:31 +00:00
basic.ss Newlines at EOFs 2009-07-04 02:28:31 +00:00
clear.ss
cookie.ss cookies 2009-02-03 22:32:35 +00:00
cookie2.ss Newlines at EOFs 2009-07-04 02:28:31 +00:00
count.ss
digest.ss Newlines at EOFs 2009-07-04 02:28:31 +00:00
dir.ss
english-measure-questions.ss
error.ss
fupload.ss Exposing MIME headers to user 2008-11-13 21:25:13 +00:00
hello.ss
quiz.ss DrDr props 2009-07-20 15:01:19 +00:00
README
response.ss response/c 2009-01-29 16:34:57 +00:00
static.html Templates before tests 2008-11-19 19:04:22 +00:00
template-full.ss bytes 2009-02-04 19:33:17 +00:00
template-simple.ss newlines at EOFs 2009-01-14 03:10:47 +00:00
template-xexpr.ss newlines at EOFs 2009-01-14 03:10:47 +00:00
wc-fake.ss
wc.ss

This directory contains several examples of PLT-Scheme servlets.

hello.ss
  The hello servlet demonstrates how a minimal servlet can provide 
  functionality similar to server-side includes.

count.ss
  The count servlet shows how a servlet can maintain state between invocations.
  The state is reset when the cache of loaded servlets is refreshed.

add.ss
  The add servlet uses send/suspend to interact with the user multiple times.

quiz.ss english-measure-questions.ss
  The quiz servlet demonstrates how to implement a web-based multiple choice
  quiz. A big thank you to Don Felgar for providing this sample.