This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
/*Start of developer.mozilla.org Polyfill*/ | |
/*WARNING FOR SERVER SIDE JAVASCRIPT IN XPAGES: http://xomino.com/2014/03/02/prototypal-inheritance-of-ssjs-across-the-whole-server-in-xpages/ http://stackoverflow.com/questions/26695434/how-to-clean-ssjs-in-domino-server-after-someone-used-javascript-*/ | |
/* | |
* Polyfill: | |
Array.isArray | |
Array.prototype.indexOf | |
Array.prototype.lastIndexOf | |
Array.prototype.forEach | |
Array.prototype.some |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Simple JavaScript Inheritance with NFE's | |
* MIT Licensed. | |
*/ | |
// Inspired by base2 and Prototype and John Resig's class system | |
(function(){ | |
var initializing = false; | |
// The base Class implementation (does nothing) | |
this.Class = function(){}; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Class HttpRequest | |
'############################################################## | |
'## ## | |
'## A class to simplify fetching parameters from Post/Get-requests ## | |
'## The class also supports fetching cookies from a request ## | |
'## ## | |
'## Example of use: ## | |
'## Dim request As New HttpRequest ## | |
'## ## |
NewerOlder