るりまサーチ

最速Rubyリファレンスマニュアル検索!
363件ヒット [1-100件を表示] (0.150秒)

別のキーワード

  1. openssl p
  2. openssl p=
  3. fileutils mkdir_p
  4. matrix p
  5. dsa p

ライブラリ

モジュール

キーワード

検索結果

<< 1 2 3 ... > >>

OpenSSL::X509::Request#attributes -> [OpenSSL::X509::Attribute] (21202.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...

URI::LDAP#attributes -> String (21102.0)

自身の Attribute を文字列で返します。

自身の Attribute を文字列で返します。

WEBrick::HTTPRequest#attributes -> Hash (21102.0)

@todo ???

@todo ???

REXML::DocType#attributes_of(element) -> [REXML::Attribute] (9138.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
p
ublisher 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 } (9125.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='&lt;'/>
</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] (9125.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='&lt;'/>
</root>
EOS
a = doc.get_elements("/root/a").first

p
doc.root.attributes.prefixes # => ["foo", "bar"]
p
a.attributes.prefixes # => []
//}...

OpenSSL::X509::Request#attributes=(attrs) (9102.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) (9102.0)

自身の Attribute を文字列で設定します。

...自身の Attribute を文字列で設定します。

@param s 自身の Attribute を文字列で設定します。...

CGI::HtmlExtension#multipart_form(attributes) -> String (6209.0)

enctype 属性に "multipart/form-data" をセットした form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。

...enctype 属性に "multipart/form-data" をセットした form 要素を生成します。
ブロックを与えると、ブロックを評価した結果が内容になります。

@param attributes 属性をハッシュで指定します。

例:
multipart_form("url"){ "string" }
# <FORM...
...METHOD="post" ACTION="url" ENCTYPE="multipart/form-data">string</FORM>...

CGI::HtmlExtension#multipart_form(attributes) { ... } -> String (6209.0)

enctype 属性に "multipart/form-data" をセットした form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。

...enctype 属性に "multipart/form-data" をセットした form 要素を生成します。
ブロックを与えると、ブロックを評価した結果が内容になります。

@param attributes 属性をハッシュで指定します。

例:
multipart_form("url"){ "string" }
# <FORM...
...METHOD="post" ACTION="url" ENCTYPE="multipart/form-data">string</FORM>...

絞り込み条件を変える

<< 1 2 3 ... > >>