るりまサーチ

最速Rubyリファレンスマニュアル検索!
792件ヒット [1-100件を表示] (0.209秒)

別のキーワード

  1. etc sc_xopen_enh_i18n
  2. pop n_bytes
  3. net/pop n_bytes
  4. rsa n
  5. pop n_mails

検索結果

<< 1 2 3 ... > >>

REXML::Element#attribute(name, namespace = nil) -> REXML::Attribute | nil (27675.0)

name で指定される属性を返します。

...
n
ame で指定される属性を返します。

属性は REXML::Attribute オブジェクトの形で返します。

n
ame は "foo:bar" のように prefix を指定することができます。

n
amespace で名前空間の URI を指定することで、その名前空間内で
n
ame という...
... nil を返します。

@param name 属性名(文字列)
@param namespace 名前空間のURI(文字列)
//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='...
...&lt;'/>
</root>
EOS
a
= doc.get_elements("/root/a").first
a
.attribute("att") # => att='&lt;'
a
.attribute("att", "http://example.org/bar") # => bar:att='2'
a
.attribute("bar:att") # => bar:att='2'
a
.attribute("baz") # => nil
//}...

REXML::Attributes#get_attribute_ns(namespace, name) -> REXML::Attribute | nil (24569.0)

namespace と name で特定される属性を返します。

...namespace と name で特定される属性を返します。

n
amespace で名前空間を、 name で prefix を含まない属性名を
指定します。

指定された属性が存在しない場合は nil を返します。

XML プロセッサが prefix を置き換えてしまった場合...
...@param namespace 名前空間(URI, 文字列)
@param name 属性名(文字列)

//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='&lt;'/>
</root>
EOS
a
=...
..._elements("/root/a").first

a
.attributes.get_attribute_ns("", "att") # => att='&lt;'
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")...

REXML::Element#each_element_with_attribute(key, value = nil, max = 0, name = nil) {|element| ... } -> () (21438.0)

特定の属性を持つすべての子要素を引数としてブロックを呼び出します。

...とします。
value を指定すると、keyで指定した属性名を持つ属性の値がvalueである
もののみを対象とします。
maxを指定すると、対象となる子要素の先頭 max 個のみが対象となります。
n
ame を指定すると、それは xpath 文字列と...
...象となります。

max に 0 を指定すると、max の指定は無視されます(0個ではありません)。

@param key 属性名(文字列)
@param value 属性値(文字列)
@param max ブロック呼出の対象とする子要素の最大個数
@param name xpath文字列

//emlist[][rub...
...ument'
doc = REXML::Document.new("<a><b id='1'/><c id='2'/><d id='1'/><e/></a>")
doc.root.each_element_with_attribute('id'){|e| p e }
# >> <b id='1'/>
# >> <c id='2'/>
# >> <d id='1'/>
doc.root.each_element_with_attribute('id', '1'){|e| p e }
# >> <b id='1'/>
# >> <d id='1'/>
doc.root.each_element_w...

RDoc::Markup#attribute_manager -> RDoc::AttributeManager (18602.0)

自身の RDoc::AttributeManager オブジェクトを返します。

...自身の RDoc::AttributeManager オブジェクトを返します。...

REXML::Attributes#get_attribute(name) -> Attribute | nil (18545.0)

name という名前の属性を取得します。

...name という名前の属性を取得します。

n
ame という名前を持つ属性がない場合は 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='&lt;'/>
</root>
EOS
a
= doc.get_elements("/root/a").first

a
.attributes.get_attribute("att") # => att='&lt;'
a
.attributes.get_attribute("foo:att") # => foo:att='1'
//}...

絞り込み条件を変える

OpenSSL::X509::Request#attributes -> [OpenSSL::X509::Attribute] (15558.0)

CSR が保持している attribute を OpenSSL::X509::Attribute の配列で返します。

... attribute を OpenSSL::X509::Attribute
の配列で返します。

attribute
とは X.509 証明書署名要求 に含まれる申請者に関する
追加的な情報です。必須ではありません。X.509v3 拡張領域を
CSR に含めるときは "reqExt" という oid の attribute...
...を追加
します。

@see OpenSSL::X509::Request#attribute=,
OpenSSL::X509::Request#add_attribute...

REXML::Element#delete_attribute(key) -> REXML::Attribute | nil (15527.0)

要素から key という属性名の属性を削除します。

...nil を返します。

@param 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'/>
//}...

OpenSSL::X509::Request#add_attribute(attr) -> OpenSSL::X509::Attribute (15449.0)

新たな attribute を CSR に追加します。

...新たな attribute を CSR に追加します。

@param attr 追加する attribute(OpenSSL::X509::Attribute
インスタンス)
@return 渡した attribute オブジェクトを返します
@see OpenSSL::X509::Request#attribute,
OpenSSL::X509::Request#attribute=...

RDoc::Context#add_attribute(an_attribute) -> () (15409.0)

引数で指定した RDoc::Attr オブジェクトを追加します。

...引数で指定した RDoc::Attr オブジェクトを追加します。

@param an_attribute RDoc::Attr オブジェクトを指定します。...

REXML::Element#attributes -> REXML::Attributes (15401.0)

要素が保持している属性の集合を返します。

要素が保持している属性の集合を返します。

絞り込み条件を変える

<< 1 2 3 ... > >>