るりまサーチ

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

別のキーワード

  1. cgi/html form
  2. cgi/html doctype
  3. cgi/html element_init
  4. cgi/html multipart_form
  5. cgi html

キーワード

検索結果

<< < ... 17 18 19 >>

RDoc::Options#generator -> Generator (7.0)

コマンドライン引数の --fmt オプションで指定した文字列に応じた Generator を返します。

...コマンドライン引数の --fmt オプションで指定した文字列に応じた
Generator を返します。

指定しなかった場合は、HTML に対応する Generator を返します。...

RDoc::Options#template -> String (7.0)

コマンドライン引数の --template オプションで指定した名前を文字列の配列 で返します。

...コマンドライン引数の --template オプションで指定した名前を文字列の配列
で返します。

指定しなかった場合は 'html' を返します。...

REXML::DocType#public -> String | nil (7.0)

DTD の公開識別子を返します。

...Document.new(<<EOS).doctype
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
EOS
doctype.system # => "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
doctype.public # => "-//W3C//DTD XHTML 1.0 Strict//EN"

doctype = REXML::Do...

REXML::DocType#system -> String | nil (7.0)

DTD のシステム識別子を返します。

...Document.new(<<EOS).doctype
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
EOS
doctype.system # => "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
doctype.public # => "-//W3C//DTD XHTML 1.0 Strict//EN"

doctype = REXML::Do...

Thread#thread_variable_get(key) -> object | nil (7.0)

引数 key で指定した名前のスレッドローカル変数を返します。

...}.resume
}.join.value # => ['bar', nil]

この例の "bar" は Thread#thread_variable_get により得られ
た値で、nil はThread#[] により得られた値です。

@see Thread#thread_variable_set, Thread#[]

@see https://magazine.rubyist.net/articles/0041/0041-200Special-note.html...

絞り込み条件を変える

WEBrick::HTTPResponse#content_type=(val) (7.0)

Content-Type ヘッダの値をセットします。

...Content-Type ヘッダの値をセットします。

@param val Content-Type ヘッダの値を文字列で指定します。

res.content_type = "text/html"

@see WEBrick::HTTPUtils.#mime_type...
<< < ... 17 18 19 >>