るりまサーチ

最速Rubyリファレンスマニュアル検索!
859件ヒット [801-859件を表示] (0.012秒)

別のキーワード

  1. cgi text_field
  2. cgi file_field
  3. cgi password_field
  4. cgi/html text_field
  5. cgi/html file_field

検索結果

<< < ... 7 8 9 >>

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]
レシーバを指定し...

絞り込み条件を変える

<< < ... 7 8 9 >>