mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	[fix] add aria labels to result links - #350
This commit is contained in:
		
							parent
							
								
									f9f5974968
								
							
						
					
					
						commit
						b51d4ec041
					
				
					 7 changed files with 36 additions and 36 deletions
				
			
		|  | @ -8,34 +8,34 @@ | |||
|     <img width="32" height="32" class="favicon" src="{{ url_for('static', filename='themes/oscar/img/icons/' + favicon + '.png') }}" alt="{{ favicon }}" /> | ||||
| {%- endmacro %} | ||||
| 
 | ||||
| {%- macro result_link(url, title, classes='') -%} | ||||
| <a href="{{ url }}" {% if classes %}class="{{ classes }}" {% endif %}{% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %}>{{ title }}</a> | ||||
| {%- macro result_link(url, title, classes='', id='') -%} | ||||
| <a href="{{ url }}" {% if classes %}class="{{ classes }}" {% endif %}{% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %}{% if id %} aria-labelledby="result-{{id}}"{%endif%}>{{ title }}</a> | ||||
| {%- endmacro -%} | ||||
| 
 | ||||
| <!-- Draw result header --> | ||||
| {% macro result_header(result, favicons) -%} | ||||
| <h4 class="result_header">{% if result.engine~".png" in favicons %}{{ draw_favicon(result.engine) }} {% endif %}{% if result.url %}{{ result_link(result.url, result.title|safe) }}{% else %}{{ result.title|safe}}{% endif %}</h4> | ||||
| {% macro result_header(result, favicons, id) -%} | ||||
| <h4 class="result_header" id="result-{{id}}">{% if result.engine~".png" in favicons %}{{ draw_favicon(result.engine) }} {% endif %}{% if result.url %}{{ result_link(result.url, result.title|safe, id=id) }}{% else %}{{ result.title|safe}}{% endif %}</h4> | ||||
| {%- endmacro %} | ||||
| 
 | ||||
| <!-- Draw result sub header --> | ||||
| {% macro result_sub_header(result) -%} | ||||
| {% macro result_sub_header(result, id) -%} | ||||
|     {% if result.publishedDate %}<time class="text-muted" datetime="{{ result.pubdate }}" >{{ result.publishedDate }}</time>{% endif %} | ||||
|     {% if result.magnetlink %}<small> • {{ result_link(result.magnetlink, icon('magnet') + _('magnet link'), "magnetlink") }}</small>{% endif %} | ||||
|     {% if result.torrentfile %}<small> • {{ result_link(result.torrentfile, icon('download-alt') + _('torrent file'), "torrentfile") }}</small>{% endif %} | ||||
|     {% if result.magnetlink %}<small> • {{ result_link(result.magnetlink, icon('magnet') + _('magnet link'), "magnetlink", id) }}</small>{% endif %} | ||||
|     {% if result.torrentfile %}<small> • {{ result_link(result.torrentfile, icon('download-alt') + _('torrent file'), "torrentfile", id) }}</small>{% endif %} | ||||
| {%- endmacro %} | ||||
| 
 | ||||
| <!-- Draw result footer --> | ||||
| {% macro result_footer(result) -%} | ||||
| {% macro result_footer(result, id) -%} | ||||
|     <div class="clearfix"></div>{{- "" -}} | ||||
|     <div class="pull-right"> | ||||
|         {%- for engine in result.engines -%} | ||||
|             <span class="label label-default">{{ engine }}</span> | ||||
|         {%- endfor -%} | ||||
|         {%- if result.url -%} | ||||
|         <small>{{ result_link("https://web.archive.org/web/" + result.url, icon('link') + _('cached'), "text-info") }}</small> | ||||
|         <small>{{ result_link("https://web.archive.org/web/" + result.url, icon('link') + _('cached'), "text-info", id) }}</small> | ||||
|         {%- endif -%} | ||||
|         {%- if proxify -%} | ||||
|         <small>{{ result_link(proxify(result.url), icon('sort') + _('proxied'), "text-info") }}</small> | ||||
|         <small>{{ result_link(proxify(result.url), icon('sort') + _('proxied'), "text-info", id) }}</small> | ||||
|         {%- endif -%} | ||||
|     </div> | ||||
|     {%- if result.pretty_url -%} | ||||
|  | @ -44,16 +44,16 @@ | |||
| {%- endmacro %} | ||||
| 
 | ||||
| <!-- Draw result footer --> | ||||
| {% macro result_footer_rtl(result) -%} | ||||
| {% macro result_footer_rtl(result, id) -%} | ||||
|     <div class="clearfix"></div>{{- "" -}} | ||||
|     {% for engine in result.engines -%} | ||||
|         <span class="label label-default">{{ engine }}</span> | ||||
|     {%- endfor %} | ||||
|     {%- if result.url -%} | ||||
|     <small>{{ result_link("https://web.archive.org/web/" + result.url, icon('link') + _('cached'), "text-info") }}</small> | ||||
|     <small>{{ result_link("https://web.archive.org/web/" + result.url, icon('link') + _('cached'), "text-info", id) }}</small> | ||||
|     {%- endif -%} | ||||
|     {% if proxify -%} | ||||
|     <small>{{ result_link(proxify(result.url), icon('sort') + _('proxied'), "text-info") }}</small> | ||||
|     <small>{{ result_link(proxify(result.url), icon('sort') + _('proxied'), "text-info", id) }}</small> | ||||
|     {%- endif %} | ||||
|     {%- if result.pretty_url -%} | ||||
|     <div class="external-link">{{ result.pretty_url }}</div> | ||||
|  |  | |||
|  | @ -1,11 +1,11 @@ | |||
| {% from 'oscar/macros.html' import result_header, result_sub_header, result_footer, result_footer_rtl, icon %} | ||||
| {% from 'oscar/macros.html' import result_header, result_sub_header, result_footer, result_footer_rtl, icon with context%} | ||||
| 
 | ||||
| {{ result_header(result, favicons) }} | ||||
| {{ result_sub_header(result) }} | ||||
| 
 | ||||
| {% if result.content %}<p class="result-content">{{ result.content|safe }}</p>{% endif %} | ||||
| 
 | ||||
| {% if result.repository %}<p class="result-content">{{ icon('file') }} <a href="{{ result.repository }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %}>{{ result.repository }}</a></p>{% endif %} | ||||
| {% if result.repository %}<p class="result-content">{{ icon('file') }} <a href="{{ result.repository }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %} aria-labelledby="result-{{loop.index}}">{{ result.repository }}</a></p>{% endif %} | ||||
| 
 | ||||
| <div dir="ltr"> | ||||
| {{ result.codelines|code_highlighter(result.code_language)|safe }} | ||||
|  |  | |||
|  | @ -1,10 +1,10 @@ | |||
| {% from 'oscar/macros.html' import result_header, result_sub_header, result_footer, result_footer_rtl, icon with context %} | ||||
| 
 | ||||
| {{- result_header(result, favicons) -}} | ||||
| {{- result_sub_header(result) -}} | ||||
| {{- result_header(result, favicons, loop.index) -}} | ||||
| {{- result_sub_header(result, loop.index) -}} | ||||
| 
 | ||||
| {%- if result.embedded -%} | ||||
|     <small> • <a class="text-info btn-collapse collapsed cursor-pointer media-loader disabled_if_nojs" data-toggle="collapse" data-target="#result-media-{{ index }}" data-btn-text-collapsed="{{ _('show media') }}" data-btn-text-not-collapsed="{{ _('hide media') }}">{{ icon('music') }} {{ _('show media') }}</a></small> | ||||
|     <small> • <a class="text-info btn-collapse collapsed cursor-pointer media-loader disabled_if_nojs" data-toggle="collapse" data-target="#result-media-{{ index }}" data-btn-text-collapsed="{{ _('show media') }}" data-btn-text-not-collapsed="{{ _('hide media') }}" aria-labelledby="result-{{loop.index}}">{{ icon('music') }} {{ _('show media') }}</a></small> | ||||
| {%- endif -%} | ||||
| 
 | ||||
| {%- if result.embedded -%} | ||||
|  | @ -25,7 +25,7 @@ | |||
| {%- endif -%} | ||||
| 
 | ||||
| {%- if rtl -%} | ||||
| {{ result_footer_rtl(result) }} | ||||
| {{ result_footer_rtl(result, loop.index) }} | ||||
| {%- else -%} | ||||
| {{ result_footer(result) }} | ||||
| {{ result_footer(result, loop.index) }} | ||||
| {%- endif -%} | ||||
|  |  | |||
|  | @ -1,6 +1,6 @@ | |||
| {%- from 'oscar/macros.html' import draw_favicon -%} | ||||
| {%- from 'oscar/macros.html' import draw_favicon with context -%} | ||||
| 
 | ||||
| <a href="{{ result.img_src }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %} data-toggle="modal" data-target="#modal-{{ index }}-{{pageno}}">{{- "" -}} | ||||
| <a href="{{ result.img_src }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %} data-toggle="modal" data-target="#modal-{{ index }}-{{pageno}}" id="result-{{loop.index}}">{{- "" -}} | ||||
|     <img src="{% if result.thumbnail_src %}{{ image_proxify(result.thumbnail_src) }}{% else %}{{ image_proxify(result.img_src) }}{% endif %}" alt="{{ result.title|striptags }}" title="{{ result.title|striptags }}" class="img-thumbnail">{{- "" -}} | ||||
| </a> | ||||
| <div class="modal fade" id="modal-{{ index }}-{{ pageno }}" tabindex="-1" role="dialog" aria-hidden="true">{{- "" -}} | ||||
|  |  | |||
|  | @ -1,7 +1,7 @@ | |||
| {% from 'oscar/macros.html' import result_header, result_sub_header, result_footer, result_footer_rtl, icon %} | ||||
| 
 | ||||
| {{ result_header(result, favicons) }} | ||||
| {{ result_sub_header(result) }} | ||||
| {{ result_header(result, favicons, loop.index) }} | ||||
| {{ result_sub_header(result, loop.index) }} | ||||
| 
 | ||||
| {% if (result.latitude and result.longitude) or result.boundingbox %} | ||||
|     <small> • <a class="text-info btn-collapse collapsed searx_init_map cursor-pointer disabled_if_nojs" data-toggle="collapse" data-target="#result-map-{{ index }}" data-leaflet-target="osm-map-{{ index }}" data-map-lon="{{ result.longitude }}" data-map-lat="{{ result.latitude }}" {% if result.boundingbox %}data-map-boundingbox='{{ result.boundingbox|tojson|safe }}'{% endif %} {% if result.geojson %}data-map-geojson='{{ result.geojson|tojson|safe }}'{% endif %} data-btn-text-collapsed="{{ _('show map') }}" data-btn-text-not-collapsed="{{ _('hide map') }}">{{ icon('globe') }} {{ _('show map') }}</a></small> | ||||
|  | @ -66,7 +66,7 @@ | |||
| {% endif %} | ||||
| 
 | ||||
| {% if rtl %} | ||||
| {{ result_footer_rtl(result) }} | ||||
| {{ result_footer_rtl(result, loop.index) }} | ||||
| {% else %} | ||||
| {{ result_footer(result) }} | ||||
| {{ result_footer(result, loop.index) }} | ||||
| {% endif %} | ||||
|  |  | |||
|  | @ -1,7 +1,7 @@ | |||
| {% from 'oscar/macros.html' import result_header, result_sub_header, result_footer, result_footer_rtl, icon %} | ||||
| 
 | ||||
| {{ result_header(result, favicons) }} | ||||
| {{ result_sub_header(result) }} | ||||
| {{ result_header(result, favicons, loop.index) }} | ||||
| {{ result_sub_header(result, loop.index) }} | ||||
| 
 | ||||
| {% if result.seed is defined %}<p class="result-content">{{ icon('transfer') }} {{ _('Seeder') }} <span class="badge">{{ result.seed }}</span> • {{ _('Leecher') }} <span class="badge">{{ result.leech }}</span>{% endif %} | ||||
| {% if result.filesize %}<br />{{ icon('floppy-disk') }} {{ _('Filesize') }}  | ||||
|  | @ -19,7 +19,7 @@ | |||
| </p> | ||||
| 
 | ||||
| {% if rtl %} | ||||
| {{ result_footer_rtl(result) }} | ||||
| {{ result_footer_rtl(result, loop.index) }} | ||||
| {% else %} | ||||
| {{ result_footer(result) }} | ||||
| {{ result_footer(result, loop.index) }} | ||||
| {% endif %} | ||||
|  |  | |||
|  | @ -1,10 +1,10 @@ | |||
| {% from 'oscar/macros.html' import result_header, result_sub_header, result_footer, result_footer_rtl, icon %} | ||||
| 
 | ||||
| {{ result_header(result, favicons) }} | ||||
| {{ result_sub_header(result) }} | ||||
| {{ result_header(result, favicons, loop.index) }} | ||||
| {{ result_sub_header(result, loop.index) }} | ||||
| 
 | ||||
| {% if result.embedded %} | ||||
|     <small> • <a class="text-info btn-collapse collapsed cursor-pointer media-loader disabled_if_nojs" data-toggle="collapse" data-target="#result-video-{{ index }}" data-btn-text-collapsed="{{ _('show video') }}" data-btn-text-not-collapsed="{{ _('hide video') }}">{{ icon('film') }} {{ _('show video') }}</a></small> | ||||
|     <small> • <a class="text-info btn-collapse collapsed cursor-pointer media-loader disabled_if_nojs" data-toggle="collapse" data-target="#result-video-{{ index }}" data-btn-text-collapsed="{{ _('show video') }}" data-btn-text-not-collapsed="{{ _('hide video') }}" aria-labelledby="result-{{loop.index}}">{{ icon('film') }} {{ _('show video') }}</a></small> | ||||
| {% endif %} | ||||
| 
 | ||||
| {% if result.embedded %} | ||||
|  | @ -15,7 +15,7 @@ | |||
| 
 | ||||
| <div class="container-fluid"> | ||||
|     <div class="row"> | ||||
|         <a href="{{ result.url }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %}><img class="thumbnail col-xs-6 col-sm-4 col-md-4 result-content" src="{{ image_proxify(result.thumbnail) }}" /></a> | ||||
|         <a href="{{ result.url }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %}><img class="thumbnail col-xs-6 col-sm-4 col-md-4 result-content" src="{{ image_proxify(result.thumbnail) }}" aria-labelledby="result-{{loop.index}}" /></a> | ||||
|         {% if result.author %}<p class="col-xs-12 col-sm-8 col-md-8 result-content"><b>{{ _('Author') }}</b>: {{ result.author }}</p>{% endif %} | ||||
|         {% if result.length %}<p class="col-xs-12 col-sm-8 col-md-8 result-content"><b>{{ _('Length') }}</b>: {{ result.length }}</p>{% endif %} | ||||
|         {% if result.content %}<p class="col-xs-12 col-sm-8 col-md-8 result-content">{{ result.content|safe }}</p>{% endif %} | ||||
|  | @ -23,7 +23,7 @@ | |||
| </div> | ||||
| 
 | ||||
| {% if rtl %} | ||||
| {{ result_footer_rtl(result) }} | ||||
| {{ result_footer_rtl(result, loop.index) }} | ||||
| {% else %} | ||||
| {{ result_footer(result) }} | ||||
| {{ result_footer(result, loop.index) }} | ||||
| {% endif %} | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Adam Tauber
						Adam Tauber