660件ヒット
[101-200件を表示]
(0.118秒)
ライブラリ
-
cgi
/ html (252) - openssl (60)
-
rdoc
/ context (60) -
rdoc
/ markup (12) -
rexml
/ document (240) -
rexml
/ sax2listener (12) -
rexml
/ streamlistener (12) -
webrick
/ httprequest (12)
クラス
-
OpenSSL
:: X509 :: Attribute (24) -
OpenSSL
:: X509 :: Request (36) -
RDoc
:: Context (60) -
RDoc
:: Markup (12) -
REXML
:: Attribute (48) -
REXML
:: Attributes (96) -
REXML
:: DocType (24) -
REXML
:: Element (72) -
WEBrick
:: HTTPRequest (12)
モジュール
-
CGI
:: HtmlExtension (252) -
REXML
:: SAX2Listener (12) -
REXML
:: StreamListener (12)
キーワード
- << (12)
- [] (12)
- add (12)
-
add
_ attribute (48) -
add
_ attributes (12) -
add
_ to (12) - attlistdecl (12)
-
attribute
_ manager (12) -
attribute
_ of (12) - attributes (36)
- attributes= (12)
-
attributes
_ of (12) - checkbox (12)
-
checkbox
_ group (12) - clone (12)
- delete (12)
-
delete
_ attribute (12) - each (12)
-
each
_ attribute (24) -
each
_ element _ with _ attribute (12) - element= (12)
-
file
_ field (12) -
find
_ local _ symbol (12) - form (24)
-
get
_ attribute _ ns (12) - hidden (12)
- html (24)
- img (12)
-
multipart
_ form (24) - namespace (12)
- namespaces (12)
-
password
_ field (12) -
radio
_ group (12) - reset (12)
-
scrolling
_ list (12) -
start
_ element (12) - submit (12)
-
text
_ field (12) - textarea (12)
- value (12)
- value= (12)
- write (12)
検索結果
先頭5件
-
RDoc
:: Context # add _ attribute(an _ attribute) -> () (9231.0) -
引数で指定した RDoc::Attr オブジェクトを追加します。
...引数で指定した RDoc::Attr オブジェクトを追加します。
@param an_attribute RDoc::Attr オブジェクトを指定します。... -
RDoc
:: Context # attributes -> [RDoc :: Attr] (9217.0) -
追加された RDoc::Attr の配列を返します。
...追加された RDoc::Attr の配列を返します。... -
REXML
:: Attribute # namespace(arg = nil) -> String | nil (9125.0) -
属性の名前空間の URI を返します。
...//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("el")
e.add_attribute("xmlns:ns", "http://www.example.com/ns")
e.add_attribute("ns:r", "rval")
p e.attributes.get_attribute("r").prefix # => "ns"
p e.attributes.get_attribute("r").namespace # => "http://www.example.com/ns"
//}... -
REXML
:: Attributes # namespaces -> { String => String } (9107.0) -
self の中で宣言されている名前空間の集合を返します。
...][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://ex......ample.org/foo", "bar"=>"http://example.org/bar"}
p a.attributes.namespaces
# => {}
//}... -
REXML
:: Attribute # clone -> REXML :: Element (9101.0) -
self を複製し返します。
self を複製し返します。 -
REXML
:: Attributes # each {|name , value| . . . } -> () (9101.0) -
各属性の名前と値に対しブロックを呼び出します。
...name(REXML::Namespace#exapnded_name)が
渡されます。
//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("/roo......t/a").first
a.attributes.each do |name, value|
p [name, value]
end
# => ["foo:att", "1"]
# => ["bar:att", "2"]
# => ["att", "<"]
//}... -
WEBrick
:: HTTPRequest # attributes -> Hash (9101.0) -
@todo ???
@todo ??? -
OpenSSL
:: X509 :: Request # attributes -> [OpenSSL :: X509 :: Attribute] (6274.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... -
OpenSSL
:: X509 :: Request # add _ attribute(attr) -> OpenSSL :: X509 :: Attribute (6255.0) -
新たな attribute を CSR に追加します。
...新たな attribute を CSR に追加します。
@param attr 追加する attribute(OpenSSL::X509::Attribute の
インスタンス)
@return 渡した attribute オブジェクトを返します
@see OpenSSL::X509::Request#attribute,
OpenSSL::X509::Request#attribute=...