about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorzedshaw <zedshaw@19e92222-5c0b-0410-8929-a290d50e31e9>2006-04-10 14:58:13 +0000
committerzedshaw <zedshaw@19e92222-5c0b-0410-8929-a290d50e31e9>2006-04-10 14:58:13 +0000
commitcfcf2d88ec3336ba2034a9c61e9a6c9b7408e2b9 (patch)
tree6ead2ab19e854a01e023f3e2214d63f0a736a184
parentd9523cba31aff4640b7a64f22014ae7f9d55acc8 (diff)
downloadunicorn-cfcf2d88ec3336ba2034a9c61e9a6c9b7408e2b9.tar.gz
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@153 19e92222-5c0b-0410-8929-a290d50e31e9
-rw-r--r--doc/site/src/default.template24
-rw-r--r--doc/site/src/news.page23
2 files changed, 35 insertions, 12 deletions
diff --git a/doc/site/src/default.template b/doc/site/src/default.template
index 0de71f4..eb3fd45 100644
--- a/doc/site/src/default.template
+++ b/doc/site/src/default.template
@@ -47,6 +47,18 @@
 
         <dl>
 
+          <dt>Mar-10-2006</dt>
+          <dd>
+            <h5><a href="{relocatable: news.html}">Mongrel 0.3.12.4 -- Relaxed Parser, Date Fix</a></h5>
+
+            <p>A minor release that relaxes the HTTP parser to allow people to abuse HTTP
+              as a file system via webdav and a fix to the date formatting.
+            </p>
+              <a href="http://rubyforge.org/frs/?group_id=1306" title="Downloads">Download</a>
+              <a href="{relocatable: news.html}"><img src="{relocatable: images/li4.gif}" alt="more" /><br /></a></p>
+          </dd>
+
+
           <dt>Apr-6-2006</dt>
           <dd>
             <h5><a href="{relocatable: news.html}">Mongrel 0.3.12.3 -- Thread Debugging</a></h5>
@@ -142,18 +154,6 @@
               <a href="{relocatable: news.html}"><img src="{relocatable: images/li4.gif}" alt="more" /><br /></a></p>
           </dd>
 
-          <dt>Mar-02-2006</dt>
-          <dd>
-            <h5><a href="{relocatable: news.html}">Mongrel 0.3.7.1 -- Solid Rails, Win32, SwitchTower, Docs</a></h5>
-
-            <p>A slightly longer time between releases but this is packed with lots of good
-              things for people who want to run Mongrel. Highlights:  SwitchTower,
-              Best Practices, Page Caching Support, Win32 CPU Affinity, Solid Stability.
-            </p>
-              <a href="http://rubyforge.org/frs/?group_id=1306" title="Downloads">Download</a>
-              <a href="{relocatable: news.html}"><img src="{relocatable: images/li4.gif}" alt="more" /><br /></a></p>
-          </dd>
-
         </dl>
       </div>
       <hr noshade="noshade" size="1" />
diff --git a/doc/site/src/news.page b/doc/site/src/news.page
index 064904e..fa25387 100644
--- a/doc/site/src/news.page
+++ b/doc/site/src/news.page
@@ -7,6 +7,29 @@ ordering: 2
 
 h1. Latest News
 
+h2. Apr-10:  Mongrel 0.3.12.4 -- Relaxed Parser, Date Fix
+
+This release is a small change over the previous one.  It mostly is for
+people who want to use Mongrel for webdav which needs its own set of
+request types (what people like to annoyingly call "verbs").  It also
+fixes a date formatting error where the month wasn't three characters long.
+
+* Corrects the date format returned so that months are three chars only.
+* Fixes a problem where DirHandler wasn't returning Last-Modified and Etag
+headers for unknown MIME types.
+* Implements a default mime type for anything it doesn't know about, and
+lets you set it via an attribute in DirHandler if you want different.
+* Cleans up the file serving code in DirHandler a bit.
+* Relaxes the parser to that it will accept any request methods as long as
+they are upper case, digits, safe chars ($ - _ .) and with length from 1-20
+characters.  Anything outside this restriction is still rejected with a
+close.
+
+You can get it from the gem repository like normal.  People who are on
+win32 should have no problems but there will be another small release
+that cleans up the win32 code in the near future.
+
+
 h2. Apr-3:  Mongrel 0.3.12.2 -- Thread Debugging
 
 This release has a small fix for a big problem where people uploading