種類
- インスタンスメソッド (404)
- 定数 (84)
- ライブラリ (60)
- 文書 (42)
- 特異メソッド (24)
ライブラリ
クラス
- CGI (60)
- Encoding (84)
-
Net
:: FTP :: MLSxEntry (20) -
Net
:: IMAP (72) - OptionParser (144)
-
RDoc
:: Options (12) -
RSS
:: Maker :: XMLStyleSheets :: XMLStyleSheet (24) -
RSS
:: XMLStyleSheet (24) -
WEBrick
:: HTTPRequest (12)
モジュール
-
CGI
:: QueryExtension (12) -
Net
:: HTTPHeader (12) -
OpenURI
:: Meta (36)
キーワード
-
BIG5
_ HKSCS (12) -
BIG5
_ HKSCS _ 2008 (12) -
Big5
_ HKSCS (12) -
Big5
_ HKSCS _ 2008 (12) - CP936 (12)
- GB18030 (12)
- GBK (12)
-
NEWS for Ruby 2
. 7 . 0 (6) -
accept
_ charset (48) -
accept
_ charset= (12) - cgi (12)
-
cgi
/ session (12) - charset= (24)
- facts (10)
- header (12)
- on (144)
- open-uri (12)
- out (12)
- rdoc (12)
- rss (12)
-
ruby 1
. 6 feature (12) -
ruby 1
. 8 . 2 feature (12) -
ruby 1
. 8 . 4 feature (12) - search (12)
- sort (12)
- thread (12)
-
type
_ params (12) -
uid
_ search (12) -
uid
_ sort (12) -
uid
_ thread (12)
検索結果
先頭5件
-
Encoding
:: Big5 _ HKSCS -> Encoding (6.0) -
Big5-HKSCS エンコーディングです。
...Big5-HKSCS エンコーディングです。
香港で使われている Big5 の亜種です。
@see http://www.iana.org/assignments/charset-reg/Big5-HKSCS,
http://www.ogcio.gov.hk/en/business/tech_promotion/ccli/hkscs/... -
Encoding
:: Big5 _ HKSCS _ 2008 -> Encoding (6.0) -
Big5-HKSCS エンコーディングです。
...Big5-HKSCS エンコーディングです。
香港で使われている Big5 の亜種です。
@see http://www.iana.org/assignments/charset-reg/Big5-HKSCS,
http://www.ogcio.gov.hk/en/business/tech_promotion/ccli/hkscs/... -
Encoding
:: CP936 -> Encoding (6.0) -
GBK エンコーディング
...GBK エンコーディング
中国で用いられる簡体字中国語のエンコーディングです。
@see http://www.iana.org/assignments/character-sets,
http://www.iana.org/assignments/charset-reg/GBK,
http://www.microsoft.com/globaldev/reference/dbcs/936.mspx... -
Encoding
:: GB18030 -> Encoding (6.0) -
GBK エンコーディング
...GBK エンコーディング
中国で用いられる中国語のエンコーディングです。
@see http://www.iana.org/assignments/charset-reg/GB18030... -
Encoding
:: GBK -> Encoding (6.0) -
GBK エンコーディング
...GBK エンコーディング
中国で用いられる簡体字中国語のエンコーディングです。
@see http://www.iana.org/assignments/character-sets,
http://www.iana.org/assignments/charset-reg/GBK,
http://www.microsoft.com/globaldev/reference/dbcs/936.mspx... -
NEWS for Ruby 2
. 7 . 0 (6.0) -
NEWS for Ruby 2.7.0 このドキュメントは前回リリース以降のバグ修正を除くユーザーに影響のある機能の変更のリストです。
...ようになりました。
代わりにURI.openを使ってください。 15893
* メディアタイプ "text/*" のデフォルトの charset が ISO-8859-1 から UTF-8 に
なりました。 15933
* OptionParser
* 不明なオプションに対して "Did you mean?" が... -
Net
:: FTP :: MLSxEntry # facts -> { String => String|Integer|Time } (6.0) -
そのエントリの「facts」を返します。
...tet単位)
* "unique": ユニークID (String)
* "lang": ファイルの言語 (String)
* "media-type": メディアタイプ (String)
* "charset": 文字エンコーディング (String)
サーバが UNIX 系 OS の場合は以下のような facts が
使える可能性があります。... -
OpenURI
:: Meta # meta -> Hash (6.0) -
ヘッダを収録したハッシュを返します。
...][ruby]{
require 'open-uri'
open('http://example.com/') {|f|
p f.meta
#=> {"date"=>"Sun, 04 May 2008 11:26:40 GMT",
# "content-type"=>"text/html;charset=utf-8",
# "server"=>"Apache/2.0.54 (Debian GNU/Linux) mod_ssl/2.0.54 OpenSSL/0.9.7e",
# "transfer-encoding"=>"chunked"}
}
//}......uby]{
require 'open-uri'
URI.open('http://example.com/') {|f|
p f.meta
#=> {"date"=>"Sun, 04 May 2008 11:26:40 GMT",
# "content-type"=>"text/html;charset=utf-8",
# "server"=>"Apache/2.0.54 (Debian GNU/Linux) mod_ssl/2.0.54 OpenSSL/0.9.7e",
# "transfer-encoding"=>"chunked"}
}
//}... -
open-uri (6.0)
-
http/ftp に簡単にアクセスするためのクラスです。
...e {|line| p line}
p f.base_uri # <URI::HTTP:0x40e6ef2 URL:http://www.ruby-lang.org/en/>
p f.content_type # "text/html"
p f.charset # "iso-8859-1"
p f.content_encoding # []
p f.last_modified # Thu Dec 05 02:45:02 UTC 2002
}
ハッシュ引数で、追加... -
ruby 1
. 8 . 2 feature (6.0) -
ruby 1.8.2 feature ruby 1.8.2 での ruby 1.8.1 からの変更点です。
...ら each するようになりました。((<ruby-dev:24528>))
=== 2004-10-18
: WEBrick::HTTPRequest [lib] [new]
new methods. accept, accept_charset, accept_encoding, accept_language,
content_length and content_type.
: WEBrick::HTTPResponse#content_length= [lib] [new]
: WEBrick::HTTPResponse...