240件ヒット
[201-240件を表示]
(0.094秒)
ライブラリ
- etc (12)
-
net
/ http (12) - rake (48)
-
rdoc
/ code _ object (12) -
rdoc
/ context (12) -
rdoc
/ parser / simple (12) -
rdoc
/ text (12) -
rexml
/ document (72) - zlib (24)
クラス
-
Etc
:: Passwd (12) -
RDoc
:: CodeObject (12) -
RDoc
:: Context :: Section (12) -
RDoc
:: Parser :: Simple (12) -
REXML
:: Comment (60) -
REXML
:: DocType (12) -
Rake
:: Task (24) -
WEBrick
:: Cookie (24) -
Zlib
:: GzipFile (12) -
Zlib
:: GzipWriter (12)
モジュール
-
Net
:: HTTPHeader (12) -
RDoc
:: Text (12) -
Rake
:: TaskManager (24)
キーワード
- <=> (12)
- == (12)
-
attribute
_ of (12) - comment= (24)
-
content
_ type (12) -
full
_ comment (12) -
last
_ comment (12) -
last
_ description (12) -
normalize
_ comment (12) -
remove
_ private _ comments (12) - string= (12)
-
to
_ s (12)
検索結果
先頭4件
-
REXML
:: Comment # <=>(other) -> -1 | 0 | 1 (3033.0) -
other と内容(REXML::Comment#string)を比較します。
...other と内容(REXML::Comment#string)を比較します。... -
REXML
:: Comment # ==(other) -> bool (3033.0) -
other と内容(REXML::Comment#string)が同じならば真を返します。
...other と内容(REXML::Comment#string)が同じならば真を返します。... -
REXML
:: DocType # attribute _ of(element , attribute) -> String | nil (114.0) -
DTD 内の属性リスト宣言で、 element という名前の要素の attribute という 名前の属性のデフォルト値を返します。
...(文字列)
//emlist[][ruby]{
require 'rexml/document'
doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE books [
<!ELEMENT book (comment)>
<!ELEMENT comment (#PCDATA)>
<!ATTLIST book
author CDATA #REQUIRED
title CDATA #REQUIRED
publisher CDATA "foobar publisher">... -
Net
:: HTTPHeader # content _ type -> String|nil (108.0) -
"text/html" のような Content-Type を表す 文字列を返します。
...が存在しない場合には nil を返します。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/comments.cgi?post=comment')
req = Net::HTTP::Post.new(uri.request_uri)
req.content_type # => nil
req.content_type = 'multipart/form-data'
req.content_type # => "m...