Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 18.119.110.128
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby26 /
lib64 /
ruby /
2.6.0 /
rss /
maker /
Delete
Unzip
Name
Size
Permission
Date
Action
0.9.rb
11.83
KB
-rw-r--r--
2022-04-12 11:50
1.0.rb
10.05
KB
-rw-r--r--
2022-04-12 11:50
2.0.rb
5.72
KB
-rw-r--r--
2022-04-12 11:50
atom.rb
4.54
KB
-rw-r--r--
2022-04-12 11:50
base.rb
24.1
KB
-rw-r--r--
2022-04-12 11:50
content.rb
421
B
-rw-r--r--
2022-04-12 11:50
dublincore.rb
3.77
KB
-rw-r--r--
2022-04-12 11:50
entry.rb
4.73
KB
-rw-r--r--
2022-04-12 11:50
feed.rb
12.51
KB
-rw-r--r--
2022-04-12 11:50
image.rb
2.9
KB
-rw-r--r--
2022-04-12 11:50
itunes.rb
7.32
KB
-rw-r--r--
2022-04-12 11:50
slash.rb
773
B
-rw-r--r--
2022-04-12 11:50
syndication.rb
387
B
-rw-r--r--
2022-04-12 11:50
taxonomy.rb
3.14
KB
-rw-r--r--
2022-04-12 11:50
trackback.rb
1.6
KB
-rw-r--r--
2022-04-12 11:50
Save
Rename
# frozen_string_literal: false require_relative '../image' require_relative '1.0' require_relative 'dublincore' module RSS module Maker module ImageItemModel def self.append_features(klass) super name = "#{RSS::IMAGE_PREFIX}_item" klass.def_classed_element(name) end def self.install_image_item(klass) klass.module_eval(<<-EOC, __FILE__, __LINE__ + 1) class ImageItem < ImageItemBase DublinCoreModel.install_dublin_core(self) end EOC end class ImageItemBase < Base include Maker::DublinCoreModel attr_accessor :about, :resource, :image_width, :image_height add_need_initialize_variable("about") add_need_initialize_variable("resource") add_need_initialize_variable("image_width") add_need_initialize_variable("image_height") alias width= image_width= alias width image_width alias height= image_height= alias height image_height def have_required_values? @about end def to_feed(feed, current) if current.respond_to?(:image_item=) and have_required_values? item = current.class::ImageItem.new setup_values(item) setup_other_elements(item) current.image_item = item end end end end module ImageFaviconModel def self.append_features(klass) super name = "#{RSS::IMAGE_PREFIX}_favicon" klass.def_classed_element(name) end def self.install_image_favicon(klass) klass.module_eval(<<-EOC, __FILE__, __LINE__ + 1) class ImageFavicon < ImageFaviconBase DublinCoreModel.install_dublin_core(self) end EOC end class ImageFaviconBase < Base include Maker::DublinCoreModel attr_accessor :about, :image_size add_need_initialize_variable("about") add_need_initialize_variable("image_size") alias size image_size alias size= image_size= def have_required_values? @about and @image_size end def to_feed(feed, current) if current.respond_to?(:image_favicon=) and have_required_values? favicon = current.class::ImageFavicon.new setup_values(favicon) setup_other_elements(favicon) current.image_favicon = favicon end end end end class ChannelBase; include Maker::ImageFaviconModel; end class ItemsBase class ItemBase; include Maker::ImageItemModel; end end makers.each do |maker| maker.module_eval(<<-EOC, __FILE__, __LINE__ + 1) class Channel ImageFaviconModel.install_image_favicon(self) end class Items class Item ImageItemModel.install_image_item(self) end end EOC end end end