種類
ライブラリ
- English (48)
-
cgi
/ core (12) -
cgi
/ html (72) - csv (360)
- fileutils (19)
-
net
/ http (60) - openssl (72)
- ostruct (24)
-
rubygems
/ package / tar _ header (12) -
rubygems
/ specification (12) -
webrick
/ httpauth / authenticator (72) -
webrick
/ httpresponse (24)
クラス
- CSV (120)
-
CSV
:: FieldInfo (72) -
CSV
:: Row (156) -
Gem
:: Package :: TarHeader (12) -
Gem
:: Specification (12) -
OpenSSL
:: PKey :: EC (12) - OpenStruct (12)
-
WEBrick
:: HTTPResponse (24)
モジュール
-
CGI
:: HtmlExtension (72) -
CGI
:: QueryExtension (12) - FileUtils (19)
- Kernel (48)
-
Net
:: HTTPHeader (48) -
OpenSSL
:: X509 (48) -
WEBrick
:: HTTPAuth :: Authenticator (36) -
WEBrick
:: HTTPAuth :: ProxyAuthenticator (36)
キーワード
-
$ FIELD _ SEPARATOR (12) -
$ FS (12) -
$ OFS (12) -
$ OUTPUT _ FIELD _ SEPARATOR (12) -
DEFAULT
_ OPTIONS (12) - FIELDS (12)
- FieldInfo (12)
- HTTPRequestHeaderFieldsTooLarge (12)
- InfoField (12)
-
MARSHAL
_ FIELDS (12) - OpenStruct (12)
- RequestField (24)
- ResponseField (24)
- ResponseInfoField (12)
-
V
_ ERR _ ERROR _ IN _ CERT _ NOT _ AFTER _ FIELD (12) -
V
_ ERR _ ERROR _ IN _ CERT _ NOT _ BEFORE _ FIELD (12) -
V
_ ERR _ ERROR _ IN _ CRL _ LAST _ UPDATE _ FIELD (12) -
V
_ ERR _ ERROR _ IN _ CRL _ NEXT _ UPDATE _ FIELD (12) - X509 (12)
- [] (36)
- []= (48)
-
add
_ field (12) -
builtin
_ curves (12) - cgi (12)
-
cgi
/ session (12) - convert (36)
-
cp
_ lr (7) -
cp
_ r (12) - delete (12)
-
delete
_ field (12) -
delete
_ if (12) - each (12)
- field? (12)
-
field
_ row? (12) -
field
_ size _ limit (12) - fields (12)
-
file
_ field (24) -
get
_ fields (12) - header (12)
- header= (12)
-
header
_ convert (36) - index (24)
- index= (12)
- line (12)
- line= (12)
- multipart? (12)
-
net
/ imap (12) - new (24)
-
password
_ field (24) -
ruby 1
. 8 . 3 feature (12) -
ruby 1
. 8 . 4 feature (12) -
text
_ field (24) -
unconverted
_ fields? (12) -
values
_ at (12) -
webrick
/ cgi (12)
検索結果
-
Net
:: HTTPHeader # []=(key , val) (6.0) -
key ヘッダフィールドに文字列 val をセットします。
...{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req['user-agent'] # => Ruby
req['user-agent'] = "update"
req['user-agent'] # => update
//}
@see Net::HTTPHeader#[] ,
Net::HTTPHeader#add_field,
Net::HTTPHeader#get_fields... -
OpenStruct (6.0)
-
要素を動的に追加・削除できる手軽な構造体を提供するクラスです。
...w
ab.foo = 25
p ab.foo # => 25
ab.bar = 2
p ab.bar # => 2
p ab # => <OpenStruct foo=25, bar=2>
ab.delete_field("foo")
p ab.foo # => nil
p ab # => <OpenStruct bar=2>
初期化にハッシュを使用することもできます。... -
cgi
/ session (6.0) -
CGI のセッション管理を行うライブラリ。
...cgi.form('action'=>"#{CGI.escapeHTML(cgi.script_name)}") {
cgi.p {
'あなたの名前は?' +
cgi.text_field('name') +
cgi.hidden('cmd', 'hello') +
cgi.submit('です。')
}
}
}
}
CGI.pretty(html)... -
net
/ imap (6.0) -
このライブラリは Internet Message Access Protocol (IMAP) の クライアントライブラリです。2060 を元に 実装されています。
...lvestrand, H., "Tags for the Identification of
Languages", RFC 1766, March 1995.
* [MD5]
Myers, J., and M. Rose, "The Content-MD5 Header Field", RFC
1864, October 1995.
* [MIME-IMB]
Freed, N., and N. Borenstein, "MIME (Multipurpose Internet
Mail Extensions) Part One: Format... -
ruby 1
. 8 . 3 feature (6.0) -
ruby 1.8.3 feature *((<ruby 1.8 feature>)) *((<ruby 1.8.2 feature>))
...5811>))
$ ruby-1.8.2 -e 'p "a" <=> 1'
false
$ ruby-1.8.3 -e 'p "a" <=> 1'
nil
=== 2005-03-06
: HTTPHeader#get_fields [lib][new]
: HTTPHeader#add_field [lib][new]
追加。((<ruby-list:40629>))
=== 2005-02-23
: local variable and method [ruby][bug]
レシーバを指定し...