Skip to content
Snippets Groups Projects
Commit fbda0cb1 authored by Olivia206's avatar Olivia206
Browse files

Automatic search for title in iframes

parent dd6b0373
No related branches found
No related tags found
No related merge requests found
......@@ -5,11 +5,33 @@ class Communication::Block::Template::Embed < Communication::Block::Template::Ba
protected
#def check_accessibility
# super
# accessibility_error 'accessibility.blocks.templates.embed.title_missing' if iframe_title.blank?
# accessibility_error 'accessibility.blocks.templates.embed.transcription_missing' if transcription.blank?
#end
def has_iframe?
@doc = Nokogiri::XML(code)
is_iframe = @doc.xpath("//iframe")
if !is_iframe.empty?
return true
end
end
def has_iframe_without_title?
if has_iframe?
has_title = Nokogiri::XML(code).at('iframe').attr('title')
end
end
def check_accessibility
super
accessibility_error 'accessibility.blocks.templates.embed.title_missing' if has_iframe? && !has_iframe_without_title?
accessibility_error 'accessibility.blocks.templates.embed.transcription_missing' if has_iframe? && transcription.blank?
end
end
......@@ -26,7 +26,7 @@ en:
embed:
title_missing:
title: No frame title
text_html: The HTML embedding has not title. This will prevent blind people from knowing what the video is about, as mentioned in <a href="https://www.numerique.gouv.fr/publications/rgaa-accessibilite/methode-rgaa/criteres/#topic4" target="_blank">criterion 4.7 of RGAA</a>. Please add a title to the video.
text_html: The HTML embedding has not title. This will prevent blind people from knowing what the video is about, as mentioned in <a href="https://www.numerique.gouv.fr/publications/rgaa-accessibilite/methode-rgaa/criteres/#topic4" target="_blank">criterion 4.7 of RGAA</a>. Please add a title to the iframe.
transcription_missing:
title: No transcription
text_html: The HTML iframe has no text transcription for blind people, for people with low bandwidth or no javascript enabled. Please add a text transcription.
......
......@@ -26,7 +26,7 @@ fr:
embed:
title_missing:
title: Pas de titre de cadre
text_html: L'intégration HTML n'a pas de titre, cela va empêcher les personnes malvoyantes de savoir de quoi parle la vidéo, comme expliqué dans le <a href="https://www.numerique.gouv.fr/publications/rgaa-accessibilite/methode-rgaa/criteres/#topic4" target="_blank">critère 4.7 du RGAA</a>. Merci d'ajouter un titre à la vidéo.
text_html: L'intégration HTML n'a pas de titre, cela va empêcher les personnes malvoyantes de savoir de quoi parle la vidéo, comme expliqué dans le <a href="https://www.numerique.gouv.fr/publications/rgaa-accessibilite/methode-rgaa/criteres/#topic4" target="_blank">critère 4.7 du RGAA</a>. Merci d'ajouter une balise <b>title</b> explicite à votre iframe.
transcription_missing:
title: Pas de transcription
text_html: Le cadre HTML n'est pas accompagné d'une transcription textuelle pour les personnes malvoyantes, ou pour les situations de faible débit qui empêcheraient la lecture.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment