351件ヒット
[301-351件を表示]
(0.164秒)
ライブラリ
クラス
-
Net
:: FTP (60) -
Net
:: HTTPResponse (12) -
Net
:: IMAP :: ResponseCode (12) -
RDoc
:: CodeObject (36) - Refinement (4)
- String (153)
- StringIO (38)
-
URI
:: FTP (12)
モジュール
-
CGI
:: HtmlExtension (24)
キーワード
- codepoints (38)
- comment (12)
-
each
_ codepoint (48) - encode (36)
- encode! (24)
- form (24)
-
import
_ methods (4) - kconv (12)
-
last
_ response (12) -
last
_ response _ code (12) - lastresp (12)
- name (12)
-
parent
_ file _ name (12) -
parent
_ name (12) -
return
_ code (12) -
return
_ code= (12) - typecode (12)
-
unicode
_ normalize (11) -
unicode
_ normalize! (11) -
unicode
_ normalized? (11)
検索結果
先頭5件
- RDoc
:: CodeObject # parent _ name -> String - CGI
:: HtmlExtension # form(method = "post" , action = nil , enctype = "application / x-www-form-urlencoded") -> String - CGI
:: HtmlExtension # form(method = "post" , action = nil , enctype = "application / x-www-form-urlencoded") { . . . } -> String - Net
:: FTP # last _ response -> String - Refinement
# import _ methods(*modules) -> self
-
RDoc
:: CodeObject # parent _ name -> String (3102.0) -
self.parent の名前を返します。
...self.parent の名前を返します。
@see RDoc::CodeObject#parent... -
CGI
:: HtmlExtension # form(method = "post" , action = nil , enctype = "application / x-www-form-urlencoded") -> String (243.0) -
form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。
.../x-www-form-urlencoded" です。
例:
form{ "string" }
# <FORM METHOD="post" ENCTYPE="application/x-www-form-urlencoded">string</FORM>
form("get"){ "string" }
# <FORM METHOD="get" ENCTYPE="application/x-www-form-urlencoded">string</FORM>
form("get", "url"){ "string" }
# <FORM M......ETHOD="get" ACTION="url" ENCTYPE="application/x-www-form-urlencoded">string</FORM>... -
CGI
:: HtmlExtension # form(method = "post" , action = nil , enctype = "application / x-www-form-urlencoded") { . . . } -> String (243.0) -
form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。
.../x-www-form-urlencoded" です。
例:
form{ "string" }
# <FORM METHOD="post" ENCTYPE="application/x-www-form-urlencoded">string</FORM>
form("get"){ "string" }
# <FORM METHOD="get" ENCTYPE="application/x-www-form-urlencoded">string</FORM>
form("get", "url"){ "string" }
# <FORM M......ETHOD="get" ACTION="url" ENCTYPE="application/x-www-form-urlencoded">string</FORM>... -
Net
:: FTP # last _ response -> String (108.0) -
サーバからの最後の応答を文字列で返します。
...サーバからの最後の応答を文字列で返します。
例えばログイン(Net::FTP#login)に成功した場合には
"230 Login successful.\n" を返します。
@see Net::FTP#last_response_code... -
Refinement
# import _ methods(*modules) -> self (19.0) -
モジュールからメソッドをインポートします。
...level)
' ' * level + self
end
end
module M
refine String do
import_methods StrUtils
end
end
using M
p "foo".indent(3) # => " foo"
module M
refine String do
import_methods Enumerable
# Can't import method which is not defined with Ruby code: Enumerable#drop
end
end
//}...