mirror of
https://github.com/searxng/searxng
synced 2024-11-01 15:40:29 +00:00
72029d27de
The new url parameter "timeout_limit" set timeout limit defined in second. Example "timeout_limit=1.5" means the timeout limit is 1.5 seconds. In addition, the query can start with <[number] to set the timeout limit. For number between 0 and 99, the unit is the second : Example: "<30 searx" means the timeout limit is 3 seconds For number above 100, the unit is the millisecond: Example: "<850 searx" means the timeout is 850 milliseconds. In addition, there is a new optional setting: outgoing.max_request_timeout. If not set, the user timeout can't go above searx configuration (as before: the max timeout of selected engine for a query). If the value is set, the user can set a timeout between 0 and max_request_timeout using <[number] or timeout_limit query parameter. Related to #1077 Updated version of PR #1413 from @isj-privacore
52 lines
2.0 KiB
HTML
52 lines
2.0 KiB
HTML
<aside class="infobox">
|
|
<h2><bdi>{{ infobox.infobox }}</bdi></h2>
|
|
{% if infobox.img_src %}<img src="{{ image_proxify(infobox.img_src) }}" title="{{ infobox.infobox|striptags }}" alt="{{ infobox.infobox|striptags }}" />{% endif %}
|
|
<p><bdi>{{ infobox.entity }}</bdi></p>
|
|
<p><bdi>{{ infobox.content | safe }}</bdi></p>
|
|
{% if infobox.attributes %}
|
|
<div class="attributes">
|
|
{% for attribute in infobox.attributes %}
|
|
<dl>
|
|
<dt><bdi>{{ attribute.label }} :</bdi></dt>
|
|
{%- if attribute.image -%}
|
|
<dd><img src="{{ image_proxify(attribute.image.src) }}" alt="{{ attribute.image.alt }}" /></dd>
|
|
{%- else -%}
|
|
<dd><bdi>{{ attribute.value }}</bdi></dd>
|
|
{%- endif -%}
|
|
</dl>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if infobox.urls %}
|
|
<div class="urls">
|
|
<ul>
|
|
{%- for url in infobox.urls -%}
|
|
<li class="url"><bdi><a href="{{ url.url }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %}>{{ url.title }}</a></bdi></li>
|
|
{%- endfor -%}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if infobox.relatedTopics %}
|
|
<div class="relatedTopics">
|
|
{% for topic in infobox.relatedTopics %}
|
|
<div>
|
|
<h3><bdi>{{ topic.name }}</bdi></h3>
|
|
{% for suggestion in topic.suggestions %}
|
|
<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}">
|
|
<input type="hidden" name="q" value="{{ suggestion }}">
|
|
<input type="hidden" name="time_range" value="{{ time_range }}">
|
|
<input type="hidden" name="language" value="{{ current_language }}">
|
|
<input type="hidden" name="safesearch" value="{{ safesearch }}">
|
|
<input type="hidden" name="theme" value="{{ theme }}">
|
|
{% if timeout_limit %}<input type="hidden" name="timeout_limit" value="{{ timeout_limit|e }}" >{% endif %}
|
|
<input type="submit" value="{{ suggestion }}" />
|
|
</form>
|
|
{% endfor %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
</aside>
|