Skip to content
This repository has been archived by the owner on Oct 5, 2020. It is now read-only.

server.js should honor Content-Disposition and pass-through header #67

Closed
garyvidal opened this issue Jan 16, 2015 · 13 comments
Closed
Assignees
Labels
Milestone

Comments

@garyvidal
Copy link

When using rest extensions, the server.js should honor a request with Content-Disposition and forward it as a header back to application

To resolve issue

      //If the file is a download then set the header to passthrough
      if(response.headers["content-disposition"]) {
          res.header("Content-Disposition",response.headers["content-disposition"]);
      }  
@grtjn
Copy link
Contributor

grtjn commented Jan 16, 2015

I think I would vote for a more generic solution in which request and response are passed through entirely, maybe even as-is if possible.

I have successfully used the piping features of the 'request' module. Most essential part would be replacing the existing proxy function with:

  function proxy(req, res) {
    var queryString = req.originalUrl.split('?')[1];
    var mlOptions = {
      method: req.method,
      uri: 'http://' + options.mlHost + ':' + options.mlPort + req.path + (queryString ? '?' + queryString : ''),
      headers: req.headers,
      auth: getAuth(options, req.session)
    };
    try {
      //console.log(req.body + '');
      req.pipe(request(mlOptions)).pipe(res);
    } catch (e) {
      console.log(e);
      res.status(500).send('internal error');
    }
  }

@joemfb
Copy link
Contributor

joemfb commented Jan 20, 2015

I like the proxy-ing approach as well. Much nicer to avoid the low-level request wrangling the current approach requires ...

@grtjn
Copy link
Contributor

grtjn commented Jan 21, 2015

I heard there is a new node module that can do proxying: gulp-webserver. I think it is worth looking into..

@withjam
Copy link

withjam commented Jan 21, 2015

Also check out a module 'http-proxy'. I have used it in a couple of projects and swapped it in OBI as well. It's very easy to setup and lets you proxy websockets as well. It looks like this:

var httpProxy = require('http-proxy');
var mlProxy = httpProxy.createProxyServer( { target: dbUrl } );

function proxy(req, res) {
req.headers.Authorization = getAuth(appConfig, req.session);
mlProxy.web(req,res); // this handles the multipart parsing and everything
}

@grtjn
Copy link
Contributor

grtjn commented Jan 22, 2015

So as a replacement for 'http' we have:

  • request
  • gulp-webserver
  • http-proxy

Which makes most sense? I believe request was able to replace http entirely. Does that also apply to gulp-webserver and http-proxy? Can anyone tell?

@joemfb
Copy link
Contributor

joemfb commented Jan 22, 2015

I used request here: https://github.com/joemfb/mlpm-registry/blob/master/server.js#L67 (see the proxyConfig and proxy functions. I like that flexibility over just using a proxy implementation.

@grtjn
Copy link
Contributor

grtjn commented Feb 16, 2015

Somewhat related to #31

@grtjn
Copy link
Contributor

grtjn commented Feb 25, 2015

Bitten by the current proxy code again while trying to PUT binary to MarkLogic. I'll move forward to using request. @joemfb I'll take a look at your server.js. Do you think it could be (almost) a drop-in replacement?

@joemfb
Copy link
Contributor

joemfb commented Feb 25, 2015

The latest version has been change pretty drastically, but an early version is mostly drop-in: https://github.com/joemfb/mlpm-registry/blob/36430c3207559a32d89cfc2c7669a116c539ebab/server.js

You'll need to remove the route handler for /v1/resources/publish (line 158), and replace application/zip (lines 32, 72) with the mimetype you'll be using for your binary.

@grtjn
Copy link
Contributor

grtjn commented Feb 25, 2015

Mimetype? I didn't need that myself. Ah, I guess that was because I got rid of the bodyParser. Didn't see the point of using that.. :)

@grtjn
Copy link
Contributor

grtjn commented Apr 10, 2015

Just wanted to mention @withjam created an mlProxy component for this. Maybe ask if that would be easy to integrate, and whether it is available as dependency.

@grtjn grtjn modified the milestone: 0.2.0 Sep 8, 2015
@grtjn
Copy link
Contributor

grtjn commented Sep 8, 2015

Looks like this still applies..

@grtjn
Copy link
Contributor

grtjn commented Sep 9, 2015

Simplest way out for now is to just copy all headers by default. Looking into that..

@grtjn grtjn self-assigned this Sep 9, 2015
@grtjn grtjn added the bug label Sep 9, 2015
grtjn added a commit to grtjn/slush-marklogic-node that referenced this issue Sep 9, 2015
…ty#176: minor changes to proxying to smoothen things a bit
grtjn added a commit to grtjn/slush-marklogic-node that referenced this issue Sep 9, 2015
…ty#176: minor changes to proxying to smoothen things a bit
grtjn added a commit to grtjn/slush-marklogic-node that referenced this issue Sep 16, 2015
…ty#176: minor changes to proxying to smoothen things a bit
@grtjn grtjn closed this as completed in 67ded4c Sep 16, 2015
grtjn added a commit that referenced this issue Sep 16, 2015
Fixed #31,#67,#176: minor changes to proxying to smoothen things a bit
janmichaelyu added a commit to janmichaelyu/slush-marklogic-node that referenced this issue Sep 24, 2015
Similar Items is a simple directive that calls the extsimilar custom endpoint.

Merge pull request marklogic-community#123 from bluetorch/similar-items

Similar items

updating to latest bower dependencies
fixing failing vet

making things version agnostic

Merge pull request marklogic-community#122 from paxtonhare/update-bower-deps-again

updating to latest bower dependencies

updating css designs. adding separate files. added classes to the root and search files

Merge branch 'master' of https://github.com/marklogic/slush-marklogic-node

Merge pull request marklogic-community#121 from jenbreese/master

updating css designs. adding separate files. added classes to the roo…

Increased version number

Add snippet size control

marklogic-community#130 Address PR comment, now use ctrl.

marklogic-community#130 Only use the URI as the search result title. Further discussion to come

Merge pull request marklogic-community#130 from mariannemyers/snippet-size

Add snippet size control

Move login out as service and add httpintercept for login prompt

Make login a POST, instead of a GET request

Make adjustments for the top-right login option

Add user directive and service changes for login

Don't allow params to build when linking from the homepage

Make sure redirects happen for top-right and modal

Merge pull request marklogic-community#127 from ryanjdew/login-service

Move login out as service and add httpintercept for login prompt

Providing scripts/docs to run app as service

Merge pull request marklogic-community#129 from bluetorch/run-as-service

Providing scripts/docs to run app as service

Fix user tests to reflect login service changes

Merge pull request marklogic-community#150 from ryanjdew/user-tests

Fix user tests to reflect login service changes

Update installation instructions in README

Fixes marklogic-community#89 by adding Ruby to the list of dependencies

Also, add some Windows-specific Roxy commands, which I discovered while
working with an SE

Also, changed the documentation for `gulp serve-dev` to use the command
line options rather than changes to the gulpfile itself, assuming we fix
this as described in marklogic-community#135. We will need to revisit this documentation if
we create a single-point-of-information as described in marklogic-community#151

Merge pull request marklogic-community#154 from patrickmcelwee/readme_installation

Update installation instructions in README

Prompts for ports and overwrites in gulp.config.js and
node-express-service. Also fixes files to properly look at gulp.config.js

Merge pull request marklogic-community#113 from hunterwilliams/port-specification

Allow ports to be specified via prompts. marklogic-community#103

Added negated facets in by default. Added new version of ml-search-ng to
bower.json and included the less file in main.less

Merge pull request marklogic-community#125 from hunterwilliams/negated-facet-support

Allow negated facets to work

Adds MarkLogic's newest favicon and adds it to index.html

Merge pull request marklogic-community#155 from hunterwilliams/favicon

Adds a favicon and adds it to index.html

Do not ask for appname twice

Fixes marklogic-community#133

Also, make it optional on the command line

Merge pull request marklogic-community#153 from patrickmcelwee/do_not_ask_for_appname_twice

Do not ask for appname twice

Fixed marklogic-community#84: minor patch for analyze-data to support JSON

Merge pull request marklogic-community#173 from grtjn/84-analyze-json

Fixed marklogic-community#84: minor patch for analyze-data to support JSON

Fixed marklogic-community#148: stub mlpm.json to make mlpm install slightly easier

Merge pull request marklogic-community#164 from grtjn/148-mlpm-json

Fixed marklogic-community#148: stub mlpm.json to make mlpm install slightly easier

Added generated CHANGELOG

Fixed marklogic-community#144: fixed issue with add/remove tags on create page

Merge pull request marklogic-community#166 from grtjn/144-fix-tags

Fixed marklogic-community#144: fixed issue with add/remove tags on create page

Changed sample docs out for a sample zip. Changed instructions in readme
on how to load

Changed mlcp commands to add collections/perms as well as use options file

Updated relevant content in main readme.mdown. Also fixed doc count/extra
instruction. Also fix options for proper naming/permissions

Emphasized the app-role change necessity and added command to find it

Better data distribution. More eyeColors/fruits

Merge pull request marklogic-community#157 from hunterwilliams/more-sample-docs

Added more sample docs

Fixed marklogic-community#85: added robots.txt

Merge pull request marklogic-community#172 from grtjn/85-robots-txt

Fixed marklogic-community#85: added robots.txt

Fixed marklogic-community#147: added similar sidebar to esri details, synched presentation between esri/no-esri

Merge pull request marklogic-community#165 from grtjn/147-similar-esri

Fixed marklogic-community#147: added similar sidebar to esri details, synched presentation between esri/no-esri

Fixes marklogic-community#160: added collection facet, added comments, removed verbose search: prefix

Merge pull request marklogic-community#163 from grtjn/160-collection-facet

Fixes marklogic-community#160: added collection facet, added comments, removed verbose search: prefix

Updated CHANGELOG

Added no-cache headers to requests on get/post/put & login/user status
calls

Moved nocache into function and added legacy nocache headers

Merge pull request marklogic-community#158 from hunterwilliams/no-cache

No Cache Requests

Made it so that search options query on data collection, similar docs only
look in similar collections, and docs created go into the correct collections

Merge pull request marklogic-community#162 from hunterwilliams/data-search

Made it so that search options query on data collection, similar docs…

Fixed marklogic-community#135: handle app-port arg properly, only open debug port when debug flag

Merge pull request marklogic-community#170 from grtjn/135-gulp-app-port

Fixed marklogic-community#135: handle app-port arg properly, only open debug port when debug flag

fixed issue marklogic-community#149 and marklogic-community#142. also removed the extra spacing on the login page.

fixing the colors for all designs per bug marklogic-community#171

adding the missing logo for marklogic-community#156

removed the powered by that did not fit the design standards from Marketing marklogic-community#156

removed the powered by in the footer because the logo cannot be on a dark background per design standards

Merge pull request marklogic-community#174 from jenbreese/master

fixed issue marklogic-community#149 and marklogic-community#142.

Fixed lint error and made tag test work properly

Merge pull request marklogic-community#179 from hunterwilliams/create-controller-fix

CreateController - Fixed lint error and made tag test work properly

removing the redunant unused style and adding height marklogic-community#156

Merge pull request marklogic-community#181 from jenbreese/master

removing the redunant unused style and adding height marklogic-community#156

Adds app name to session variable. Slushfile now replaces `@sample-app`

Moved replace to correct package.json

Generate a uuid for secret each slush generation

Synched verions in json, made them private, added replacing title to index
and another json

Merge pull request marklogic-community#180 from hunterwilliams/app-secret

Fixes marklogic-community#64 - App secret

updating the chiclets to show an icon with ban/add

minor edit to marklogic-community#182 to put back the default design

Merge pull request marklogic-community#182 from jenbreese/master

updating the chiclets to show an icon with ban/add

changing the layout for tags marklogic-community#144

Merge pull request marklogic-community#186 from jenbreese/master

changing the layout for tags marklogic-community#144

Made it so that the emails can't be added if blank and that they add on
submission if not pressed + button

@grtjn suggested changes

Merge pull request marklogic-community#183 from hunterwilliams/email-fix

Fixes marklogic-community#145

# This is a combination of 9 commits.
# The first commit's message is:
Made it so gulpfile will be able to handle different env serve

# This is the 2nd commit message:

Made it look for json properties

# This is the 3rd commit message:

added writing gulp-local.json. Added to ignore file

# This is the 4th commit message:

removed configuring node service

# This is the 5th commit message:

Updated readme to reflect new commands for gulp serve-*

# This is the 6th commit message:

Made it so that local.properties is written with ports vs build.properties

# This is the 7th commit message:

Changed path of file to be in root. Also made it ask for host

# This is the 8th commit message:

Made it so undefined error won't pop up. Also changed message

# This is the 9th commit message:

Changed ml-port to ml-http-port. Also made it so it doesn't need xccport
for ml8

Made gulp use a gulp-{env}.json file and added choosing the hostname to
install process. Also took advantage of ml8 optimization not to need an
XCC server when using roxy

Merge pull request marklogic-community#185 from hunterwilliams/seperate-config

marklogic-community#151 Single Config

Fixed marklogic-community#67,marklogic-community#176: minor changes to proxying to smoothen things a bit

Merge pull request marklogic-community#177 from grtjn/31-67-176-proxy

Fixed marklogic-community#31,marklogic-community#67,marklogic-community#176: minor changes to proxying to smoothen things a bit

Moves over status check from userservice to loginservice. Does not resolve
promise before variable is needed currently

Made it so userservice will properly ask loginservice to check if logged
in. Still have issue with loginservice not getting is authenticated in
time..

Fixes getting logged in before page load. Breaks stopping requests quickly

Merge remote-tracking branch 'upstream/master' into login-status-fix

Protected root.search by default....

Fixed login test

Added comment and removed console.warn

Merge branch 'master' into login-status-fix

Merge pull request marklogic-community#168 from hunterwilliams/login-status-fix

marklogic-community#141 PR - Login Service Changes/Fix

Undoing show-more change, see marklogic-community#137

Merge pull request marklogic-community#190 from grtjn/137-disable-show-more

Undoing show-more change, see marklogic-community#137

Fixed marklogic-community#193: show result.label if exists

Get ahead of ml-search-ng release for label support.

Merge pull request marklogic-community#196 from marklogic/193-result-label

Fixed marklogic-community#193: show result.label if exists

Fixed marklogic-community#195: typo in MLCP command

Merge pull request marklogic-community#198 from marklogic/195-mlcp-typo

Fixed marklogic-community#195: typo in MLCP command

Fixed marklogic-community#195: typo in MLCP command

Merge pull request marklogic-community#199 from marklogic/195-mlcp-typo-1

Fixed marklogic-community#195: typo in MLCP command

Fixed typo in PR for marklogic-community#195

Merge pull request marklogic-community#202 from marklogic/fixed-typo-for-195

Fixed typo in PR for marklogic-community#193

Removed using deprecated express send method

Merge pull request marklogic-community#204 from hunterwilliams/deprecated-express

marklogic-community#201 Removed using deprecated express send method

Binary corruption fix in gulp replace

Merge pull request marklogic-community#203 from hunterwilliams/binary-corruption

marklogic-community#194 Binary corruption fix in gulp replace

Made it so that app-user and admin-user now live in local.json and are
respected within node

Fixed using gulp-local.json to local.json

Made admin password blank by default and adds message

Merge pull request marklogic-community#192 from hunterwilliams/user-fix

marklogic-community#191 Users in local.json fix

Fixed details page to display xml and json data when applicable.

Adding details page that handles xml, json.

fixed angular dependency

changed look of tabsets to pills, added bottom margin, changed font family in xml to monospace
janmichaelyu added a commit to janmichaelyu/slush-marklogic-node that referenced this issue Sep 24, 2015
Similar Items is a simple directive that calls the extsimilar custom endpoint.

Merge pull request marklogic-community#123 from bluetorch/similar-items

Similar items

updating to latest bower dependencies
fixing failing vet

making things version agnostic

Merge pull request marklogic-community#122 from paxtonhare/update-bower-deps-again

updating to latest bower dependencies

updating css designs. adding separate files. added classes to the root and search files

Merge branch 'master' of https://github.com/marklogic/slush-marklogic-node

Merge pull request marklogic-community#121 from jenbreese/master

updating css designs. adding separate files. added classes to the roo…

Increased version number

Add snippet size control

marklogic-community#130 Address PR comment, now use ctrl.

marklogic-community#130 Only use the URI as the search result title. Further discussion to come

Merge pull request marklogic-community#130 from mariannemyers/snippet-size

Add snippet size control

Move login out as service and add httpintercept for login prompt

Make login a POST, instead of a GET request

Make adjustments for the top-right login option

Add user directive and service changes for login

Don't allow params to build when linking from the homepage

Make sure redirects happen for top-right and modal

Merge pull request marklogic-community#127 from ryanjdew/login-service

Move login out as service and add httpintercept for login prompt

Providing scripts/docs to run app as service

Merge pull request marklogic-community#129 from bluetorch/run-as-service

Providing scripts/docs to run app as service

Fix user tests to reflect login service changes

Merge pull request marklogic-community#150 from ryanjdew/user-tests

Fix user tests to reflect login service changes

Update installation instructions in README

Fixes marklogic-community#89 by adding Ruby to the list of dependencies

Also, add some Windows-specific Roxy commands, which I discovered while
working with an SE

Also, changed the documentation for `gulp serve-dev` to use the command
line options rather than changes to the gulpfile itself, assuming we fix
this as described in marklogic-community#135. We will need to revisit this documentation if
we create a single-point-of-information as described in marklogic-community#151

Merge pull request marklogic-community#154 from patrickmcelwee/readme_installation

Update installation instructions in README

Prompts for ports and overwrites in gulp.config.js and
node-express-service. Also fixes files to properly look at gulp.config.js

Merge pull request marklogic-community#113 from hunterwilliams/port-specification

Allow ports to be specified via prompts. marklogic-community#103

Added negated facets in by default. Added new version of ml-search-ng to
bower.json and included the less file in main.less

Merge pull request marklogic-community#125 from hunterwilliams/negated-facet-support

Allow negated facets to work

Adds MarkLogic's newest favicon and adds it to index.html

Merge pull request marklogic-community#155 from hunterwilliams/favicon

Adds a favicon and adds it to index.html

Do not ask for appname twice

Fixes marklogic-community#133

Also, make it optional on the command line

Merge pull request marklogic-community#153 from patrickmcelwee/do_not_ask_for_appname_twice

Do not ask for appname twice

Fixed marklogic-community#84: minor patch for analyze-data to support JSON

Merge pull request marklogic-community#173 from grtjn/84-analyze-json

Fixed marklogic-community#84: minor patch for analyze-data to support JSON

Fixed marklogic-community#148: stub mlpm.json to make mlpm install slightly easier

Merge pull request marklogic-community#164 from grtjn/148-mlpm-json

Fixed marklogic-community#148: stub mlpm.json to make mlpm install slightly easier

Added generated CHANGELOG

Fixed marklogic-community#144: fixed issue with add/remove tags on create page

Merge pull request marklogic-community#166 from grtjn/144-fix-tags

Fixed marklogic-community#144: fixed issue with add/remove tags on create page

Changed sample docs out for a sample zip. Changed instructions in readme
on how to load

Changed mlcp commands to add collections/perms as well as use options file

Updated relevant content in main readme.mdown. Also fixed doc count/extra
instruction. Also fix options for proper naming/permissions

Emphasized the app-role change necessity and added command to find it

Better data distribution. More eyeColors/fruits

Merge pull request marklogic-community#157 from hunterwilliams/more-sample-docs

Added more sample docs

Fixed marklogic-community#85: added robots.txt

Merge pull request marklogic-community#172 from grtjn/85-robots-txt

Fixed marklogic-community#85: added robots.txt

Fixed marklogic-community#147: added similar sidebar to esri details, synched presentation between esri/no-esri

Merge pull request marklogic-community#165 from grtjn/147-similar-esri

Fixed marklogic-community#147: added similar sidebar to esri details, synched presentation between esri/no-esri

Fixes marklogic-community#160: added collection facet, added comments, removed verbose search: prefix

Merge pull request marklogic-community#163 from grtjn/160-collection-facet

Fixes marklogic-community#160: added collection facet, added comments, removed verbose search: prefix

Updated CHANGELOG

Added no-cache headers to requests on get/post/put & login/user status
calls

Moved nocache into function and added legacy nocache headers

Merge pull request marklogic-community#158 from hunterwilliams/no-cache

No Cache Requests

Made it so that search options query on data collection, similar docs only
look in similar collections, and docs created go into the correct collections

Merge pull request marklogic-community#162 from hunterwilliams/data-search

Made it so that search options query on data collection, similar docs…

Fixed marklogic-community#135: handle app-port arg properly, only open debug port when debug flag

Merge pull request marklogic-community#170 from grtjn/135-gulp-app-port

Fixed marklogic-community#135: handle app-port arg properly, only open debug port when debug flag

fixed issue marklogic-community#149 and marklogic-community#142. also removed the extra spacing on the login page.

fixing the colors for all designs per bug marklogic-community#171

adding the missing logo for marklogic-community#156

removed the powered by that did not fit the design standards from Marketing marklogic-community#156

removed the powered by in the footer because the logo cannot be on a dark background per design standards

Merge pull request marklogic-community#174 from jenbreese/master

fixed issue marklogic-community#149 and marklogic-community#142.

Fixed lint error and made tag test work properly

Merge pull request marklogic-community#179 from hunterwilliams/create-controller-fix

CreateController - Fixed lint error and made tag test work properly

removing the redunant unused style and adding height marklogic-community#156

Merge pull request marklogic-community#181 from jenbreese/master

removing the redunant unused style and adding height marklogic-community#156

Adds app name to session variable. Slushfile now replaces `@sample-app`

Moved replace to correct package.json

Generate a uuid for secret each slush generation

Synched verions in json, made them private, added replacing title to index
and another json

Merge pull request marklogic-community#180 from hunterwilliams/app-secret

Fixes marklogic-community#64 - App secret

updating the chiclets to show an icon with ban/add

minor edit to marklogic-community#182 to put back the default design

Merge pull request marklogic-community#182 from jenbreese/master

updating the chiclets to show an icon with ban/add

changing the layout for tags marklogic-community#144

Merge pull request marklogic-community#186 from jenbreese/master

changing the layout for tags marklogic-community#144

Made it so that the emails can't be added if blank and that they add on
submission if not pressed + button

@grtjn suggested changes

Merge pull request marklogic-community#183 from hunterwilliams/email-fix

Fixes marklogic-community#145

# This is a combination of 9 commits.
# The first commit's message is:
Made it so gulpfile will be able to handle different env serve

# This is the 2nd commit message:

Made it look for json properties

# This is the 3rd commit message:

added writing gulp-local.json. Added to ignore file

# This is the 4th commit message:

removed configuring node service

# This is the 5th commit message:

Updated readme to reflect new commands for gulp serve-*

# This is the 6th commit message:

Made it so that local.properties is written with ports vs build.properties

# This is the 7th commit message:

Changed path of file to be in root. Also made it ask for host

# This is the 8th commit message:

Made it so undefined error won't pop up. Also changed message

# This is the 9th commit message:

Changed ml-port to ml-http-port. Also made it so it doesn't need xccport
for ml8

Made gulp use a gulp-{env}.json file and added choosing the hostname to
install process. Also took advantage of ml8 optimization not to need an
XCC server when using roxy

Merge pull request marklogic-community#185 from hunterwilliams/seperate-config

marklogic-community#151 Single Config

Fixed marklogic-community#67,marklogic-community#176: minor changes to proxying to smoothen things a bit

Merge pull request marklogic-community#177 from grtjn/31-67-176-proxy

Fixed marklogic-community#31,marklogic-community#67,marklogic-community#176: minor changes to proxying to smoothen things a bit

Moves over status check from userservice to loginservice. Does not resolve
promise before variable is needed currently

Made it so userservice will properly ask loginservice to check if logged
in. Still have issue with loginservice not getting is authenticated in
time..

Fixes getting logged in before page load. Breaks stopping requests quickly

Merge remote-tracking branch 'upstream/master' into login-status-fix

Protected root.search by default....

Fixed login test

Added comment and removed console.warn

Merge branch 'master' into login-status-fix

Merge pull request marklogic-community#168 from hunterwilliams/login-status-fix

marklogic-community#141 PR - Login Service Changes/Fix

Undoing show-more change, see marklogic-community#137

Merge pull request marklogic-community#190 from grtjn/137-disable-show-more

Undoing show-more change, see marklogic-community#137

Fixed marklogic-community#193: show result.label if exists

Get ahead of ml-search-ng release for label support.

Merge pull request marklogic-community#196 from marklogic/193-result-label

Fixed marklogic-community#193: show result.label if exists

Fixed marklogic-community#195: typo in MLCP command

Merge pull request marklogic-community#198 from marklogic/195-mlcp-typo

Fixed marklogic-community#195: typo in MLCP command

Fixed marklogic-community#195: typo in MLCP command

Merge pull request marklogic-community#199 from marklogic/195-mlcp-typo-1

Fixed marklogic-community#195: typo in MLCP command

Fixed typo in PR for marklogic-community#195

Merge pull request marklogic-community#202 from marklogic/fixed-typo-for-195

Fixed typo in PR for marklogic-community#193

Removed using deprecated express send method

Merge pull request marklogic-community#204 from hunterwilliams/deprecated-express

marklogic-community#201 Removed using deprecated express send method

Binary corruption fix in gulp replace

Merge pull request marklogic-community#203 from hunterwilliams/binary-corruption

marklogic-community#194 Binary corruption fix in gulp replace

Made it so that app-user and admin-user now live in local.json and are
respected within node

Fixed using gulp-local.json to local.json

Made admin password blank by default and adds message

Merge pull request marklogic-community#192 from hunterwilliams/user-fix

marklogic-community#191 Users in local.json fix

Fixed details page to display xml and json data when applicable.

Adding details page that handles xml, json.

fixed angular dependency

changed look of tabsets to pills, added bottom margin, changed font family in xml to monospace
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

4 participants