1269件ヒット
[1-100件を表示]
(0.107秒)
種類
- インスタンスメソッド (960)
- 特異メソッド (192)
- クラス (72)
- ライブラリ (36)
- 文書 (9)
ライブラリ
-
cgi
/ html (252) - json (12)
- openssl (156)
-
rdoc
/ context (60) -
rdoc
/ markup (24) -
rexml
/ document (528) -
rexml
/ sax2listener (12) -
rexml
/ streamlistener (12) - rss (12)
-
rubygems
/ specification (120) - uri (24)
-
webrick
/ httprequest (12)
クラス
-
Gem
:: Specification (120) -
JSON
:: State (12) -
OpenSSL
:: X509 :: Attribute (84) -
OpenSSL
:: X509 :: Request (36) -
RDoc
:: Context (60) -
RDoc
:: Markup (24) -
REXML
:: Attribute (192) -
REXML
:: Attributes (192) -
REXML
:: DocType (24) -
REXML
:: Element (96) -
URI
:: LDAP (24) -
WEBrick
:: HTTPRequest (12)
モジュール
-
CGI
:: HtmlExtension (252) -
REXML
:: SAX2Listener (12) -
REXML
:: StreamListener (12)
キーワード
- << (12)
- == (12)
- Attribute (24)
- AttributeError (12)
- Attributes (12)
- MissingAttributeError (12)
-
NEWS for Ruby 2
. 4 . 0 (9) - Request (12)
- [] (12)
- []= (24)
- add (12)
-
add
_ attribute (48) -
add
_ attributes (12) -
add
_ to (12) -
array
_ attribute (12) -
array
_ attributes (12) - attlistdecl (12)
-
attribute
_ alias _ singular (12) -
attribute
_ defaults (12) -
attribute
_ manager (12) -
attribute
_ names (12) -
attribute
_ of (12) - attributes (72)
- attributes= (24)
-
attributes
_ of (12) - checkbox (12)
-
checkbox
_ group (12) - clone (12)
- delete (12)
-
delete
_ all (12) -
delete
_ attribute (12) - each (12)
-
each
_ attribute (24) -
each
_ element _ with _ attribute (12) - element (12)
- element= (12)
-
file
_ field (12) -
find
_ local _ symbol (12) - form (24)
-
get
_ attribute (12) -
get
_ attribute _ ns (12) -
has
_ attributes? (12) - hidden (12)
- html (24)
- img (12)
- length (12)
-
multipart
_ form (24) - namespace (12)
- namespaces (12)
-
net
/ http (12) - new (72)
-
node
_ type (12) - normalized= (12)
- oid (12)
- oid= (12)
-
password
_ field (12) - prefix (12)
- prefixes (12)
-
radio
_ group (12) -
rdoc
/ parser / ruby (12) - remove (12)
-
required
_ attribute (12) -
required
_ attribute? (12) -
required
_ attributes (12) - reset (12)
-
rexml
/ document (12) -
scrolling
_ list (12) - size (12)
-
start
_ element (12) - submit (12)
-
text
_ field (12) - textarea (12)
-
to
_ a (12) -
to
_ der (12) -
to
_ s (12) -
to
_ string (12) - value (24)
- value= (12)
- write (12)
- xpath (12)
検索結果
先頭5件
- REXML
:: Element # attribute(name , namespace = nil) -> REXML :: Attribute | nil - Gem
:: Specification . attribute(name) -> () - REXML
:: Attributes # each _ attribute {|attribute| . . . } -> () - REXML
:: Attributes # get _ attribute _ ns(namespace , name) -> REXML :: Attribute | nil - REXML
:: Attributes # get _ attribute(name) -> Attribute | nil
-
REXML
:: Element # attribute(name , namespace = nil) -> REXML :: Attribute | nil (24432.0) -
name で指定される属性を返します。
...name で指定される属性を返します。
属性は REXML::Attribute オブジェクトの形で返します。
name は "foo:bar" のように prefix を指定することができます。
namespace で名前空間の URI を指定することで、その名前空間内で
name という......ist[][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.attribute("att") # => att='<'
a.attribute("att"......, "http://example.org/bar") # => bar:att='2'
a.attribute("bar:att") # => bar:att='2'
a.attribute("baz") # => nil
//}... -
Gem
:: Specification . attribute(name) -> () (24201.0) -
デフォルト値を指定したアクセサを定義するために使用します。
...ルト値を指定したアクセサを定義するために使用します。
以下の副作用があります。
* クラス変数 @@attributes, @@default_value を変更します。
* 通常の属性書き込みメソッドを定義します。
* デフォルト値を持つ属性読み取... -
REXML
:: Attributes # each _ attribute {|attribute| . . . } -> () (18414.0) -
各属性に対しブロックを呼び出します。
...ML::Attribute オブジェクトで渡されます。
//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_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 _ ns(namespace , name) -> REXML :: Attribute | nil (18326.0) -
namespace と name で特定される属性を返します。
...ist[][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_ns("", "att") # => att='......<'
a.attributes.get_attribute_ns("http://example.org/foo", "att") # => foo:att='1'
a.attributes.get_attribute_ns("http://example.org/baz", "att") # => nil
a.attributes.get_attribute_ns("http://example.org/foo", "attt") # => nil
//}... -
REXML
:: Attributes # get _ attribute(name) -> Attribute | nil (18314.0) -
name という名前の属性を取得します。
...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("at......t") # => att='<'
a.attributes.get_attribute("foo:att") # => foo:att='1'
//}... -
REXML
:: Element # delete _ attribute(key) -> REXML :: Attribute | nil (15526.0) -
要素から key という属性名の属性を削除します。
...素(文字列(属性名) or REXML::Attributeオブジェクト)
//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("E")
e.add_attribute("x", "foo"); e # => <E x='foo'/>
e.add_attribute("y:x", "bar"); e # => <E x='foo' y:x='bar'/>
e.delete_attribute("x"); e # => <E y:x='bar'/>
//}... -
RDoc
:: Context # add _ attribute(an _ attribute) -> () (15408.0) -
引数で指定した RDoc::Attr オブジェクトを追加します。
...引数で指定した RDoc::Attr オブジェクトを追加します。
@param an_attribute RDoc::Attr オブジェクトを指定します。... -
RDoc
:: Context # each _ attribute {|a| . . . } -> [RDoc :: Attr] (15301.0) -
追加された RDoc::Attr に対してブロックを評価します。
...追加された RDoc::Attr に対してブロックを評価します。... -
RDoc
:: Context # attributes -> [RDoc :: Attr] (15300.0) -
追加された RDoc::Attr の配列を返します。
...追加された RDoc::Attr の配列を返します。...