about summary refs log tree commit homepage
path: root/History.txt
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-09-07 15:49:55 -0700
committerEric Wong <normalperson@yhbt.net>2009-09-07 16:00:07 -0700
commitcee939b527e82237f89eb8eece62610854ac888a (patch)
tree019f3874373ea19c4292df73d90c8df85cee634c /History.txt
parent00814d46e9e82fa24d38bd77172143df3757f020 (diff)
downloadclogger-cee939b527e82237f89eb8eece62610854ac888a.tar.gz
Several bikeshed reasons brought me to this point:

* I like the README.html layout more than any default index.html
  even if it's using README content.  Having links on the side
  helps navigation IMHO.

* publish_docs preserves timestamps to improve cache hit rate

* git is used to maintain the manifest at packaging/release-time
  so my changesets have less noise in them

* git is used to generate history files (from tag messages),
  this is a more DRY approach to me.

* I don't like the ".txt" suffix being translated to "_txt.html" in
  URLs.  I don't like the ".txt" suffix in general.

* I don't like Manifest.txt showing up in my RDoc
Diffstat (limited to 'History.txt')
-rw-r--r--History.txt45
1 files changed, 0 insertions, 45 deletions
diff --git a/History.txt b/History.txt
deleted file mode 100644
index a989a0a..0000000
--- a/History.txt
+++ /dev/null
@@ -1,45 +0,0 @@
-=== 0.0.5 / 2009-09-02
-
-   The following variables are now exposed: $request_method,
-   $content_length and $content_type.  Additionally, attempts
-   to use $http_content_length or $http_content_type will be
-   remapped to use the non-"$http_"-prefixed variable instead
-   since the "$http_"-variants of those variables is not allowed
-   by Rack.
-
-=== 0.0.4 / 2009-09-02
-
-    The pure Ruby version now escapes with uppercase A-F
-    characters to match nginx log output.  There are now extra
-    checks against badly behaving Rack applications and 500
-    errors will be logged before TypeError is raised if the
-    application response does not conform (minimally) to Rack
-    expectations.  Finally, handling of $request (requests
-    without "HTTP_VERSION" set in the Rack env) should now be
-    logged correctly without unnecessary trailing characters.
-
-    Hackers: the primary git repository has been moved to
-    git://git.bogomips.org/clogger.git for now since I'm having
-    issues with pushing to Rubyforge (seems related to Support
-    Requests item #26185).
-
-=== 0.0.3 / 2009-08-29
-
-    The MRI extension clogger_ext gets GC bug fix and
-    cleanups/robustness improvements.  It should now be more
-    tolerant of misbehaving applications in that it'll be less
-    likely to segfault.  No changes to the (recommended) pure
-    implementation.
-
-=== 0.0.2 / 2009-08-29
-
-* 2 bug fixes
-
-   * support "$request_uri" as a log variable
-   * Log bad/invalid app responses as 500 errors
-
-=== 0.0.1 / 2009-08-28
-
-* 1 major enhancement
-
-  * initial release