From cefa526c6d3a45df2d0fcb7643ced828e2e87dea Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 26 Mar 2022 02:53:34 +0100 Subject: Refactor formatter (#17828) * Refactor formatter * Move custom emoji pre-rendering logic to view helpers * Move more methods out of Formatter * Fix code style issues * Remove Formatter * Add inline poll options to RSS feeds * Remove unused helper method * Fix code style issues * Various fixes and improvements * Fix test --- config/initializers/twitter_regex.rb | 26 -------------------------- 1 file changed, 26 deletions(-) (limited to 'config/initializers') diff --git a/config/initializers/twitter_regex.rb b/config/initializers/twitter_regex.rb index d2ea5f974..6a7723fd2 100644 --- a/config/initializers/twitter_regex.rb +++ b/config/initializers/twitter_regex.rb @@ -75,30 +75,4 @@ module Twitter::TwitterText ) }iox end - - module Extractor - # Extracts a list of all XMPP and magnet URIs included in the Toot text along - # with the indices. If the text is nil or contains no - # XMPP or magnet URIs an empty array will be returned. - # - # If a block is given then it will be called for each XMPP URI. - def extract_extra_uris_with_indices(text, _options = {}) # :yields: uri, start, end - return [] unless text && text.index(":") - urls = [] - - text.to_s.scan(Twitter::TwitterText::Regex[:valid_extended_uri]) do - valid_uri_match_data = $~ - - start_position = valid_uri_match_data.char_begin(3) - end_position = valid_uri_match_data.char_end(3) - - urls << { - :url => valid_uri_match_data[3], - :indices => [start_position, end_position] - } - end - urls.each{|url| yield url[:url], url[:indices].first, url[:indices].last} if block_given? - urls - end - end end -- cgit