public
Description: CGIAlt is a re-implementation of cgi.rb
Homepage: http://cgialt.rubyforge.org/
Clone URL: git://github.com/kwatch/cgialt.git
cgialt / CHANGES.txt
100644 33 lines (25 sloc) 0.924 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
## $Rev$
## $Release$
## $Copyright$
 
- release: 1.0.0
  date: 2008-11-09
  enhancements:
    - Ruby 1.9 support
    - Add tests for 'cgialt/util.rb'.
 
  changges:
    - CGI class now uses CGI#env_table() instead of using $CGI_ENV directly.
    - CGI class now uses CGI#stdinput() and CGI#stdoutput() instead of using $stdin and $stdout directly.
    - Refactor 'cgialt/fcgi/core.rb'.
 
  bugfixes:
    - CGI.parse() supports to parse 'a=10&b' (no '=').
    - CGI.parse() returned NoMethodError when QUERY_STRING was "&=10". Now fixed.
    - CGI.unescapeHTML() couldn't convert " ". Now fixed.
    - Typo fixed in CGI::Cookie.parse().
    - Move RFC822_DAYS and RFC822_MONTHS from 'cgi/core.rb' to 'cgi/util.rb'.
 
 
- release: 0.0.2
  date: 2007-12-11
  enhancements:
    - FastCGI supported. If you required 'cgialt/fcgi' instead of 'fcgi',
      you can use FCGI.each_cgi() method.
 
 
- release: 0.0.1
  date: 2007-12-09