1464件ヒット
[101-200件を表示]
(0.072秒)
ライブラリ
- ビルトイン (288)
-
cgi
/ html (252) - forwardable (24)
- json (24)
-
net
/ imap (120) - openssl (96)
-
rdoc
/ context (48) -
rdoc
/ markup (12) -
rdoc
/ top _ level (12) -
rexml
/ document (480) -
rexml
/ sax2listener (12) -
rexml
/ streamlistener (24) - uri (24)
-
webrick
/ httprequest (12) - win32ole (24)
クラス
- BasicObject (24)
-
JSON
:: Parser (12) - Module (72)
-
Net
:: IMAP (84) -
Net
:: IMAP :: FetchData (12) -
Net
:: IMAP :: MailboxList (12) -
Net
:: IMAP :: StatusData (12) - Object (12)
-
OpenSSL
:: X509 :: Attribute (60) -
OpenSSL
:: X509 :: Request (36) -
RDoc
:: Context (48) -
RDoc
:: Markup (12) -
RDoc
:: Options (12) -
RDoc
:: TopLevel (12) -
REXML
:: Attribute (168) -
REXML
:: Attributes (180) -
REXML
:: DocType (24) -
REXML
:: Element (108) - String (36)
-
Thread
:: Backtrace :: Location (48) -
URI
:: LDAP (24) -
WEBrick
:: HTTPRequest (12) -
WIN32OLE
_ EVENT (12) -
WIN32OLE
_ TYPE (12)
モジュール
-
CGI
:: HtmlExtension (252) - Enumerable (96)
- Forwardable (24)
-
JSON
:: Generator :: GeneratorMethods :: Object (12) -
REXML
:: SAX2Listener (12) -
REXML
:: StreamListener (24)
キーワード
- ! (12)
- != (12)
- << (12)
- == (12)
- [] (12)
- []= (12)
-
absolute
_ path (12) - add (12)
-
add
_ attribute (48) -
add
_ attributes (12) -
add
_ element (12) - attlistdecl (12)
-
attr
_ accessor (12) -
attr
_ reader (12) -
attr
_ writer (12) - attribute (12)
-
attribute
_ manager (12) -
attribute
_ of (12) - attributes (60)
- attributes= (24)
-
attributes
_ of (12) -
base
_ label (12) - checkbox (12)
-
checkbox
_ group (12) - clone (12)
-
def
_ delegator (12) -
def
_ instance _ delegator (12) -
default
_ event _ sources (12) - delete (12)
-
delete
_ all (12) -
delete
_ attribute (12) - each (12)
-
each
_ attribute (24) -
each
_ element _ with _ attribute (12) - element (12)
- element= (12)
- encode (36)
-
extra
_ accessor _ flags (12) - fetch (12)
-
file
_ field (12) -
find
_ local _ symbol (12) - form (24)
-
get
_ attribute (12) -
get
_ attribute _ ns (12) - handler= (12)
-
has
_ attributes? (12) - hidden (12)
- html (24)
- img (12)
-
initialize
_ copy (12) - inspect (12)
- length (12)
- list (12)
- max (48)
- min (48)
-
multipart
_ form (24) - namespace (12)
- namespaces (12)
-
node
_ type (12) - normalized= (12)
- oid (12)
- oid= (12)
- parse (12)
-
password
_ field (12) - prefix (12)
- prefixes (12)
-
radio
_ group (12) - remove (12)
- reset (12)
-
scrolling
_ list (12) -
set
_ visibility _ for (12) - size (12)
-
start
_ element (12) - status (12)
- store (12)
- submit (12)
-
tag
_ start (12) -
text
_ field (12) - textarea (12)
-
to
_ a (12) -
to
_ der (12) -
to
_ json (12) -
to
_ s (24) -
to
_ string (12) -
uid
_ fetch (12) -
uid
_ store (12) - value (24)
- value= (12)
- write (12)
- xlist (12)
- xpath (12)
検索結果
先頭5件
-
REXML
:: Attributes # get _ attribute _ ns(namespace , name) -> REXML :: Attribute | nil (9201.0) -
namespace と name で特定される属性を返します。
...oc.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/foo", "... -
OpenSSL
:: X509 :: Request # add _ attribute(attr) -> OpenSSL :: X509 :: Attribute (6308.0) -
新たな attribute を CSR に追加します。
...新たな attribute を CSR に追加します。
@param attr 追加する attribute(OpenSSL::X509::Attribute の
インスタンス)
@return 渡した attribute オブジェクトを返します
@see OpenSSL::X509::Request#attribute,
OpenSSL::X509::Request#attribute=... -
RDoc
:: Context # add _ attribute(an _ attribute) -> () (6223.0) -
引数で指定した RDoc::Attr オブジェクトを追加します。
...引数で指定した RDoc::Attr オブジェクトを追加します。
@param an_attribute RDoc::Attr オブジェクトを指定します。... -
RDoc
:: Context # attributes -> [RDoc :: Attr] (6218.0) -
追加された RDoc::Attr の配列を返します。
...追加された RDoc::Attr の配列を返します。... -
RDoc
:: Context # each _ attribute {|a| . . . } -> [RDoc :: Attr] (6218.0) -
追加された RDoc::Attr に対してブロックを評価します。
...追加された RDoc::Attr に対してブロックを評価します。... -
REXML
:: Element # add _ attribute(attr) -> () (6208.0) -
要素の属性を追加します。 同じ名前の属性がすでにある場合はその属性を新しい 属性で置き換えます。
...す方法と REXML::Attribute オブジェクトを
渡す方法です。
文字列2つで指定する場合、属性値は unnormalized な文字列を渡す必要があります。
@param key 属性名(文字列)
@param value 属性値(文字列)
@param attr 属性(REXML::Attribute オブジェ......list[][ruby]{
require 'rexml/document'
doc = REXML::Document.new("<e/>")
doc.root.add_attribute("a", "b"); doc.root # => <e a='b'/>
doc.root.add_attribute("x:a", "c"); doc.root # => <e a='b' x:a='c'/>
doc.root.add_attribute(REXML::Attribute.new("b", "d"))
doc.root # => <e a='b' x:a='c' b='d'/>
//}... -
OpenSSL
:: X509 :: Request # attributes -> [OpenSSL :: X509 :: Attribute] (6201.0) -
CSR が保持している attribute を OpenSSL::X509::Attribute の配列で返します。
...る 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 # attributes=(attrs) (6201.0) -
CSR の attribute をクリアして新しい attribute を設定します。
...CSR の attribute をクリアして新しい attribute を設定します。
@param attrs 新たに設定する attribute(OpenSSL::X509::Attribute の
インスタンス)の配列
@see OpenSSL::X509::Request#attribute
OpenSSL::X509::Request#add_attribute... -
RDoc
:: Markup # attribute _ manager -> RDoc :: AttributeManager (6201.0) -
自身の RDoc::AttributeManager オブジェクトを返します。
...自身の RDoc::AttributeManager オブジェクトを返します。...