summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TODO.md3
-rw-r--r--views/data.jade8
2 files changed, 10 insertions, 1 deletions
diff --git a/TODO.md b/TODO.md
index 4b45e26..fcc3e36 100644
--- a/TODO.md
+++ b/TODO.md
@@ -32,3 +32,6 @@
* BUG: when executing queries, the URL in the "http response" section
is not the correct url, it's missing the query parameters.
+
+* Add an OpenSearch document to the root page so that people can add
+ the site as an search engine.
diff --git a/views/data.jade b/views/data.jade
index 948053b..9dd54e4 100644
--- a/views/data.jade
+++ b/views/data.jade
@@ -220,7 +220,13 @@ block error
dt message
dd
if collection.error.message
- | #{collection.error.message}
+ - var lines = collection.error.message.split('\n')
+ if lines.length > 1
+ for line in lines
+ | #{line.replace(/ /g, ' ')}
+ br
+ else
+ | #{collection.error.message}
else
i Not set