Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Enable the appropriate path to use to resolve an item handle restReport.js.  (Depends on https://github.com/DSpace/DSpace/pull/1366/files)

Code Block
languagejs
titleItem Handle Resolution
    this.ROOTPATH = "/xmlui/handle/"
    //this.ROOTPATH = "/jspui/handle/"
    //this.ROOTPATH = "/handle/"

Enable User Authentication (Password AuthN only) for REST reports.

Override the following function in your report file to enable/disable password AuthN for the REST reports.  (Depends on https://github.com/DSpace/DSpace/pull/1369)

Code Block
languagejs
titleEnable/Disable Password AuthN
	//disable this setting if 



...

Password Authentication is not supported
	this.makeAuthLink = function(){return true;};

 

Configure the database-specific format for a regex expression

...