From c32c4df9cc6e9e454634ef048622dff2c94c3ba3 Mon Sep 17 00:00:00 2001 From: Simon Legner Date: Thu, 29 Apr 2021 21:46:34 +0200 Subject: [PATCH] Remove obsoklete lib/docs/filters/dom_events --- lib/docs/filters/dom_events/clean_html.rb | 28 -------- lib/docs/filters/dom_events/entries.rb | 87 ----------------------- 2 files changed, 115 deletions(-) delete mode 100644 lib/docs/filters/dom_events/clean_html.rb delete mode 100644 lib/docs/filters/dom_events/entries.rb diff --git a/lib/docs/filters/dom_events/clean_html.rb b/lib/docs/filters/dom_events/clean_html.rb deleted file mode 100644 index 805870a8..00000000 --- a/lib/docs/filters/dom_events/clean_html.rb +++ /dev/null @@ -1,28 +0,0 @@ -module Docs - class DomEvents - class CleanHtmlFilter < Filter - def call - root_page? ? root : other - doc - end - - def root - # Remove everything after "Standard events" - css('#Non-standard_events', '#Non-standard_events ~ *').remove - - # Remove events we don't want - css('tr').each do |tr| - if td = tr.at_css('td:nth-child(3)') - tr.remove if td.content =~ /SVG|Battery|Gamepad|Sensor/i - end - end - end - - def other - css('#General_info + dl').each do |node| - node['class'] = 'eventinfo' - end - end - end - end -end diff --git a/lib/docs/filters/dom_events/entries.rb b/lib/docs/filters/dom_events/entries.rb deleted file mode 100644 index bc34f1ea..00000000 --- a/lib/docs/filters/dom_events/entries.rb +++ /dev/null @@ -1,87 +0,0 @@ -module Docs - class DomEvents - class EntriesFilter < Docs::EntriesFilter - TYPE_BY_INFO = { - 'applicationCache' => 'Application Cache', - 'Battery' => 'Battery', - 'Call' => 'Telephony', - 'Clipboard' => 'Clipboard', - 'CSS' => 'CSS', - 'Drag' => 'Drag & Drop', - 'Fetch' => 'Fetch', - 'Fullscreen' => 'Fullscreen', - 'Gamepad' => 'Gamepad', - 'HashChange' => 'History', - 'IDB' => 'IndexedDB', - 'IndexedDB' => 'IndexedDB', - 'Keyboard' => 'Keyboard', - 'edia' => 'Media', - 'Mouse' => 'Mouse', - 'Notification' => 'Notification', - 'Offline' => 'Offline', - 'Orientation' => 'Device', - 'Sensor' => 'Device', - 'SVG' => 'SVG', - 'Page Visibility' => 'Page Visibility', - 'Pointer' => 'Mouse', - 'PopState' => 'History', - 'Push' => 'Push', - 'Progress' => 'Progress', - 'Proximity' => 'Device', - 'Selection' => 'Selection', - 'Server Sent' => 'Server Sent Events', - 'Speech' => 'Web Speech', - 'Storage' => 'Web Storage', - 'Touch' => 'Touch', - 'Transition' => 'CSS', - 'PageTransition' => 'History', - 'WebSocket' => 'WebSocket', - 'Web App Manifest' => 'Web App Manifest', - 'Web Audio' => 'Web Audio', - 'Web Messaging' => 'Web Messaging', - 'WebGL' => 'WebGL', - 'WebRTC' => 'WebRTC', - 'WebVR' => 'WebVR', - 'Wheel' => 'Mouse', - 'Worker' => 'Web Workers', - 'Focus' => 'Focus' } - - FORM_SLUGS = %w(change compositionend compositionstart compositionupdate - input invalid reset select submit) - LOAD_SLUGS = %w(abort beforeunload DOMContentLoaded error load - readystatechange unload) - - APPEND_TYPE = %w(Application\ Cache IndexedDB Progress Telephony - Server\ Sent\ Events WebSocket Web\ Messaging Web\ Workers) - - def get_name - name = super - name = "#{name.split.first} (#{type})" if APPEND_TYPE.include?(type) - name - end - - def get_type - if FORM_SLUGS.include?(slug) - 'Form' - elsif LOAD_SLUGS.include?(slug) - 'Load' - else - info = css('.eventinfo, .properties, .standard-table').map(&:content).join - TYPE_BY_INFO.each_pair do |key, value| - return value if info.include?(key) - end - - 'Miscellaneous' - end - end - - def include_default_entry? - content = doc.content - !content.include?('Firefox OS specific') && - !content.include?('Addons specific') && - !content.include?('Mozilla specific') && - content !~ /Specification\s+XUL/ - end - end - end -end