540件ヒット
[1-100件を表示]
(0.091秒)
種類
- インスタンスメソッド (396)
- 特異メソッド (96)
- クラス (24)
- モジュール (12)
- 文書 (12)
ライブラリ
-
cgi
/ html (192) - openssl (60)
-
rexml
/ document (144) -
rubygems
/ specification (60) - uri (48)
-
webrick
/ accesslog (12) -
webrick
/ httprequest (12)
クラス
-
Gem
:: Specification (60) -
OpenSSL
:: ASN1 :: ObjectId (12) -
OpenSSL
:: X509 :: Request (24) -
REXML
:: Attribute (36) -
REXML
:: Attributes (96) -
REXML
:: DocType (12) -
URI
:: LDAP (48) -
WEBrick
:: HTTPRequest (12)
モジュール
-
CGI
:: HtmlExtension (192)
キーワード
-
1
. 6 . 8から1 . 8 . 0への変更点(まとめ) (12) - AccessLog (12)
- Attribute (12)
- Config (12)
- [] (12)
-
array
_ attributes (12) - attribute (12)
-
attribute
_ defaults (12) - attributes= (24)
-
attributes
_ of (12) - build (24)
-
checkbox
_ group (24) - each (12)
-
each
_ attribute (12) - form (24)
-
get
_ attribute _ ns (12) - length (12)
-
multipart
_ form (48) - namespace (12)
- namespaces (12)
-
password
_ field (24) - prefix (12)
- prefixes (12)
-
radio
_ group (24) - register (12)
-
required
_ attributes (12) -
scrolling
_ list (24) - size (12)
-
to
_ string (12)
検索結果
先頭5件
-
OpenSSL
:: X509 :: Request # attributes -> [OpenSSL :: X509 :: Attribute] (21201.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... -
Gem
:: Specification . attributes(*args) -> () (21101.0) -
複数の属性を一度に作成するために使用します。
...複数の属性を一度に作成するために使用します。
各属性のデフォルト値は nil になります。
@param args 属性名を一つ以上指定します。... -
URI
:: LDAP # attributes -> String (21101.0) -
自身の Attribute を文字列で返します。
自身の Attribute を文字列で返します。 -
WEBrick
:: HTTPRequest # attributes -> Hash (21101.0) -
@todo ???
@todo ??? -
REXML
:: DocType # attributes _ of(element) -> [REXML :: Attribute] (9137.0) -
DTD 内の属性リスト宣言で、 element という名前の要素に対し宣言されている 属性の名前とデフォルト値を REXML::Attribute の配列で返します。
.../document'
doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE books [
<!ELEMENT book (comment)>
<!ELEMENT comment (#PCDATA)>
<!ATTLIST book
author 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
:: Attributes # namespaces -> { String => String } (9124.0) -
self の中で宣言されている名前空間の集合を返します。
...します。
返り値は名前空間の prefix をキーとし、URI を値とする
Hash を返します。
//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
p doc.root.attributes.namespaces
# => {"foo"=>"http://example.org/foo", "bar"=>"http://example.org/bar"}
p a.attributes.namespaces
# => {}
//}... -
REXML
:: Attributes # prefixes -> [String] (9124.0) -
self の中で宣言されている prefix の集合を 文字列の配列で返します。
...る prefix の集合を
文字列の配列で返します。
self が属する要素より上位の要素で定義されているものは含みません。
//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
p doc.root.attributes.prefixes # => ["foo", "bar"]
p a.attributes.prefixes # => []
//}... -
Gem
:: Specification . array _ attributes -> Array (9117.0) -
@@array_attributes の複製を返します。
...@@array_attributes の複製を返します。
@see Object#dup... -
Gem
:: Specification . required _ attributes -> Array (9101.0) -
必須属性のリストを返します。
必須属性のリストを返します。