215件ヒット
[201-215件を表示]
(0.043秒)
別のキーワード
キーワード
- cgi (12)
-
cgi
/ session (12) - coverage (8)
- debug (12)
-
did
_ you _ mean (12) - irb (12)
-
irb
/ completion (12) -
irb
/ input-method (12) -
irb
/ output-method (12) - rdoc (12)
-
rdoc
/ any _ method (12) -
rdoc
/ ghost _ method (12) -
rdoc
/ parser / c (12) -
rdoc
/ parser / ruby (12) -
rexml
/ parsers / sax2parser (12) -
rexml
/ parsers / streamparser (12) -
webrick
/ cgi (12) - xmlrpc (3)
検索結果
-
rexml
/ parsers / streamparser (13.0) -
ストリーム式の XML パーサ。
.../bar"><![CDATA[cdata is here]]>
<a foo:att='1' bar:att='2' att='<'/>
&& <!-- comment here--> &bar;
</root>
EOS
class Listener
def method_missing(name, *args)
p [name, *args]
end
def respond_to_missing?(sym, include_private)
true
end
end
REXML::Parsers::StreamParser.n... -
webrick
/ cgi (13.0) -
一般の CGI 環境で webrick ライブラリのサーブレットと同じように CGI スクリプトを書くための ライブラリです。サーバが WEBrick でなくても使うことが出来ます。
...class MyCGI < WEBrick::CGI
def do_GET(req, res)
req.content_length
req.content_type
req.path_info
req.query_string
req.peeraddr
req.host
req.user
req.request_method
req.script_name
req.port
end
end
MyCGI.new.start()
=== リンク
* 3875...