OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
ruby
/
2.5.0
/
rss
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:11 AM
rwxr-xr-x
📄
0.9.rb
10.61 KB
12/16/2015 05:07:31 AM
rw-r--r--
📄
1.0.rb
9.64 KB
12/16/2015 05:07:31 AM
rw-r--r--
📄
2.0.rb
3.43 KB
12/16/2015 05:07:31 AM
rw-r--r--
📄
atom.rb
28.9 KB
01/26/2017 12:47:51 PM
rw-r--r--
📁
content
-
05/09/2024 07:14:11 AM
rwxr-xr-x
📄
content.rb
890 bytes
12/16/2015 05:07:31 AM
rw-r--r--
📄
converter.rb
3.9 KB
12/16/2015 05:07:31 AM
rw-r--r--
📁
dublincore
-
05/09/2024 07:14:11 AM
rwxr-xr-x
📄
dublincore.rb
4.3 KB
12/16/2015 05:07:31 AM
rw-r--r--
📄
image.rb
4.79 KB
12/16/2015 05:07:31 AM
rw-r--r--
📄
itunes.rb
10.07 KB
10/22/2017 04:03:57 PM
rw-r--r--
📁
maker
-
05/09/2024 07:14:11 AM
rwxr-xr-x
📄
maker.rb
1.78 KB
12/16/2015 05:07:31 AM
rw-r--r--
📄
parser.rb
15.61 KB
12/16/2015 05:07:31 AM
rw-r--r--
📄
rexmlparser.rb
995 bytes
12/16/2015 05:07:31 AM
rw-r--r--
📄
rss.rb
34.83 KB
12/12/2017 11:56:25 AM
rw-r--r--
📄
slash.rb
1.33 KB
12/16/2015 05:07:31 AM
rw-r--r--
📄
syndication.rb
1.88 KB
12/16/2015 05:07:31 AM
rw-r--r--
📄
taxonomy.rb
3.19 KB
12/16/2015 05:07:31 AM
rw-r--r--
📄
trackback.rb
6.72 KB
12/16/2015 05:07:31 AM
rw-r--r--
📄
utils.rb
5.13 KB
10/22/2017 04:03:57 PM
rw-r--r--
📄
xml-stylesheet.rb
2.16 KB
12/16/2015 05:07:31 AM
rw-r--r--
📄
xml.rb
1.5 KB
12/16/2015 05:07:31 AM
rw-r--r--
📄
xmlparser.rb
1.65 KB
12/16/2015 05:07:31 AM
rw-r--r--
📄
xmlscanner.rb
2.13 KB
12/16/2015 05:07:31 AM
rw-r--r--
Editing: syndication.rb
Close
# frozen_string_literal: false require "rss/1.0" module RSS # The prefix for the Syndication XML namespace. SY_PREFIX = 'sy' # The URI of the Syndication specification. SY_URI = "http://purl.org/rss/1.0/modules/syndication/" RDF.install_ns(SY_PREFIX, SY_URI) module SyndicationModel extend BaseModel ELEMENTS = [] def self.append_features(klass) super klass.install_must_call_validator(SY_PREFIX, SY_URI) klass.module_eval do [ ["updatePeriod"], ["updateFrequency", :positive_integer] ].each do |name, type| install_text_element(name, SY_URI, "?", "#{SY_PREFIX}_#{name}", type, "#{SY_PREFIX}:#{name}") end %w(updateBase).each do |name| install_date_element(name, SY_URI, "?", "#{SY_PREFIX}_#{name}", 'w3cdtf', "#{SY_PREFIX}:#{name}") end end klass.module_eval(<<-EOC, __FILE__, __LINE__ + 1) alias_method(:_sy_updatePeriod=, :sy_updatePeriod=) def sy_updatePeriod=(new_value) new_value = new_value.strip validate_sy_updatePeriod(new_value) if @do_validate self._sy_updatePeriod = new_value end EOC end private SY_UPDATEPERIOD_AVAILABLE_VALUES = %w(hourly daily weekly monthly yearly) def validate_sy_updatePeriod(value) # :nodoc: unless SY_UPDATEPERIOD_AVAILABLE_VALUES.include?(value) raise NotAvailableValueError.new("updatePeriod", value) end end end class RDF class Channel; include SyndicationModel; end end prefix_size = SY_PREFIX.size + 1 SyndicationModel::ELEMENTS.uniq! SyndicationModel::ELEMENTS.each do |full_name| name = full_name[prefix_size..-1] BaseListener.install_get_text_element(SY_URI, name, full_name) end end