forked from mirrors/bookwyrm
Fixes search html
And suppresses more warnings
This commit is contained in:
parent
65e59e7b56
commit
7623168410
2 changed files with 6 additions and 2 deletions
|
@ -13,7 +13,7 @@
|
||||||
<form class="block" action="{% url 'search' %}" method="GET">
|
<form class="block" action="{% url 'search' %}" method="GET">
|
||||||
<div class="field has-addons">
|
<div class="field has-addons">
|
||||||
<div class="control">
|
<div class="control">
|
||||||
<input type="input" class="input" name="q" value="{{ query }}" aria-label="{% trans 'Search query' %}">
|
<input type="text" class="input" name="q" value="{{ query }}" aria-label="{% trans 'Search query' %}">
|
||||||
</div>
|
</div>
|
||||||
<div class="control">
|
<div class="control">
|
||||||
<div class="select" aria-label="{% trans 'Search type' %}">
|
<div class="select" aria-label="{% trans 'Search type' %}">
|
||||||
|
|
|
@ -15,7 +15,11 @@ def validate_html(html):
|
||||||
errors = "\n".join(
|
errors = "\n".join(
|
||||||
e
|
e
|
||||||
for e in errors.split("\n")
|
for e in errors.split("\n")
|
||||||
if "&book" not in e and "id and name attribute" not in e
|
if "&book" not in e
|
||||||
|
and "&type" not in e
|
||||||
|
and "id and name attribute" not in e
|
||||||
|
and "illegal characters found in URI" not in e
|
||||||
|
and "escaping malformed URI reference" not in e
|
||||||
)
|
)
|
||||||
if errors:
|
if errors:
|
||||||
raise Exception(errors)
|
raise Exception(errors)
|
||||||
|
|
Loading…
Reference in a new issue