756件ヒット
[701-756件を表示]
(0.137秒)
ライブラリ
-
net
/ imap (72) - pathname (12)
- pstore (84)
- psych (36)
-
rexml
/ document (480) -
rexml
/ streamlistener (36) -
rubygems
/ security (12) -
rubygems
/ server (12)
クラス
-
Gem
:: Security :: Policy (12) -
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 (12) -
REXML
:: Attributes (144) -
REXML
:: CData (24) -
REXML
:: DocType (24) -
REXML
:: Document (12) -
REXML
:: Element (180) -
REXML
:: Elements (72) -
REXML
:: Instruction (24)
モジュール
キーワード
- [] (24)
- []= (12)
- 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) - prefixes (12)
- public (12)
- quotaroots (12)
- root? (24)
-
root
_ node (12) - roots (12)
- seqno (12)
- setquota (12)
- size (24)
- system (12)
- tag (12)
- target (12)
- text (12)
-
to
_ a (24) -
to
_ s (12) - transaction (12)
- value (12)
-
verify
_ root (12) - xpath (12)
検索結果
先頭5件
-
Net
:: IMAP # setquota(mailbox , quota) -> Net :: IMAP :: TaggedResponse (107.0) -
SETQUOTA コマンドを送り、指定したメールボックスに quota を設定します。
...ta を設定するメールボックス名(文字列)
@param quota quotaの値(ストレージのサイズ、もしくは nil)
@raise Net::IMAP::NoResponseError 指定したメールボックスが quota root
でない場合、もしくは権限が存在しない場合に発生します。... -
Net
:: IMAP :: ThreadMember # seqno -> Integer | nil (107.0) -
メッセージの sequence number もしくは UID を返します。
...メッセージの sequence number もしくは UID を返します。
root となるメッセージが存在しない場合しない木の場合は
nil を返します。... -
REXML
:: Attributes # to _ a -> [Attribute] (107.0) -
属性の配列を返します。
...属性の配列を返します。
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new("<a x='1' y='2' z='3' />")
doc.root.attributes.to_a # => [x='1', y='2', z='3']
//}... -
REXML
:: Element # has _ elements? -> bool (107.0) -
self が一つでも子要素を持つならば true を返します。
...素を持つならば true を返します。
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new("<a><b/><c>Text</c></a>")
doc.root.has_elements? # => true
doc.elements["/a/b"].has_elements? # => false
# /a/c はテキストノードしか持たないので false... -
REXML
:: Elements # []=(index , element) (49.0) -
集合に要素 element を追加/更新します。
...を指定します。
index には整数、文字列が指定できます。
整数を指定した場合は index 番目の要素を変更します(1-originです)。
文字列の場合は XPath としてマッチした要素を更新します。
整数/文字列どちらの場合でも対応する......ML::Document.new '<a/>'
doc.root.elements[10] = REXML::Element.new('b')
doc.root.to_s # => "<a><b/></a>"
doc.root.elements[1] # => <b/>
doc.root.elements[1] = REXML::Element.new('c')
doc.root.to_s # => "<a><c/></a>"
doc.root.elements['c'] = REXML::Element.new('d')
doc.root.to_s # => "<a><d/></a>"
//...