840件ヒット
[801-840件を表示]
(0.138秒)
ライブラリ
-
net
/ imap (72) - pathname (12)
- pstore (84)
- psych (36)
-
rexml
/ document (504) -
rexml
/ streamlistener (36) - rss (36)
-
rubygems
/ security (24) -
rubygems
/ server (12)
クラス
-
Gem
:: Security :: Policy (24) -
Gem
:: Server (12) -
Net
:: IMAP (36) -
Net
:: IMAP :: MailboxQuotaRoot (24) -
Net
:: IMAP :: ThreadMember (12) - PStore (84)
- Pathname (12)
-
Psych
:: Nodes :: Document (12) -
Psych
:: Nodes :: Node (12) -
Psych
:: TreeBuilder (12) -
RDoc
:: Options (24) -
REXML
:: Attributes (156) -
REXML
:: CData (24) -
REXML
:: DocType (24) -
REXML
:: Document (12) -
REXML
:: Element (192) -
REXML
:: Elements (72) -
REXML
:: Instruction (24)
モジュール
-
REXML
:: StreamListener (36) -
RSS
:: RootElementMixin (36)
キーワード
- [] (24)
- []= (24)
- abort (12)
-
add
_ attribute (24) -
add
_ element (12) - attribute (12)
- commit (12)
- content (12)
- delete (36)
-
delete
_ all (12) -
delete
_ element (12) -
delete
_ namespace (12) - doctype (12)
- each (24)
-
each
_ attribute (12) -
each
_ element _ with _ attribute (12) -
each
_ element _ with _ text (12) - elementdecl (12)
- entitydecl (12)
- fetch (12)
-
get
_ attribute (12) -
get
_ attribute _ ns (12) -
get
_ text (12) - getquota (12)
- getquotaroot (12)
-
has
_ elements? (12) - length (12)
- mailbox (12)
- namespaces (12)
-
next
_ element (12) -
output
_ encoding (12) -
output
_ encoding= (12) - prefixes (12)
- public (12)
- quotaroots (12)
- root= (12)
- root? (24)
-
root
_ node (12) - roots (12)
- seqno (12)
- setquota (12)
- size (24)
- system (12)
- tag (12)
- target (12)
- text (12)
- text= (12)
-
to
_ a (24) -
to
_ s (12) -
to
_ xml (12) - transaction (12)
- value (12)
-
verify
_ root (12) -
verify
_ root= (12) - xpath (12)
検索結果
先頭4件
-
Net
:: IMAP :: ThreadMember # seqno -> Integer | nil (3107.0) -
メッセージの sequence number もしくは UID を返します。
...メッセージの sequence number もしくは UID を返します。
root となるメッセージが存在しない場合しない木の場合は
nil を返します。... -
REXML
:: DocType # public -> String | nil (3107.0) -
DTD の公開識別子を返します。
...DTD の公開識別子を返します。
DTD が公開識別子による外部サブセットを含んでいない場合は nil を返します。
//emlist[][ruby]{
require 'rexml/document'
doctype = REXML::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::Document.new(<<EOS).doctype
<!DOCTYPE root SYSTEM "foobar">
EOS
doctype.system # => "foobar"
docty... -
REXML
:: Attributes # []=(name , value) (3019.0) -
指定した属性を更新します。
...list[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<-EOS)
<root xmlns:foo="http://example.org/foo"
xmlns:bar="http://example.org/bar">
<a foo:att='1' bar:att='2' att='<'/>
</root>
EOS
a = doc.get_elements("/root/a").first
a.attributes["att"] = "9"
a.attributes["foo:attt"]......= "8"
a # => <a foo:att='1' bar:att='2' att='9' foo:attt='8'/>
//}
@see REXML::Attributes#add... -
REXML
:: Attributes # each {|name , value| . . . } -> () (3019.0) -
各属性の名前と値に対しブロックを呼び出します。
...れます。
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<root xmlns:foo="http://example.org/foo"
xmlns:bar="http://example.org/bar">
<a foo:att='1' bar:att='2' att='<'/>
</root>
EOS
a = doc.get_elements("/root/a").first
a.attributes.each do |name, value......|
p [name, value]
end
# => ["foo:att", "1"]
# => ["bar:att", "2"]
# => ["att", "<"]
//}...