708件ヒット
[1-100件を表示]
(0.022秒)
別のキーワード
クラス
-
REXML
:: AttlistDecl (36) -
REXML
:: Attribute (24) -
REXML
:: Attributes (12) -
REXML
:: Child (12) -
REXML
:: Comment (12) -
REXML
:: DocType (192) -
REXML
:: Document (24) -
REXML
:: Element (96) -
REXML
:: Elements (12) -
REXML
:: Entity (120) -
REXML
:: ExternalEntity (24) -
REXML
:: Formatters :: Pretty (48) -
REXML
:: Instruction (12) -
REXML
:: NotationDecl (24) -
REXML
:: Text (36) -
REXML
:: XMLDecl (12)
モジュール
-
REXML
:: Namespace (12)
キーワード
- [] (12)
- add (12)
-
add
_ attribute (12) -
attribute
_ of (12) -
attributes
_ of (12) - bytes (12)
- clone (12)
- compact (12)
- compact= (12)
- context (24)
-
delete
_ attribute (12) - doctype (24)
-
each
_ element _ with _ attribute (12) - empty? (24)
- entities (12)
- entity (12)
- external (12)
-
external
_ id (12) - include? (12)
- name (24)
- namespace (12)
- namespaces (24)
- ndata (12)
-
node
_ type (108) - normalized (12)
- notation (12)
- notations (12)
- prefix (12)
- prefixes (12)
- pubid (12)
- public (12)
- ref (12)
- system (24)
- system= (12)
-
to
_ a (12) -
to
_ s (24) - unnormalized (12)
- value (12)
- width (12)
- width= (12)
- write (36)
検索結果
先頭5件
-
REXML
:: DocType # node _ type -> Symbol (9103.0) -
Symbol :doctype を返します。
...Symbol :doctype を返します。... -
REXML
:: Document # doctype -> REXML :: DocType | nil (6203.0) -
文書の DTD を返します。
文書の DTD を返します。
文書が DTD を持たない場合は nil を返します。 -
REXML
:: Text # doctype -> REXML :: DocType | nil (6203.0) -
テキストノードが属する文書の DTD を返します。
...テキストノードが属する文書の DTD を返します。
そのような文書(REXML::Document)が存在しない、すなわち
テキストノードの親ノードを辿っても REXML::Document に到達しない、
場合には nil を返します。
@see REXML::DocType... -
REXML
:: AttlistDecl # node _ type -> Symbol (6103.0) -
Symbol :attlistdecl を返します。
...Symbol :attlistdecl を返します。... -
REXML
:: Attribute # node _ type -> Symbol (6103.0) -
「:attribute」というシンボルを返します。
「:attribute」というシンボルを返します。 -
REXML
:: Child # bytes (6103.0) -
@todo
@todo -
REXML
:: Comment # node _ type -> Symbol (6103.0) -
シンボル :comment を返します。
シンボル :comment を返します。 -
REXML
:: DocType # entity(name) -> String | nil (6103.0) -
name という実体参照名を持つ実体を文字列で返します。
...ML::Entity#unnormalized 参照)
された文字列が返されます。
name という名前を持つ実体が存在しない場合には nil を返します。
@param name 実体参照名(文字列)
//emlist[][ruby]{
doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE foo [
<!ENTITY bar "ba......rbarbarbar">
]>
EOS
p doctype.entity("bar") # => "barbarbar"
p doctype.entity("foo") # => nil
//}... -
REXML
:: DocType # system -> String | nil (6103.0) -
DTD のシステム識別子を返します。
.../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"
doctype.public # => nil
//}...