cgi icon indicating copy to clipboard operation
cgi copied to clipboard

CGI is a large class, providing several categories of methods, many of which are mixed in from other modules.

Results 20 cgi issues
Sort by recently updated
recently updated
newest added

``` test.cgi:8: warning: CGI library is removed from Ruby 3.5. Please use cgi/escape instead for CGI.escape and CGI.unescape features. If you need to use the full features of CGI library,...

This is a port of the change I submitted in https://github.com/ruby/erb/pull/87. - Perform buffer allocation on first instance of escapable character. - Instead of copying characters one at a time,...

I have this code in a .cgi file: #!/usr/bin/ruby -w # Encoding: UTF-8 # frozen_string_literal: true # ============================================================================ # require "cgi" cgi = CGI.new value = cgi['field_name'] # => "123"...

Using this in a .cgi page: require 'cgi' cgi = CGI.new value = cgi['field_name'] # => "123" cgi['flowerpot'] # => "" fields = cgi.keys # => [ "field_name" ] cgi.has_key?('field_name')...

I'm running my test suite against `ruby-head`, `jruby-head` and `truffleruby-head`. I experience this failure only on CRuby. The `rouge` gem(one of my dependencies) relies on `cgi`. My test suite was...

`String#split` yields each element if the block is given, since ruby 2.6.

The option specifies the digest algorithm to hash the session id when generating the filename for this session's FileStore file. It is defaulted to "MD5" because of backward compatibility for...

I wonder if there are any plans to implement `Max-Age` attribute support. We need to parse it and return via `max_age` method. > Indicates the number of seconds until the...

This is a sign-post issue. jruby-head does not currently build right. The setup-ruby step say this: ``` Modifying JAVA_HOME for JRuby attempting to run with existing JAVA_HOME /usr/lib/jvm/temurin-17-jdk-amd64/bin/java -jar /home/runner/.rubies/jruby-head/lib/jruby.jar...