132件ヒット
[1-100件を表示]
(0.154秒)
ライブラリ
-
cgi
/ html (36) -
rexml
/ document (24) -
rexml
/ streamlistener (12) - rss (48)
- win32ole (12)
クラス
-
REXML
:: Instruction (24) -
RSS
:: Maker :: XMLStyleSheets :: XMLStyleSheet (24) -
RSS
:: XMLStyleSheet (24) -
WIN32OLE
_ EVENT (12)
モジュール
-
CGI
:: HtmlExtension (36) -
REXML
:: StreamListener (12)
検索結果
先頭5件
-
RSS
:: Maker :: XMLStyleSheets :: XMLStyleSheet # href (24103.0) -
@todo
...@todo... -
RSS
:: XMLStyleSheet # href (21103.0) -
@todo
...@todo... -
RSS
:: Maker :: XMLStyleSheets :: XMLStyleSheet # href=() (12103.0) -
@todo
...@todo... -
REXML
:: StreamListener # instruction(name , instruction) -> () (9213.0) -
XML処理命令(PI)をパースしたときに呼び出されるコールバックメソッドです。
...が文字列で渡されます
@param instruction 処理命令の内容が文字列で渡されます
=== 例
<?xml-stylesheet type="text/css" href="style.css"?>
というPIに対し
name: "xml-stylesheet"
instruction: " type=\"text/css\" href=\"style.css\""
という引数が渡されます... -
RSS
:: XMLStyleSheet # href= (9103.0) -
@todo
...@todo... -
REXML
:: Instruction # content -> String | nil (6113.0) -
XML 処理命令の内容を返します。
...mlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/css" href="style.css"?>
<?foobar?>
<root />
EOS
doc[2] # => <?p-i xml-stylesheet ...?>
doc[2].target # => "xml-stylesheet"
doc[2].content # => "type=\"text/css......\" href=\"style.css\""
doc[4].target # => "foobar"
doc[4].content # => nil
//}... -
REXML
:: Instruction # target -> String (6113.0) -
XML 処理命令のターゲットを返します。
...ist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/css" href="style.css"?>
<root />
EOS
doc[2] # => <?p-i xml-stylesheet ...?>
doc[2].target # => "xml-stylesheet"
doc[2].content # => "type=\"text/css\" href=\"sty... -
CGI
:: HtmlExtension # a(href = "") -> String (3227.0) -
a 要素を生成します。
...す。
@param href 文字列を指定します。属性をハッシュで指定することもできます。
例:
a("http://www.example.com") { "Example" }
# => "<A HREF=\"http://www.example.com\">Example</A>"
a("HREF" => "http://www.example.com", "TARGET" => "_top") { "Example" }......# => "<A HREF=\"http://www.example.com\" TARGET=\"_top\">Example</A>"... -
CGI
:: HtmlExtension # a(href = "") { . . . } -> String (3227.0) -
a 要素を生成します。
...す。
@param href 文字列を指定します。属性をハッシュで指定することもできます。
例:
a("http://www.example.com") { "Example" }
# => "<A HREF=\"http://www.example.com\">Example</A>"
a("HREF" => "http://www.example.com", "TARGET" => "_top") { "Example" }......# => "<A HREF=\"http://www.example.com\" TARGET=\"_top\">Example</A>"...