From 0b9f8bcabe506acccee950e762a095342a73b881 Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Tue, 1 Feb 2011 08:55:24 -0700 Subject: [PATCH] External versions Merge to release branch (cherry picked from commit 0aa19be48e0c736a6193ba284d9dc39c6f88af06) --- collects/web-server/compat/0/README | 4 ++-- collects/web-server/scribblings/faq.scrbl | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/collects/web-server/compat/0/README b/collects/web-server/compat/0/README index 9b75f4b435..d07e4c9f18 100644 --- a/collects/web-server/compat/0/README +++ b/collects/web-server/compat/0/README @@ -1,7 +1,7 @@ -In Racket 5.0.99.4 and before, the Web Server supported implicit +In Racket 5.0.2 and before, the Web Server supported implicit conversion of X-expressions and lists with the format (cons/c bytes? (listof (or/c string? bytes?))) into response data structures for output. -After 5.0.99.4, this implicit conversion has been generalized into any->response. In the process, implicit conversion has been completely removed from some internal plumbing AND the response structures have been streamlined---primarily for efficiency. +After 5.0.2, this implicit conversion has been generalized into any->response. In the process, implicit conversion has been completely removed from some internal plumbing AND the response structures have been streamlined---primarily for efficiency. This document describes the incompatible changes and how to restore the old behavior when that is possible. diff --git a/collects/web-server/scribblings/faq.scrbl b/collects/web-server/scribblings/faq.scrbl index dfa56abfc9..61d03a9baf 100644 --- a/collects/web-server/scribblings/faq.scrbl +++ b/collects/web-server/scribblings/faq.scrbl @@ -5,7 +5,7 @@ @section{Why is my servlet failing with a @racket[can-be-response?] contract violation after updating Racket?} -After 5.0.99.4, the Web Server had a backwards incompatible change that prevents X-expressions and lists of bytes from being directly returned from servlets. Please read @filepath{PLTHOME/collects/web-server/compat/0/README} to learn about porting your servlets forward. Don't worry. It's easy. +After 5.0.2, the Web Server had a backwards incompatible change that prevents X-expressions and lists of bytes from being directly returned from servlets. Please read @filepath{PLTHOME/collects/web-server/compat/0/README} to learn about porting your servlets forward. Don't worry. It's easy. @section{Why are my templates not updating on the server when I change the file on disk?}