mirror of
https://github.com/discourse/discourse.git
synced 2025-06-03 01:35:22 +08:00
Drop flash video onebox (#12261)
Flash was discontinued by Adobe at the end of 2020. There is no need to continue OneBox support for it
This commit is contained in:
@ -1,19 +0,0 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module Onebox
|
||||
module Engine
|
||||
class FlashVideoOnebox
|
||||
include Engine
|
||||
|
||||
matches_regexp /^https?:\/\/.*\.(swf|flv)$/
|
||||
|
||||
def to_html
|
||||
if SiteSetting.enable_flash_video_onebox
|
||||
"<object width='100%' height='100%'><param name='#{@url}' value='#{@url}'><embed src='#{@url}' width='100%' height='100%'></embed></object>"
|
||||
else
|
||||
"<a href='#{@url}'>#{@url}</a>"
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user