別のキーワード
ライブラリ
-
cgi
/ html (252) - json (12)
- openssl (156)
-
rdoc
/ context (60) -
rdoc
/ markup (24) -
rexml
/ document (540) -
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)
- AttributeError (12)
- Attributes (12)
- MissingAttributeError (12)
-
NEWS for Ruby 2
. 4 . 0 (9) -
NEWS for Ruby 2
. 6 . 0 (7) - Namespace (12)
- Request (12)
- [] (12)
- []= (24)
- add (12)
-
add
_ attribute (48) -
add
_ attributes (12) -
add
_ to (12) -
array
_ attribute (12) -
array
_ attributes (12) - attlistdecl (12)
- attribute (24)
-
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件
-
OpenSSL
:: X509 :: Attribute (18022.0) -
X.509 証明書署名要求の attribute を表すクラスです。
...X.509 証明書署名要求の attribute を表すクラスです。
OpenSSL::X509::Request#attributes で取り出すことや、
OpenSSL::X509::Request#add_attribute で追加することができます。... -
REXML
:: Attribute (18012.0) -
要素(REXML::Element)の属性を表すクラスです。
...要素(REXML::Element)の属性を表すクラスです。
つまり、 <element attribute="value"/> という
要素における attribute=value というペアのことです。
属性にはなんらかの名前空間(namespace, REXML::Namespace)
に属することができます。... -
REXML
:: Attributes # get _ attribute _ ns(namespace , name) -> REXML :: Attribute | nil (9226.0) -
namespace と name で特定される属性を返します。
....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", "at... -
REXML
:: Attributes # each _ attribute {|attribute| . . . } -> () (9214.0) -
各属性に対しブロックを呼び出します。
...各属性に対しブロックを呼び出します。
個々の属性は REXML::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 fo......o: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(name) -> Attribute | nil (9214.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("......att") # => att='<'
a.attributes.get_attribute("foo:att") # => foo:att='1'
//}... -
OpenSSL
:: X509 :: Request # attributes -> [OpenSSL :: X509 :: Attribute] (6257.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
:: DocType # attribute _ of(element , attribute) -> String | nil (6254.0) -
DTD 内の属性リスト宣言で、 element という名前の要素の attribute という 名前の属性のデフォルト値を返します。
...ト宣言で、 element という名前の要素の attribute という
名前の属性のデフォルト値を返します。
elementという名前の要素の属性値は宣言されていない、
elementという名前の要素にはattributeという名前の属性が宣言されていない......はデフォルト値が宣言されていない、のいずれかの場合は nil を返します。
@param element 要素名(文字列)
@param attribute 属性名(文字列)
//emlist[][ruby]{
require 'rexml/document'
doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE books [
<!ELEMENT book......title CDATA #REQUIRED
publisher CDATA "foobar publisher">
]>
EOS
p doctype.attribute_of("book", "publisher") # => "foobar publisher"
p doctype.attribute_of("bar", "foo") # => nil
p doctype.attribute_of("book", "baz") # => nil
p doctype.attribute_of("book", "title") # => nil
//}... -
OpenSSL
:: X509 :: Request # add _ attribute(attr) -> OpenSSL :: X509 :: Attribute (6248.0) -
新たな attribute を CSR に追加します。
...新たな attribute を CSR に追加します。
@param attr 追加する attribute(OpenSSL::X509::Attribute の
インスタンス)
@return 渡した attribute オブジェクトを返します
@see OpenSSL::X509::Request#attribute,
OpenSSL::X509::Request#attribute=... -
REXML
:: DocType # attributes _ of(element) -> [REXML :: Attribute] (6235.0) -
DTD 内の属性リスト宣言で、 element という名前の要素に対し宣言されている 属性の名前とデフォルト値を REXML::Attribute の配列で返します。
...宣言されている
属性の名前とデフォルト値を REXML::Attribute の配列で返します。
名前とデフォルト値のペアは、各 Attribute オブジェクトの
REXML::Attribute#name と
REXML::Attribute#value で表現されます。
//emlist[][ruby]{
require 'rexml/docume......CDATA #REQUIRED
title CDATA #REQUIRED
publisher CDATA "foobar publisher">
]>
EOS
p doctype.attributes_of("book")
# => [author='', title='', publisher='foobar publisher']
p doctype.attributes_of("book")[0].name # => "author"
p doctype.attributes_of("book")[0].value # => ""
//}...