660件ヒット
[1-100件を表示]
(0.174秒)
ライブラリ
-
net
/ imap (72) - pstore (24)
- psych (24)
-
rexml
/ document (420) -
rexml
/ streamlistener (36) - rss (36)
-
rubygems
/ security (24)
クラス
-
Gem
:: Security :: Policy (24) -
Net
:: IMAP (36) -
Net
:: IMAP :: MailboxQuotaRoot (24) -
Net
:: IMAP :: ThreadMember (12) - PStore (24)
-
Psych
:: Nodes :: Node (12) -
Psych
:: TreeBuilder (12) -
RDoc
:: Options (24) -
REXML
:: Attributes (156) -
REXML
:: CData (24) -
REXML
:: DocType (24) -
REXML
:: Document (12) -
REXML
:: Element (120) -
REXML
:: Elements (60) -
REXML
:: Instruction (24)
モジュール
-
REXML
:: StreamListener (36) -
RSS
:: RootElementMixin (36)
キーワード
- [] (24)
- []= (24)
-
add
_ attribute (24) -
add
_ element (12) - attribute (12)
- commit (12)
- content (12)
- delete (12)
-
delete
_ all (12) - doctype (12)
- each (24)
-
each
_ attribute (12) -
each
_ element _ with _ attribute (12) -
each
_ element _ with _ text (12) - elementdecl (12)
- entitydecl (12)
-
get
_ attribute (12) -
get
_ attribute _ ns (12) -
get
_ text (12) - getquota (12)
- getquotaroot (12)
- length (12)
- mailbox (12)
- namespaces (12)
-
next
_ element (12) -
output
_ encoding (12) -
output
_ encoding= (12) - prefixes (12)
- public (12)
- quotaroots (12)
- root= (12)
- seqno (12)
- setquota (12)
- size (24)
- system (12)
- tag (12)
- target (12)
- text (12)
-
to
_ a (24) -
to
_ s (12) -
to
_ xml (12) - transaction (12)
- value (12)
-
verify
_ root (12) -
verify
_ root= (12) - xpath (12)
検索結果
先頭5件
-
Psych
:: TreeBuilder # root -> Psych :: Nodes :: Stream (21118.0) -
AST の root を返します。
...AST の root を返します。
@see Psych::Nodes::Stream... -
RDoc
:: Options # root -> Pathname (21118.0) -
コマンドライン引数の --root オプションで指定したディレクトリを返します。
...コマンドライン引数の --root オプションで指定したディレクトリを返します。
指定されていない場合はカレントディレクトリを返します。... -
REXML
:: Document # root -> REXML :: Element | nil (18202.0) -
文書のルート要素を返します。
...文書のルート要素を返します。
文書がルート要素を持たない場合は nil を返します。... -
Net
:: IMAP :: MailboxQuotaRoot # quotaroots -> [String] (12217.0) -
問い合わせしたメールボックスの quota root 名を配列で返します。
...問い合わせしたメールボックスの quota root 名を配列で返します。
空の場合もありえます。... -
Gem
:: Security :: Policy # verify _ root -> bool (12202.0) -
この値が真である場合は、証明書チェーンのルートを検証します。
この値が真である場合は、証明書チェーンのルートを検証します。 -
Gem
:: Security :: Policy # verify _ root=(flag) (12202.0) -
証明書チェーンのルートを検証するかどうかを設定します。
証明書チェーンのルートを検証するかどうかを設定します。
@param flag 真、または偽を指定します。 -
Net
:: IMAP # getquotaroot(mailbox) -> [Net :: IMAP :: MailboxQuotaRoot | Net :: IMAP :: MailboxQuota] (9535.0) -
GETQUOTAROOT コマンドを送って 指定したメールボックスの quota root の一覧と、 関連する quota の情報を返します。
...GETQUOTAROOT コマンドを送って
指定したメールボックスの quota root の一覧と、
関連する quota の情報を返します。
quota root の情報は Net::IMAP::MailboxQuotaRoot のオブジェクトで、
返り値の配列の中に唯一含まれています。
quota の情......られた quota root ごとに
Net::IMAP::MailboxQuota オブジェクトで得られます。
詳しくは 2087 を見てください。
このコマンドは Net::IMAP#capability の返り値を見ることで
利用可能かどうか判断できます。
@param mailbox quota root を得たい......メールボックス名(文字列)
@raise Net::IMAP::NoResponseError 指定したメールボックスが存在しない場合に発生します... -
REXML
:: Attributes # each _ attribute {|attribute| . . . } -> () (9219.0) -
各属性に対しブロックを呼び出します。
...ttribute オブジェクトで渡されます。
//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").firs......t
a.attributes.each_attribute do |attr|
p [attr.namespace, attr.name, attr.value]
end
# => ["http://example.org/foo", "att", "1"]
# => ["http://example.org/bar", "att", "2"]
# => ["", "att", "<"]
//}... -
REXML
:: Attributes # get _ attribute(name) -> Attribute | nil (9219.0) -
name という名前の属性を取得します。
...nil を返します。
@param name 属性名(文字列)
@see REXML::Attributes#[]
//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.get_attribute("att") # => att='<'
a.attributes.get_attribute("foo:att") # => foo:att='1'
//}...