936件ヒット
[901-936件を表示]
(0.073秒)
種類
- インスタンスメソッド (816)
- 特異メソッド (60)
- クラス (48)
- モジュール (12)
ライブラリ
-
cgi
/ html (480) - openssl (60)
-
rexml
/ document (300) -
rexml
/ sax2listener (12) -
rexml
/ streamlistener (12) -
rubygems
/ specification (12) - uri (48)
-
webrick
/ accesslog (12)
クラス
-
Gem
:: Specification (12) -
OpenSSL
:: ASN1 :: ObjectId (12) -
OpenSSL
:: X509 :: Request (24) -
REXML
:: Attribute (36) -
REXML
:: Attributes (192) -
REXML
:: DocType (12) -
REXML
:: Element (36) -
URI
:: LDAP (48)
モジュール
-
CGI
:: HtmlExtension (480) -
REXML
:: SAX2Listener (12) -
REXML
:: StreamListener (12)
キーワード
- << (12)
- AccessLog (12)
- Attribute (12)
- Attributes (12)
- Config (12)
- Element (12)
- [] (12)
- []= (12)
- add (12)
-
add
_ attributes (12) - attlistdecl (12)
-
attribute
_ defaults (12) - attributes= (24)
-
attributes
_ of (12) - build (24)
- 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)
- new (12)
-
password
_ field (24) - prefix (12)
- prefixes (12)
-
radio
_ group (24) - register (12)
- reset (24)
-
scrolling
_ list (24) - size (12)
-
start
_ element (12) - submit (24)
-
text
_ field (24) - textarea (24)
-
to
_ a (12) -
to
_ string (12)
検索結果
-
OpenSSL
:: Config (3006.0) -
OpenSSL の設定ファイルを表すクラスです。
...OpenSSL の設定ファイルを表すクラスです。
OpenSSL の設定ファイルは、キーと文字列を対応付けた単純な構造をしています。
また、キーはセクションによってグループ分けされています。
どのセクションにも属さないグロー......uire 'openssl'
conf = OpenSSL::Config.load(OpenSSL::Config::DEFAULT_CONFIG_FILE)
p conf.sections # => ["req_distinguished_name", "req_attributes", "proxy_cert_ext", "policy_anything", "CA_default", ...]
p conf.get_value("", "HOME") # => "."
p conf.get_value("CA_default", "default_days") # =... -
OpenSSL
:: X509 :: Attribute (3006.0) -
X.509 証明書署名要求の attribute を表すクラスです。
...X.509 証明書署名要求の attribute を表すクラスです。
OpenSSL::X509::Request#attributes で取り出すことや、
OpenSSL::X509::Request#add_attribute で追加することができます。... -
REXML
:: Attribute # to _ string -> String (3006.0) -
"name='value'" という形式の文字列を返します。
..."name='value'" という形式の文字列を返します。
//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("el")
e.add_attribute("ns:r", "rval")
p e.attributes.get_attribute("r").to_string # => "ns:r='rval'"
//}...