Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 1

curlIE is an implementation of a subset of the cURL command line interface in JavaScript using the XMLHttpRequest object in the Microsoft Windows Script Host environment. This tool will help you to retrieve remote files from a DOS prompt or in batch files.

0
 
  0 reviews  |  1 user  |  45 lines of code  |  0 current contributors  |  Analyzed 4 days ago
 
 

This project aims to:Deliver unobtrusive standard-compliant (W3C) cross-browser implementation of the XMLHttpRequest 1.0 object Fix ALL browsers quirks observed in their native XMLHttpRequest object implementations Enable transparent logging of XMLHttpRequest object activity Browser quirks fixed: ... [More] Browser Name Problem description All browsers missing static members (UNSENT, OPENED, HEADERS_RECEIVED, LOADING, DONE) Internet Explorer All / Opera All missing EventTarget interface implementation new Internet Explorermissing native XMLHttpRequest object support Internet Explorer 6.0 memory leak caused by onreadystatechange handler (on-page) Internet Explorer 6.0 memory leak caused by onreadystatechange handler (inter-page) Internet Explorer All connections leakage between pages new Internet Explorer All onreadystatechange wrong execution context Gecko All onreadystatechange wrong execution context Internet Explorer All readystatechange OPENED fired twice Gecko All readystatechange OPENED fired twice Gecko All missing readystatechange calls in synchronous requests Gecko All unnecessary readystatechange DONE call when request aborted Gecko All annoying ">parsererror /<" document for invalid XML documents Internet Explorer All empty documents for invalid XML documents Opera 9.x empty documents for invalid XML documents Internet Explorer 6.0 cached document is not checked against modification date (uncomment in source to use) Internet Explorer All responseXML is not properly initialized for application/xxx+xml responses Safari 3.0 sending document created/modified dynamically chunks serializing Internet Explorer All custom Content-Type overridden when sending XML nodes How To Use: ... ... Known issues:implementation doesn't throw errors on accessing status and statusText properties in an inappropriate moment of time Links to online resourcesXMLHttpRequest object implementation explained [Less]

0
 
  0 reviews  |  1 user  |  209 lines of code  |  0 current contributors  |  Analyzed 3 days ago
 
 

Функциональные возможности:мультипоточность полная поддержка GET и POST запросов раздельная история для каждого потока загрузки веб страниц парсинг и выполнение ... [More] скриптов, линков и стилей подгружаемых в контенте веб страниц аплоад (загрузка на сервер) файлов без перезагрузки препроцессор ответа запроса данных история для кнопок "Назад" и "Вперед" прямые сылки на AJAX запросы веб страниц авто-фильтр якорей - автоматическое преобразование ссылок в АЯКС триггер контента обработчик TITLE ловушка для document.write для каждого потока ускоритель загрузки скриптов - параллельная загрузка с последовательным применением список поддерживаемых счетчиков : Google Analytics, Rating@Mail.ru поддержка событий onload & onunload тега < body > для каждого потока исправлен баг в Опере при использовании setTimeout & setInterval во время Назад/Вперед AJAX навигации по истории две модели запроса HTML страниц - один-к-одному и один-ко-многим возможность включения и отключения коррекции относительных (релятивных) путей (href и src) захват и отработка события window.onload кросс-браузерное проигрывание звуковых файлов использование локального хранилища flash storage реализация include HTML блоков или страниц на стороне клиента Advantages:multithread full support GET and POST request separate history for each thread (for loading of a web pages) parsing and execution of script, link and style tags from loaded content upload file without reload preprocessor data response history for "Back" & "Forward" buttons direct link for AJAX request of HTML auto-filter of anchors - automatic trasformation to AJAX content trigger TITLE processing trap for document.write for every thread accelerate download of scripts - parallel download with serial apply list of support counters : Google Analytics, Rating@Mail.ru support event onload & onunload of tag < body > for every thread Opera bug fixed where setTimeout & setInterval in use Back/Forward AJAX history two models request of HTML pages - one-to-one & one-to-many on & off option for correction relative path (href & src) capture & execute window.onload event cross-browser playing of sound files usage of flash storage include of HTML blocks or pages on client side [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 2 days ago
 
 

xhr

Compare

XML HTTP Request WrapperSimple Javascript Wrapper for the XMLHttpRequest Object. Supports IE5.5+, Firefox 1.0+, Opera, Safari. For IE6- it will use the IE's XMLHttpRequest ActiveX Object and cache the version for faster Instantiation (though it doesn't really matter compared to HTTP ... [More] latency). The HTTP Requests use HTTP/1.1 where available which will persist the TCP connection and reduce the overhead of constructing and destructing the TCP connection for each HTTP Request. By default the requests url encoded GET and POST requests. (ie: it automatically urlencodes the POST data). The Content-Type needs to be overridden if you need to send RAW HTTP POST requests such as XML or Binary Data etc. ExamplesIn these examples, the URL is set to http://example.com. This URL would have to be changed to your domain. You can also use relative URLs. Full Examples can be found in SVN. Send a HTTP Get Request and show the HTTP Response Textnew fiji.xhr('get', 'http://example.com/?param=value', function() { if (this.readyState == 4 && this.status == 200) { alert(this.responseText); } }).send();The callback function is scoped to the XMLHttpRequest Instance so you can use this in the callback function to reference the XHR instance. Send a HTTP POST Request with some URL encoded Datanew fiji.xhr('post', 'http://example.com/', function() { if (this.readyState == 4 && this.status == 200) { alert(this.responseText); } }).send({'param': 'value'});HTTP Polling// fiji.xhr instance var XHR = new fiji.xhr(); // callback function callback = function() { if (this.readyState == 4) { if (this.status == 200) { // poll server every 1/2 seconds setTimeout(function() { XHR.req('post', 'echo.php', callback); XHR.send({'param': 'value'}); }, 500); } else { alert('HTTP Error: '+this.status); } } }; // set the request parameters XHR.req('post', 'http://example.com/', callback); // send initial request XHR.send({'param': 'value'});Send a Different Content-Type// fiji.xhr instance var XHR = new fiji.xhr(); // set the request XHR.req('post', 'http://example.com/', function() { if (this.readyState == 4 && this.status == 200) { alert(this.responseText); } }); // override the request content-type header with an XML content-type XHR.xhr.setRequestHeader("Content-Type", "text/xml"); // send HTTP POST Request with XML body XHR.send('');DownloadsCheckout the latest version from SVN. [Less]

0
 
  0 reviews  |  0 users  |  243 lines of code  |  0 current contributors  |  Analyzed 10 days ago
 
 

IntroductionAgileAjax is a package of javascript files that work independently and in conjunction with Prototype 1.6 or Ext 2.0. AgileAjax is built with a design pattern to maximize flexibility. Leveraging and enhancing the native XHR events it provides a much more stable and usable API. ... [More] DetailsHandles cross browser XHR creation and event delegation. Bundled in an ultra light framework to handle function closures, class inheritance and custom events. Specialized versions for Prototype 1.6 and Ext 2.0. Leading in less new code to incorporate to your project if you're using either framework. Delivers a framework to manage ajax state problems. Such as bookmarking or history(back button issue) [Less]

0
 
  0 reviews  |  0 users  |  5,826 lines of code  |  0 current contributors  |  Analyzed 4 days ago
 
 

ext-basex 4.0 adds several Ajax enhancements to the existing ext-base adapter available in the venerable Extjs (v 2.1 or higher) framework. These include: Synchonous XHR Request support Integral Request Queuing (with named-queues and priorities) Multipart Response Handling Pluggable Form ... [More] encoding support Proxied (JSONP) cross-domain Requests Flickr Sample Global event handlers: request beforesend response exception abort timeout readystatechange beforequeue queue queueempty Ajax request can be made to local filesystems (CD/DVD, etc) Adds Basic HTTP Auth support to requests forEach -- object/array/string iteration additional popular Array.prototype methods (compact,flatten,include,unique,clear,clone,filter,grep,first,last,atRandom) Ext.clone method clones all complex JS types. HTML5 Capabilities detection: Ext.capabilities object (singleton) reports detected browser capabilities: hasActiveX hasXDR hasChromeFrame (Google IE Plugin for Webkit rendering engine) hasFlash hasCookies hasCanvas hasCanvasText hasSVG hasInputAutoFocus hasInputPlaceHolder hasXpath hasWorkers hasOffline hasLocalStorage hasGeoLocation hasAudio hasAudio.testMime (test for specific mime-type Support) hasVideo hasVideo.testCodec (test for specific Codec Support) isEventSupported('load','img') FAQ [Less]

0
 
  0 reviews  |  0 users  |  5,905 lines of code  |  0 current contributors  |  Analyzed 7 days ago
 
 

This project shows, how to make xhr request using javascript.

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed about 10 hours ago
 
 

C# framework for OR Mapping and RESTful AJAX that can provide JSON objects to browsers, XHR, Dojo, Flash, WPF, Silverlight and other client-side UI apps.

0
 
  0 reviews  |  0 users  |  51,449 lines of code  |  0 current contributors  |  Analyzed 9 days ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.