Severyn Kozak
742cebe7c5
Merge branch 'master' into add-logging#8
...
README.md
-Pull in the updated README.
10 years ago
Severyn Kozak
1ce9f1bb05
Shotgun edits to the README.
...
README.md
-Edit a bunch of unrelated things... sorry. ;)
-Condense the documentation of different `npm run`nable commands
to one list.
-Remove the note about Travis, since that applies to virtually
all the Pelias repos and is documented elsewhere.
-Point the API docs hyperlink to `DOCS.md`.
10 years ago
Severyn Kozak
877e1e90a5
Add an access log middleware.
...
middleware/access_log.js, package.json
-Add middleware for printing out access logs.
-Add necessary dependencies.
10 years ago
Severyn Kozak
d0dd39257b
package.json: remove `npm run coverage` from `npm test`.
...
There isn't any point in regenerating coverage reports after every test
run.
10 years ago
Severyn Kozak
98a0a33256
Merge branch 'master' into boost-exact-matches#5
...
Pull in the latest of master.
Conflicts:
query/reverse.js
query/sort.js
10 years ago
Diana Shkolnikov
e5a1d12ced
Merge pull request #117 from pelias/better-bbox-desc
...
Better way of describing bbox param
10 years ago
Severyn Kozak
f27df8b5c5
Return error message if string.
...
middleware/500.js
-cf1a483 changed the middleware to return an opaque error
message rather than the error object itself, in case it contains
sensitive information. The problem is that some sanitizers
return a helpful error message (intended to be seen by users) as
a string. Add a conditional to only return the ambiguous,
catchall error message when a non-string `err` object is
received -- this will likely be a stack trace, or something.
10 years ago
Diana Shkolnikov
e3cdda9778
ugh another comment fix
10 years ago
Diana Shkolnikov
6ae1a4f7df
fix comments and tests
10 years ago
Severyn Kozak
f72ed2a6bd
Merge pull request #106 from pelias/category-scoring
...
category scoring [WIP]
10 years ago
Diana Shkolnikov
7c81c56cf3
Fix bbox comment
10 years ago
Diana Shkolnikov
8ac17d0cb2
Fix bbox parsing
10 years ago
Diana Shkolnikov
aeb7e3b0e7
Merge branch 'master' into better-bbox-desc
10 years ago
Severyn Kozak
b70ebb1d95
helper/category_weights.js: add a documentation comment.
10 years ago
Severyn Kozak
da61a713be
Increase weights for airports.
...
helper/category_weights.js
-This should now make a record like "Newark Airport" appear
above, say, "Newark Airport Station".
10 years ago
Diana Shkolnikov
d8ac05ea65
Merge pull request #103 from pelias/address-details
...
Detail Param
10 years ago
Diana Shkolnikov
8c22f33dc7
Add details sanitizer to suggest/coarse
10 years ago
Diana Shkolnikov
3fef192c68
Update doc
10 years ago
Harish Krishna
30466377ab
bbox string is a standard way of passing around bbox description over a web req. Its important we document it well.
10 years ago
Diana Shkolnikov
a728bf53b5
Merge branch 'master' into address-details
10 years ago
Diana Shkolnikov
e146829618
Merge pull request #115 from pelias/reverse-categories
...
Reverse categories
10 years ago
Harish Krishna
e1ddcbb93f
Merge pull request #116 from pelias/runtime-error-reporting#114
...
Resolve #114 : report runtime errors.
10 years ago
Severyn Kozak
cf1a483ede
Don't report full errors in API results.
...
middleware/500.js
-Return a generic error message rather than stringified error
object in API results.
10 years ago
Severyn Kozak
17bb6db6e5
Resolve #114 : report runtime errors.
...
middleware/500.js
-Add code to the 500 catchall middleware to report errors to
stdout/stderr.
-Also, stringify the error via `.toString()` before passing it
to `res.json()`, since otherwise an empty object appears to be
returned.
10 years ago
Diana Shkolnikov
0d07c38b06
add to README
10 years ago
Diana Shkolnikov
4d0c23e742
remove code-climate hooks
10 years ago
Diana Shkolnikov
5101d802ab
remove code-climate hooks
10 years ago
Diana Shkolnikov
7b5a2fafb9
Change query to use `terms` and add code coverage stats
10 years ago
Diana Shkolnikov
1bf0fcd298
Add categories param to /reverse
10 years ago
Diana Shkolnikov
ffc19457a4
Merge pull request #108 from pelias/better-index-page
...
Better API index page
10 years ago
Diana Shkolnikov
45ba29cc54
Add categories param to /reverse
10 years ago
Severyn Kozak
29838e5b8c
Move code that needs to run only once.
...
controller/index.js
-Move all of the index page HTML "initialization" code that only
needs to run once, like markdown compilation and `style`
prepending, out of the request handler.
10 years ago
Diana Shkolnikov
99ee2d95a3
Change to readFileSync and update test to use proxyquire
10 years ago
Diana Shkolnikov
4f1b75ce94
Fix test name
10 years ago
Diana Shkolnikov
1d45b20268
Load markdown file into memory and check if client requested html
10 years ago
Severyn Kozak
5b389833bd
Test a sort() call with a params object without an input.
...
See https://github.com/pelias/api/pull/113/files#r28972709 .
10 years ago
Severyn Kozak
f477db140a
Pass params to sort(), addressing https://github.com/pelias/api/pull/113#discussion_r28972496 .
10 years ago
Severyn Kozak
f9670bf7e4
Use is-object, addressing https://github.com/pelias/api/pull/113/files#r28972145 .
10 years ago
Severyn Kozak
d7c4409e20
Fix failing tests.
...
test/unit/query/(search, sort).js
-Fix the tests that started failing as a result of 144b72c
.
10 years ago
Severyn Kozak
144b72cb16
Boost results with exact text matches when _score ties.
...
query/sort.js
-Use the elasticsearch script introduced in
https://github.com/pelias/scripts/pull/7 to boost results with
exact text matches when documents' `_score`s are tied.
-Make `query/sort` export a function that creates the `sort`
query component, rather than the query component as a singleton,
to allow it to optionally add the exact-match script (that is,
when an `input` is present in `params`).
10 years ago
Harish Krishna
34a168060a
Merge pull request #107 from pelias/fix-error-msg
...
Layers be layers not layer (typo in the error message)
10 years ago
Harish Krishna
c2f7410916
Merge pull request #109 from pelias/fix-coarse
...
[Major bug fix] using coarse sanitizer for the coarse endpoint
10 years ago
Harish Krishna
14c718bf1c
passing in an object (req.clean) instead of a boolean. Plus updated test
10 years ago
Harish Krishna
fdb0d939bb
simplifying logic: replacing the complicated ternary statement with an if statement
10 years ago
Harish Krishna
176f580215
using is-object
10 years ago
Grant Heffernan
1fc624c957
DOCS update
10 years ago
Grant Heffernan
22d235907d
fix bbox italics in DOCS
10 years ago
Grant Heffernan
83dbdc7d41
DOCS formatting
10 years ago
Grant Heffernan
9e7e1455b5
a bit more DOCS cleanup
10 years ago
Grant Heffernan
6bff821c53
standardize some DOCS language, fix indentation
10 years ago