diff --git a/Rakefile b/Rakefile index 581f92c8..d2ef2128 100644 --- a/Rakefile +++ b/Rakefile @@ -10,7 +10,7 @@ include FileUtils setup_tests setup_clean ["ext/http11/*.{bundle,so,obj,pdb,lib,def,exp}", "ext/http11/Makefile", "pkg", "lib/*.bundle", "*.gem", "doc/site/output", ".config"] -setup_rdoc ['README', 'LICENSE', 'COPYING', 'lib/*.rb', 'doc/**/*.rdoc', 'ext/http11/http11.c'] +setup_rdoc ['README', 'LICENSE', 'COPYING', 'lib/**/*.rb', 'doc/**/*.rdoc', 'ext/http11/http11.c'] desc "Does a full compile, test run" task :default => [:compile, :test] diff --git a/doc/site/src/default.template b/doc/site/src/default.template index a3053e80..61cfa765 100644 --- a/doc/site/src/default.template +++ b/doc/site/src/default.template @@ -46,6 +46,18 @@

NEWS

+
Mar-04-2006
+
+
Mongrel 0.3.8 -- Bug Fixes
+ +

A small release to close off some of the bugs in the tracker. This also + adds the ability to get at the RailsHandler from within a Rails application. + This is necessary to properly map URI's to their physical locations. +

+ Download + more

+
+
Mar-02-2006
Mongrel 0.3.7.1 -- Solid Rails, Win32, SwitchTower, Docs
diff --git a/doc/site/src/news.page b/doc/site/src/news.page index 5cbce8a2..6adfcc96 100644 --- a/doc/site/src/news.page +++ b/doc/site/src/news.page @@ -7,6 +7,28 @@ ordering: 2 h1. Latest News +h2. Mar-04: Mongrel 0.3.8 -- Bug Fix Release + +A small release that fixes a few bugs reported to the tracker and adds +one enhancement that was requested. Rails applications can now access +the RailsHandler that is being used and then work with the DirHandler +that is responsible for serving files. For example: + + render_text @request.cgi.handler.files.can_serve(@request['PATH_INFO']) + +Will return the physical location of the given URI. This will be the basis +of an improved send_file and possibly file-upload system. + +* Fix for mongrel_rails_service -n parameter name clash. +* Fix for giving mongrel_rails_service paths with spaces in the name. +* Fix for a compiler warning in the C extension on Debian. +* Improvement to the Rakefile for cleanly building win32 and regular gems. +* Access to RailsHandler from within Rails applications. +* Tested Platforms: Linux, Win32, FreeBSD, OSX + +"Download 0.3.8":http://rubyforge.org/frs/?group_id=1306 + + h2. Mar-03: Mongrel 0.3.7.1 -- Solid Rails, Win32, SwitchTower, Docs A slightly longer time between releases but this is packed with lots of good