UNPKG

shubhadownloader

Version:

There is large amount of information available in market place. The markets are always in sync. In today's world investors find it very difficult to make effective use of information available to them. Shubha Downloader is great tool which resolves this problem and helps investor to increase his productivity and stay focused on decision making. Shubha Downloader enable end user to download market data from available sources and organize it. Shubha Downloader is Open source & FREE utility for end users. Shubha Downloader have main features as follows End of the day market data from web to your favorite charting application . Fundamental market data from web to your favorite charting application. Market reports from web to your favorite charting application.

115 lines (91 loc) 2.47 kB
/** * @author Don Griffin * * Simulates an XMLHttpRequest object's methods and properties but is backed by a * {@link Ext.ux.ajax.Simlet} instance that provides the data. */ Ext.define('Ext.ux.ajax.SimXhr', { readyState: 0, mgr: null, simlet: null, constructor: function (config) { var me = this; Ext.apply(me, config); me.requestHeaders = {}; }, abort: function () { var me = this; if (me.timer) { clearTimeout(me.timer); me.timer = null; } me.aborted = true; }, getAllResponseHeaders: function () { var headers = []; Ext.Object.each(this.responseHeaders, function (name, value) { headers.push(name + ': ' + value); }); return headers.join('\x0d\x0a'); }, getResponseHeader: function (header) { var headers = this.responseHeaders; return (headers && headers[header]) || null; }, open: function (method, url, async, user, password) { var me = this; me.method = method; me.url = url; me.async = async !== false; me.user = user; me.password = password; me.setReadyState(1); }, overrideMimeType: function (mimeType) { this.mimeType = mimeType; }, schedule: function () { var me = this; me.timer = setTimeout(function () { me.onTick(); }, me.mgr.delay); }, send: function (body) { var me = this; me.body = body; if (me.async) { me.schedule(); } else { me.onComplete(); } }, setReadyState: function (state) { var me = this; if (me.readyState != state) { me.readyState = state; me.onreadystatechange(); } }, setRequestHeader: function (header, value) { this.requestHeaders[header] = value; }, // handlers onreadystatechange: Ext.emptyFn, onComplete: function () { var me = this, callback; me.readyState = 4; Ext.apply(me, me.simlet.exec(me)); callback = me.jsonpCallback; if (callback) { var text = callback + '(' + me.responseText + ')'; eval(text); } }, onTick: function () { var me = this; me.timer = null; me.onComplete(); me.onreadystatechange(); } });