840件ヒット
[1-100件を表示]
(0.076秒)
ライブラリ
-
cgi
/ html (480) - openssl (24)
-
rdoc
/ context (12) -
rexml
/ document (264) -
rexml
/ sax2listener (12) -
rexml
/ streamlistener (12) - uri (24)
-
webrick
/ httprequest (12)
クラス
-
OpenSSL
:: X509 :: Request (24) -
RDoc
:: Context (12) -
REXML
:: Attribute (36) -
REXML
:: Attributes (180) -
REXML
:: DocType (12) -
REXML
:: Element (36) -
URI
:: LDAP (24) -
WEBrick
:: HTTPRequest (12)
モジュール
-
CGI
:: HtmlExtension (480) -
REXML
:: SAX2Listener (12) -
REXML
:: StreamListener (12)
キーワード
- << (12)
- [] (12)
- []= (12)
- add (12)
-
add
_ attributes (12) - attlistdecl (12)
- attributes= (24)
-
attributes
_ of (12) - checkbox (24)
-
checkbox
_ group (24) - delete (12)
-
delete
_ all (12) - each (12)
-
each
_ attribute (12) -
file
_ field (24) - form (48)
-
get
_ attribute (12) -
get
_ attribute _ ns (12) -
has
_ attributes? (12) - hidden (24)
- html (24)
- img (24)
- length (12)
-
multipart
_ form (48) - namespace (12)
- namespaces (12)
-
password
_ field (24) - prefix (12)
- prefixes (12)
-
radio
_ group (24) - reset (24)
-
scrolling
_ list (24) - size (12)
-
start
_ element (12) - submit (24)
-
text
_ field (24) - textarea (24)
-
to
_ a (12) -
to
_ string (12)
検索結果
先頭5件
-
REXML
:: Element # attributes -> REXML :: Attributes (18203.0) -
要素が保持している属性の集合を返します。
要素が保持している属性の集合を返します。 -
OpenSSL
:: X509 :: Request # attributes -> [OpenSSL :: X509 :: Attribute] (18102.0) -
CSR が保持している attribute を OpenSSL::X509::Attribute の配列で返します。
CSR が保持している attribute を OpenSSL::X509::Attribute
の配列で返します。
attribute とは X.509 証明書署名要求 に含まれる申請者に関する
追加的な情報です。必須ではありません。X.509v3 拡張領域を
CSR に含めるときは "reqExt" という oid の attribute を追加
します。
@see OpenSSL::X509::Request#attribute=,
OpenSSL::X509::Request#add_attribute -
RDoc
:: Context # attributes -> [RDoc :: Attr] (18102.0) -
追加された RDoc::Attr の配列を返します。
追加された RDoc::Attr の配列を返します。 -
URI
:: LDAP # attributes -> String (18102.0) -
自身の Attribute を文字列で返します。
自身の Attribute を文字列で返します。 -
WEBrick
:: HTTPRequest # attributes -> Hash (18102.0) -
@todo ???
@todo ??? -
REXML
:: DocType # attributes _ of(element) -> [REXML :: Attribute] (6120.0) -
DTD 内の属性リスト宣言で、 element という名前の要素に対し宣言されている 属性の名前とデフォルト値を REXML::Attribute の配列で返します。
...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 # => ""
//}... -
REXML
:: Element # add _ attributes(attrs) -> () (6114.0) -
要素の属性を複数追加します。 同じ名前の属性がすでにある場合はその属性を新しい 属性で置き換えます。
...属性の属性名と属性値の対の集合(Array or Hash)
//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("e")
e.add_attributes({"a" => "b", "c" => "d"})
e # => <e a='b' c='d'/>
e = REXML::Element.new("e")
e.add_attributes([["a", "b"], ["c", "d"]])
e # => <e a='b' c='d'/>
//}... -
OpenSSL
:: X509 :: Request # attributes=(attrs) (6102.0) -
CSR の attribute をクリアして新しい attribute を設定します。
CSR の attribute をクリアして新しい attribute を設定します。
@param attrs 新たに設定する attribute(OpenSSL::X509::Attribute の
インスタンス)の配列
@see OpenSSL::X509::Request#attribute
OpenSSL::X509::Request#add_attribute -
REXML
:: Element # has _ attributes? -> bool (6102.0) -
要素が属性を1つ以上持っていれば真を返します。
要素が属性を1つ以上持っていれば真を返します。