1368件ヒット
[1301-1368件を表示]
(0.046秒)
別のキーワード
ライブラリ
- ビルトイン (132)
- fileutils (72)
-
net
/ imap (72) - openssl (24)
- pathname (12)
- pstore (84)
- psych (48)
-
rexml
/ document (588) -
rexml
/ streamlistener (36) -
rubygems
/ security (72) -
rubygems
/ server (12) -
win32
/ registry (108) - win32ole (24)
クラス
- Dir (36)
-
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 (156) -
REXML
:: CData (36) -
REXML
:: DocType (24) -
REXML
:: Document (12) -
REXML
:: Element (180) -
REXML
:: Elements (60) -
REXML
:: Instruction (24) -
REXML
:: Text (12) -
REXML
:: XPath (36) - WIN32OLE (12)
-
WIN32OLE
_ TYPELIB (12) -
Win32
:: Registry (108)
モジュール
- FileUtils (72)
-
Gem
:: Security (60) - Math (24)
-
OpenSSL
:: OCSP (12) -
OpenSSL
:: X509 (12) - Process (12)
-
Process
:: GID (24) -
Process
:: UID (36) -
REXML
:: StreamListener (36)
キーワード
- AlmostNoSecurity (12)
- Comment (12)
- Default (12)
-
HKEY
_ CLASSES _ ROOT (12) -
HKEY
_ CURRENT _ CONFIG (12) -
HKEY
_ CURRENT _ USER (12) -
HKEY
_ DYN _ DATA (12) -
HKEY
_ LOCAL _ MACHINE (12) -
HKEY
_ PERFORMANCE _ DATA (12) -
HKEY
_ PERFORMANCE _ NLSTEXT (12) -
HKEY
_ PERFORMANCE _ TEXT (12) -
HKEY
_ USERS (12) - HighSecurity (12)
- LowSecurity (12)
- MediumSecurity (12)
- NOEXPLICIT (12)
- NoSecurity (12)
- Pretty (12)
- Transitive (12)
- TreeBuilder (12)
-
V
_ ERR _ UNABLE _ TO _ GET _ ISSUER _ CERT (12) - [] (24)
- []= (12)
- abort (12)
-
add
_ attribute (24) -
add
_ element (12) - attribute (12)
- cbrt (12)
-
change
_ privilege (24) - chown (12)
-
chown
_ R (12) - chroot (12)
- commit (12)
- connect (12)
- content (12)
-
copy
_ entry (12) -
copy
_ file (12) -
cp
_ r (12) - delete (36)
-
delete
_ all (12) -
delete
_ element (12) -
delete
_ namespace (12) - doctype (12)
- each (36)
-
each
_ attribute (12) -
each
_ element _ with _ attribute (12) -
each
_ element _ with _ text (12) - elementdecl (12)
- entitydecl (12)
- fetch (12)
- first (12)
-
from
_ name (12) -
get
_ attribute (12) -
get
_ attribute _ ns (12) -
get
_ text (12) - getquota (12)
- getquotaroot (12)
-
grant
_ privilege (24) -
has
_ elements? (12) - home (24)
- initgroups (12)
- length (12)
- mailbox (12)
- match (12)
- namespaces (12)
- new (36)
-
next
_ element (12) - prefixes (12)
- public (12)
- quotaroots (12)
- rdoc (12)
-
rexml
/ parsers / pullparser (12) -
rexml
/ parsers / sax2parser (12) -
rexml
/ parsers / streamparser (12) -
rexml
/ parsers / ultralightparser (12) - root? (24)
-
root
_ node (12) - roots (12)
-
ruby 1
. 8 . 3 feature (12) - seqno (12)
- setquota (12)
- size (24)
- sqrt (12)
- system (12)
- tag (12)
- target (12)
- text (12)
-
to
_ a (24) -
to
_ s (12) - transaction (12)
- value (12)
-
verify
_ root (12) - xpath (12)
検索結果
先頭5件
-
REXML
:: Comment (36.0) -
XML コメントを表すクラス。
...コメントとは <!-- と --> で挟まれたテキストです。
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<!-- xx -->
<root>
<!-- yy -->
text
<!-- zz -->
</root>
EOS
doc[0].string # => " xx "
doc.root[1].string # => " yy "
doc.root[3].string # => " zz "
//}... -
rexml
/ parsers / ultralightparser (36.0) -
パース結果を配列で作られた木構造により返すパーサ。
...な配列で表現されます。
: [:start_element, 親ノード, 要素名, 属性, *子ノード]
XML要素。属性は { 属性名文字列 => 属性値文字列 } という Hash。
子ノードの配列は node[4..-1] で得られる。
: [:text, 正規化文字列]
テキストノード......要素名, 属性名とデフォルト値, 宣言文字列]
DTDの属性リスト宣言。属性名とデフォルト値 は { 属性名文字列 => デフォルト値文字列(なければnil) } という Hash
: [:elementdecl, 宣言文字列]
DTDの要素宣言
: [:entitydecl, *パラメー......TF-8" ?>
<root>
<a n="1">xyz</a>
<b m="2" />
</root>
XML
pp parser.parse
# >> [[:xmldecl, "1.0", "UTF-8", nil],
# >> [:text, "\n"],
# >> [:start_element,
# >> [...],
# >> "root",
# >> {},
# >> [:text, "\n "],
# >> [:start_element, [...], "a", {"n"=>"1"}, [:text, "xyz"]],
# >> [:te... -
REXML
:: Text . new(arg , respect _ whitespace = false , parent = nil , raw = nil , entity _ filter = nil , illegal = REXML :: Text :: NEEDS _ A _ SECOND _ CHECK) (30.0) -
テキストノードオブジェクトを生成します。
...れていない場合は、XMLの規格上
以下の実体参照/対応文字がデフォルトで使われます。
* & &
* < <
* > >
* " "
* ' '
illegal は内部用なので使わないでください。
@param arg テキストデータ(文字列)もしくは元デ......しの場合][ruby]{
p REXML::Text.new("<&", false, nil, false).to_s # => "<&"
p REXML::Text.new("<&", false, nil, false).to_s # => "&lt;&amp;"
p REXML::Text.new("<&", false, nil, true).to_s # => "<&"
p REXML::Text.new("<&", false, nil, true).to_s # parse error
/......= REXML::Document.new(<<EOS)
doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE root [
<!ENTITY p "foobar publisher">
<!ENTITY % q "quzz">
]>
<root />
EOS
REXML::Text.new("&quzz", false, doc.root, false).to_s # => "&&q;"
REXML::Text.new("quzz", false, doc.root, true).to_s # => "quzz"
//}... -
REXML
:: Attributes # []=(name , value) (24.0) -
指定した属性を更新します。
...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'/>
//}... -
Psych
:: TreeBuilder (12.0) -
YAML AST を構築するためのクラスです。
...。
また、Psych::Visitors::YAMLTree.new に渡して Ruby オブジェクト
を YAML AST に変換することもできます。
=== Example
parser = Psych::Parser.new Psych::TreeBuilder.new
parser.parse('--- foo')
parser.handler.root # => #<Psych::Nodes::Stream:0x00000001400000 ... >... -
ruby 1
. 8 . 3 feature (12.0) -
ruby 1.8.3 feature *((<ruby 1.8 feature>)) *((<ruby 1.8.2 feature>))
...ruby 1.8.3 feature
*((<ruby 1.8 feature>))
*((<ruby 1.8.2 feature>))
ruby 1.8.2 から ruby 1.8.3 までの変更点です。
掲載方針
*バグ修正の影響も含めて動作が変わるものを収録する。
*単にバグを直しただけのものは収録しない。
*ライブラリ......ap4r-1.5.5がruby-1.8.3にbundleされています。
* ((<URL:http://dev.ctor.org/soap4r/wiki/Changes-154>))
* ((<URL:http://dev.ctor.org/soap4r/wiki/Changes-155>))
== 1.8.2 (2004-12-25) -> 1.8.3 (2005-09-21)
=== 2005-09-19
: FileUtils.remove_entry_secure [lib] [new]
: FileUtils.remove_entry......ョンを受け付けるようになりました。
cd が :noop オプションを受け付けなくなりました。
cp_r が :dereference_root オプションを受け付けるようになりました。
=== 2005-09-16
: File.join [ruby] [compat]
型チェックを厳密にするよう...