~cytrogen/masto-fe

ref: 685270f3f7ea6d4a8a48ec641e8fdfd9fc2e2d7f masto-fe/app/lib/rss/channel.rb -rw-r--r-- 887 bytes
685270f3 — Claire [Glitch] Fix clicking “Explore” or “Live feeds” column headers to scroll in advanced mode 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# frozen_string_literal: true

class RSS::Channel < RSS::Element
  def initialize
    super()

    @root = create_element('channel')
  end

  def title(str)
    append_element('title', str)
  end

  def link(str)
    append_element('link', str)
  end

  def last_build_date(date)
    append_element('lastBuildDate', date.to_fs(:rfc822))
  end

  def image(url, title, link)
    append_element('image') do |image|
      image << create_element('url', url)
      image << create_element('title', title)
      image << create_element('link', link)
    end
  end

  def description(str)
    append_element('description', str)
  end

  def generator(str)
    append_element('generator', str)
  end

  def icon(str)
    append_element('webfeeds:icon', str)
  end

  def logo(str)
    append_element('webfeeds:logo', str)
  end

  def item(&block)
    @root << RSS::Item.with(&block)
  end
end