Geert
Geert
Private functions and variables are exposed currently, but they are private for a reason. I think it would be useful to have a flag to suppress them, and maybe consider...
Here a workaround: ``` +++ b/node-server/proxy.js @@ -57,6 +57,11 @@ function proxy(req, res) { // TODO: filter www-header in response? // (currently prompts without authed middleware) + delete req.headers['x-forwarded-for']; +...
There has been a few mentions internally of deployments on servers that didn't allow direct internet access. It is still possible to get it on a server by running most...
``` npm WARN deprecated [email protected]: express 2.x series is deprecated npm WARN deprecated [email protected]: connect 1.x series is deprecated npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher...
Move code from landing control to charts service, and allow callback: ``` - service.top10Chart = function(title, type, xFacet, xLabel, limit) { + service.top10Chart = function(title, type, xFacet, xLabel, limit, callback)...
Internal teams have shifted focus away from Roxy in favor of ml-gradle, and ml-app-deployer that is behind ml-gradle. Roxy is not using management rest api. We (the Roxy dev team)...
Add translate options for built-in templates (including those of ml-search-ng) using angular-translate, provide dynamic locale, and a flag toggle in the header tied to plumbing in rootCtrl.
Sometimes facets are big, and thus slow. To not have them slow down showing of results, you can make mlSearch do separate calls for them. It requires adding something like...
If a backend call for detail or search page fails, it shows the MarkLogic error in the body, but that message does not disappear if you navigate away. You have...
Roxy prints warnings about not being able to connect to MarkLogic, which is obvious if you are about to configure that. The warnings cause the json parse to fail though,...