768件ヒット
[1-100件を表示]
(0.072秒)
種類
- インスタンスメソッド (672)
- 特異メソッド (84)
- 文書 (12)
ライブラリ
-
cgi
/ html (480) - openssl (36)
-
rexml
/ document (132) -
rexml
/ sax2listener (12) -
rexml
/ streamlistener (12) -
rubygems
/ specification (36) - uri (36)
-
webrick
/ httprequest (12)
クラス
-
Gem
:: Specification (36) -
OpenSSL
:: ASN1 :: ObjectId (12) -
OpenSSL
:: X509 :: Request (24) -
REXML
:: Attribute (12) -
REXML
:: Attributes (108) -
REXML
:: Element (12) -
URI
:: LDAP (36) -
WEBrick
:: HTTPRequest (12)
モジュール
-
CGI
:: HtmlExtension (480) -
REXML
:: SAX2Listener (12) -
REXML
:: StreamListener (12)
キーワード
-
1
. 6 . 8から1 . 8 . 0への変更点(まとめ) (12) - << (12)
- [] (12)
- []= (12)
- add (12)
-
add
_ attributes (12) -
array
_ attributes (12) - attlistdecl (12)
-
attribute
_ defaults (12) - attributes= (24)
- build (24)
- checkbox (24)
-
checkbox
_ group (24) - delete (12)
-
delete
_ all (12) -
file
_ field (24) - form (48)
-
get
_ attribute (12) -
get
_ attribute _ ns (12) - hidden (24)
- html (24)
- img (24)
-
multipart
_ form (48) - namespace (12)
- new (12)
-
password
_ field (24) -
radio
_ group (24) - register (12)
- reset (24)
-
scrolling
_ list (24) -
start
_ element (12) - submit (24)
-
text
_ field (24) - textarea (24)
検索結果
先頭5件
-
WEBrick
:: HTTPRequest # attributes -> Hash (18117.0) -
@todo ???
...@todo ???... -
Gem
:: Specification . attributes(*args) -> () (18107.0) -
複数の属性を一度に作成するために使用します。
...複数の属性を一度に作成するために使用します。
各属性のデフォルト値は nil になります。
@param args 属性名を一つ以上指定します。... -
OpenSSL
:: X509 :: Request # attributes -> [OpenSSL :: X509 :: Attribute] (18107.0) -
CSR が保持している attribute を OpenSSL::X509::Attribute の配列で返します。
...名要求 に含まれる申請者に関する
追加的な情報です。必須ではありません。X.509v3 拡張領域を
CSR に含めるときは "reqExt" という oid の attribute を追加
します。
@see OpenSSL::X509::Request#attribute=,
OpenSSL::X509::Request#add_attribute... -
Gem
:: Specification . array _ attributes -> Array (6123.0) -
@@array_attributes の複製を返します。
...
@@array_attributes の複製を返します。
@see Object#dup... -
REXML
:: Element # add _ attributes(attrs) -> () (6119.0) -
要素の属性を複数追加します。 同じ名前の属性がすでにある場合はその属性を新しい 属性で置き換えます。
...定します。
@param attrs 追加する属性の属性名と属性値の対の集合(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"],... -
OpenSSL
:: X509 :: Request # attributes=(attrs) (6113.0) -
CSR の attribute をクリアして新しい attribute を設定します。
...CSR の attribute をクリアして新しい attribute を設定します。
@param attrs 新たに設定する attribute(OpenSSL::X509::Attribute の
インスタンス)の配列
@see OpenSSL::X509::Request#attribute
OpenSSL::X509::Request#add_attribute... -
URI
:: LDAP # attributes=(s) (6107.0) -
自身の Attribute を文字列で設定します。
...自身の Attribute を文字列で設定します。
@param s 自身の Attribute を文字列で設定します。... -
REXML
:: Attributes . new(element) -> REXML :: Attributes (3129.0) -
空の Attributes オブジェクトを生成します。
...空の Attributes オブジェクトを生成します。
どの要素の属性であるかを element で指定します。
通常は REXML::Element.new によって Attributes オブジェクト
が生成されるため、このメソッドを使う必要はありません。
@param element 属... -
REXML
:: Attributes # get _ attribute _ ns(namespace , name) -> REXML :: Attribute | nil (3036.0) -
namespace と name で特定される属性を返します。
...えてしまった場合でも、このメソッドを
使うことで属性を正しく指定することができます。
@param namespace 名前空間(URI, 文字列)
@param name 属性名(文字列)
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<-EOS)
<root xmlns:foo=......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/fo...
