diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2012-07-18 23:26:04 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2012-07-18 23:26:04 +0200 |
commit | 231ce0c27918fa63089f70fbdefab1d57f7374b2 (patch) | |
tree | 5c735758161c7188fc7105a769902e979760309f | |
parent | 919af48c9db5bd53149cb9d9e23378282d1ac9ce (diff) | |
download | collection-json-explorer-231ce0c27918fa63089f70fbdefab1d57f7374b2.tar.gz collection-json-explorer-231ce0c27918fa63089f70fbdefab1d57f7374b2.tar.bz2 collection-json-explorer-231ce0c27918fa63089f70fbdefab1d57f7374b2.tar.xz collection-json-explorer-231ce0c27918fa63089f70fbdefab1d57f7374b2.zip |
o Better formatting of error messages.
-rw-r--r-- | TODO.md | 3 | ||||
-rw-r--r-- | views/data.jade | 8 |
2 files changed, 10 insertions, 1 deletions
@@ -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 |