1704件ヒット
[1-100件を表示]
(0.028秒)
クラス
-
WEBrick
:: HTTPRequest (48) -
WEBrick
:: HTTPServer (84) -
WEBrick
:: HTTPServer :: MountTable (60) -
WEBrick
:: HTTPServlet :: AbstractServlet (84) -
WEBrick
:: HTTPServlet :: CGIHandler (48) -
WEBrick
:: HTTPServlet :: DefaultFileHandler (60) -
WEBrick
:: HTTPServlet :: ERBHandler (24) -
WEBrick
:: HTTPServlet :: FileHandler (84) -
WEBrick
:: HTTPServlet :: ProcHandler (24)
モジュール
-
WEBrick
:: HTTPStatus (576)
キーワード
- Accepted (12)
- BadGateway (12)
- BadRequest (12)
- CGIRunner (12)
- ClientError (12)
- Conflict (12)
- Continue (12)
- Created (12)
- DefaultFileHandler (12)
- EOFError (12)
- Error (12)
- ExpectationFailed (12)
- Forbidden (12)
- Found (12)
- GatewayTimeout (12)
- Gone (12)
- HTTPStatus (12)
- HTTPVersionNotSupported (12)
- Info (12)
- InternalServerError (12)
- LengthRequired (12)
- MethodNotAllowed (12)
- MountTable (12)
- MovedPermanently (12)
- MultipleChoices (12)
- NoContent (12)
- NonAuthoritativeInformation (12)
- NotAcceptable (12)
- NotFound (12)
- NotImplemented (12)
- NotModified (12)
- OK (12)
- PartialContent (12)
- PaymentRequired (12)
- PreconditionFailed (12)
- ProxyAuthenticationRequired (12)
-
RC
_ ACCEPTED (12) -
RC
_ BAD _ GATEWAY (12) -
RC
_ BAD _ REQUEST (12) -
RC
_ CONFLICT (12) -
RC
_ CONTINUE (12) -
RC
_ CREATED (12) -
RC
_ EXPECTATION _ FAILED (12) -
RC
_ FORBIDDEN (12) -
RC
_ FOUND (12) -
RC
_ GATEWAY _ TIMEOUT (12) -
RC
_ GONE (12) -
RC
_ HTTP _ VERSION _ NOT _ SUPPORTED (12) -
RC
_ INTERNAL _ SERVER _ ERROR (12) -
RC
_ LENGTH _ REQUIRED (12) -
RC
_ METHOD _ NOT _ ALLOWED (12) -
RC
_ MOVED _ PERMANENTLY (12) -
RC
_ MULTIPLE _ CHOICES (12) -
RC
_ NON _ AUTHORITATIVE _ INFORMATION (12) -
RC
_ NOT _ ACCEPTABLE (12) -
RC
_ NOT _ FOUND (12) -
RC
_ NOT _ IMPLEMENTED (12) -
RC
_ NOT _ MODIFIED (12) -
RC
_ NO _ CONTENT (12) -
RC
_ OK (12) -
RC
_ PARTIAL _ CONTENT (12) -
RC
_ PAYMENT _ REQUIRED (12) -
RC
_ PRECONDITION _ FAILED (12) -
RC
_ PROXY _ AUTHENTICATION _ REQUIRED (12) -
RC
_ REQUEST _ ENTITY _ TOO _ LARGE (12) -
RC
_ REQUEST _ RANGE _ NOT _ SATISFIABLE (12) -
RC
_ REQUEST _ TIMEOUT (12) -
RC
_ REQUEST _ URI _ TOO _ LARGE (12) -
RC
_ RESET _ CONTENT (12) -
RC
_ SEE _ OTHER (12) -
RC
_ SERVICE _ UNAVAILABLE (12) -
RC
_ SWITCHING _ PROTOCOLS (12) -
RC
_ TEMPORARY _ REDIRECT (12) -
RC
_ UNAUTHORIZED (12) -
RC
_ UNSUPPORTED _ MEDIA _ TYPE (12) -
RC
_ USE _ PROXY (12) - Redirect (12)
- RequestEntityTooLarge (12)
- RequestRangeNotSatisfiable (12)
- RequestTimeout (12)
- RequestURITooLarge (12)
- ResetContent (12)
- Ruby (12)
- SeeOther (12)
- ServerError (12)
- ServiceUnavailable (12)
- Status (12)
- Success (12)
- SwitchingProtocols (12)
- TemporaryRedirect (12)
- UnsupportedMediaType (12)
- UseProxy (12)
- [] (24)
- []= (12)
-
add
_ handler (12) - cipher (12)
-
client
_ cert (12) -
client
_ error? (12) - delete (12)
-
do
_ DELETE (12) -
do
_ GET (72) -
do
_ HEAD (12) -
do
_ OPTIONS (24) -
do
_ POST (60) -
do
_ PUT (12) - error? (12)
- info? (12)
-
make
_ partial _ content (12) - mount (12)
-
mount
_ proc (24) - new (48)
-
not
_ modified? (12) - parse (12)
-
prepare
_ range (12) -
reason
_ phrase (12) - redirect? (12)
-
remove
_ handler (12) - scan (12)
-
server
_ cert (12) -
server
_ error? (12) - service (24)
- success? (12)
- umount (12)
- unmount (12)
-
virtual
_ host (12)
検索結果
先頭5件
-
WEBrick
:: HTTPServer # unmount(dir) -> () (9201.0) -
サーバ上のディレクトリ dir とサーブレットとの対応を解消します。
...サーバ上のディレクトリ dir とサーブレットとの対応を解消します。
@param dir 対応を解消するディレクトリを指定します。
srv.mount('/img')... -
WEBrick
:: HTTPStatus :: Status (9001.0) -
HTTP のステータスコードの親クラスです。
HTTP のステータスコードの親クラスです。 -
WEBrick
:: HTTPStatus :: UseProxy (9001.0) -
HTTP のステータスコード 305 Use Proxy を表すクラスです。
...HTTP のステータスコード 305 Use Proxy を表すクラスです。... -
WEBrick
:: HTTPServer # mount(dir , servlet , *options) -> () (6101.0) -
サーバ上のディレクトリ dir にサーブレット servlet を対応させます。
...定します。
@param options サーブレットのコンストラクタの引数を指定します。
require 'webrick'
include WEBrick
srv = HTTPServer.new( { :BindAddress => '127.0.0.1', :Port => 10080 } )
srv.mount('/img', WEBrick::HTTPServlet::FileHandler, '/home/username/images')... -
WEBrick
:: HTTPServer # mount _ proc(dir) {|req , res| . . . } -> () (6101.0) -
サーバ上のディレクトリ dir にリクエストを処理する Proc オブジェクト proc を対応させます。
...roc オブジェクトを指定します。
WEBrick::HTTPResponse オブジェクトと WEBrick::HTTPRequest
オブジェクトを引数として proc.call(request, response) の引数の順で呼び出されます。
@raise WEBrick::HTTPServerError proc も指定されず... -
WEBrick
:: HTTPServer # mount _ proc(dir , proc) -> () (6101.0) -
サーバ上のディレクトリ dir にリクエストを処理する Proc オブジェクト proc を対応させます。
...roc オブジェクトを指定します。
WEBrick::HTTPResponse オブジェクトと WEBrick::HTTPRequest
オブジェクトを引数として proc.call(request, response) の引数の順で呼び出されます。
@raise WEBrick::HTTPServerError proc も指定されず... -
WEBrick
:: HTTPServer # umount(dir) -> () (6101.0) -
サーバ上のディレクトリ dir とサーブレットとの対応を解消します。
...サーバ上のディレクトリ dir とサーブレットとの対応を解消します。
@param dir 対応を解消するディレクトリを指定します。
srv.mount('/img')... -
WEBrick
:: HTTPServer # virtual _ host(server) -> () (6101.0) -
サーバの保持しているバーチャルホストのリストに HTTP サーバ server を加えます。 クライアントからのリクエストのうち server へのものは server に委譲されるようになります。
...。
require 'webrick'
include WEBrick
srv1 = HTTPServer.new( { :Port => 1080, :ServerName => 'hoge.example.com' } )
srv2 = HTTPServer.new( { :Port => 1080, :ServerName => 'foo.example.com' } )
srv = HTTPServer.new( { :Port => 1080 } )
srv.virtual_host(srv1)
srv.virtual_host(srv2)... -
WEBrick
:: HTTPServlet :: CGIHandler :: CGIRunner -> String (6101.0) -
CGI を実行するためのコマンドを返します。
CGI を実行するためのコマンドを返します。