648件ヒット
[201-300件を表示]
(0.093秒)
クラス
- Module (72)
-
Net
:: IMAP (12) -
Net
:: IMAP :: FetchData (12) -
Net
:: IMAP :: MailboxList (12) -
Net
:: IMAP :: StatusData (12) -
OpenSSL
:: X509 :: Attribute (24) -
RDoc
:: Options (12) -
REXML
:: Attribute (72) -
REXML
:: Attributes (36) -
REXML
:: DocType (12) -
REXML
:: Element (12) - String (36)
-
Thread
:: Backtrace :: Location (48) -
URI
:: LDAP (12)
モジュール
キーワード
- [] (12)
-
absolute
_ path (12) -
add
_ element (12) -
attr
_ accessor (12) -
attr
_ reader (12) -
attr
_ writer (12) -
attribute
_ of (12) - attributes (12)
-
base
_ label (12) - checkbox (12)
-
checkbox
_ group (12) - encode (36)
-
extra
_ accessor _ flags (12) -
file
_ field (12) - form (24)
- hidden (12)
- html (24)
- img (12)
- inspect (12)
-
multipart
_ form (24) - namespace (12)
- namespaces (12)
- oid (12)
-
password
_ field (12) - prefix (12)
- prefixes (12)
-
radio
_ group (12) - reset (12)
-
scrolling
_ list (12) - status (12)
- submit (12)
-
text
_ field (12) - textarea (12)
-
to
_ der (12) -
to
_ json (12) -
to
_ s (24) -
to
_ string (12) - value (12)
- xpath (12)
検索結果
先頭5件
-
OpenSSL
:: X509 :: Attribute # oid -> String (3102.0) -
attribute の Object ID(識別子)を文字列で返します。
...attribute の Object ID(識別子)を文字列で返します。
@raise OpenSSL::X509::AttributeError Object ID の取得に失敗した場合に発生します
@see OpenSSL::X509::Attribute#oid=... -
OpenSSL
:: X509 :: Attribute # to _ der -> String (3102.0) -
自身を DER 形式のバイト列に変換します。
...自身を DER 形式のバイト列に変換します。
@raise OpenSSL::X509::AttributeError 変換に失敗した場合に発生します... -
REXML
:: Attribute # namespace(arg = nil) -> String | nil (3102.0) -
属性の名前空間の URI を返します。
...//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("el")
e.add_attribute("xmlns:ns", "http://www.example.com/ns")
e.add_attribute("ns:r", "rval")
p e.attributes.get_attribute("r").prefix # => "ns"
p e.attributes.get_attribute("r").namespace # => "http://www.example.com/ns"
//}... -
REXML
:: Attribute # prefix -> String (3102.0) -
属性の名前空間を返します。
...ument'
e = REXML::Element.new( "elns:myelement" )
e.add_attribute( "nsa:a", "aval" )
e.add_attribute( "b", "bval" )
p e.attributes.get_attribute( "a" ).prefix # -> "nsa"
p e.attributes.get_attribute( "b" ).prefix # -> "elns"
a = REXML::Attribute.new( "x", "y" )
p a.prefix... -
REXML
:: Attribute # to _ s -> String (3102.0) -
正規化された属性値を返します。
正規化された属性値を返します。
属性値の正規化については XML の仕様を参考にしてください。 -
REXML
:: Attribute # value -> String (3102.0) -
正規化されていない属性値を返します。
正規化されていない属性値を返します。
属性値の正規化については XML の仕様を参考にしてください。 -
REXML
:: Attribute # xpath -> String (3102.0) -
その属性を指定する xpath 文字列を返します。
その属性を指定する xpath 文字列を返します。
例えば "/foo/bar/@ns:r" という文字列を返します。 -
REXML
:: Attributes # [](name) -> String | nil (3102.0) -
属性名nameの属性値を返します。
...属性名nameの属性値を返します。
属性値ではなく REXML::Attribute オブジェクトが必要な場合は
REXML::Attributes#get_attribute を使ってください。
nameという属性名の属性がない場合は nil を返します。
@param name 属性名(文字列)
//emlis......'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
p a.attributes["att"] # => "<"
p a.attributes["bar:att"] # => "2"
//}... -
REXML
:: Attributes # prefixes -> [String] (3102.0) -
self の中で宣言されている prefix の集合を 文字列の配列で返します。
...'
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
p doc.root.attributes.prefixes # => ["foo", "bar"]
p a.attributes.prefixes # => []
//}...