るりまサーチ

最速Rubyリファレンスマニュアル検索!
516件ヒット [1-100件を表示] (0.010秒)

別のキーワード

  1. rss href
  2. rss href=
  3. xmlstylesheet href
  4. xmlstylesheet href=
  5. href rss

ライブラリ

モジュール

キーワード

検索結果

<< 1 2 3 ... > >>

RSS::Maker::XMLStyleSheets::XMLStyleSheet#href (18102.0)

@todo

@todo

RSS::XMLStyleSheet#href (18102.0)

@todo

@todo

RSS::Maker::XMLStyleSheets::XMLStyleSheet#href=() (6102.0)

@todo

@todo

RSS::XMLStyleSheet#href= (6102.0)

@todo

@todo

CGI::HtmlExtension#a(href = "") -> String (126.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"...

絞り込み条件を変える

CGI::HtmlExtension#a(href = "") { ... } -> String (126.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"...

CGI::HtmlExtension#base(href = "") -> String (113.0)

base 要素を生成します。

...base 要素を生成します。

@param href 文字列を指定します。属性をハッシュで指定することもできます。

例:
base("http://www.example.com/cgi")
# => "<BASE HREF=\"http://www.example.com/cgi\">"...

rexml/document (72.0)

DOM スタイルの XML パーサ。

...//emlist[][ruby]{
require 'rexml/document'
require 'pp'

Bookmark = Struct.new(:href, :title, :desc)

doc = REXML::Document.new(<<XML)
<?xml version="1.0" encoding="UTF-8" ?>
<xbel version="1.0">
<bookmark href="http://www.ruby-lang.org/ja/">
<title>オブジェクト指向スクリプト言...
...ark>
<bookmark href="http://rurema.clear-code.com/">
<title>最速Rubyリファレンスマニュアル検索! | るりまサーチ</title>
<desc>Rubyリファレンスマニュアルを全文検索できる。
とても便利。
</desc>
</bookmark>
<bookmark href="https://github...
...<title>rurema/bitclust · GitHub</title>
</bookmark>
<bookmark href="https://rubygems.org/gems/bitclust-core" />
</xbel>
XML

bookmarks = REXML::XPath.match(doc, "/xbel/bookmark").map do |bookmark|
href
= bookmark.attribute("href").value
title_element = bookmark.elements["title"]
title =...

rss (36.0)

RSS を扱うためのライブラリです。

...られた引数によって初期化されます.

Hash:

{
:href => "...",
:type => "...",
:title => "...",
:media => "...",
:charset => "...",
:alternate => "...",
}

連想配列:

[
[:href, "..."],
[:type, "..."],
[:title, "..."],
[:media, "..."],...
...ば,xml-stylesheetとしてsample.xslを指定する場合は以下の
ようにします.

rss.xml_stylesheets << RSS::XMLStyleSheet.new({:href => "sample.xsl"})

本当は{:type => "text/xsl"}も指定しないといけないとこ
ろですが,拡張子が.xslまたは,.cssの場合は...
...下のようにします.

require "rss"

rss = RSS::Maker.make("1.0") do |maker|
xss = maker.xml_stylesheets.new_xml_stylesheet
xss.href = "http://example.com/index.xsl"

maker.channel.about = "http://example.com/index.rdf"
maker.channel.title = "Example"
maker.channel.des...
<< 1 2 3 ... > >>