Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 5741

Show
Ignore:
Timestamp:
12/18/06 21:02:13 (2 years ago)
Author:
madrobby
Message:

Prototype: * Remove support for HTTP authorization in Ajax calls introduced with #6366. Closes #6638 [jmecham]. This fixes a regression issue where Safari wouldnt work with sites that use HTTP authorization schemes, plus it never really worked in the first place-- see #6638 for discussion.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • spinoffs/prototype/CHANGELOG

    r5737 r5741  
    11*SVN* 
     2 
     3* Remove support for HTTP authorization in Ajax calls introduced with #6366.  Closes #6638 [jmecham] 
    24 
    35* Add Enumerable.size() to count elements in an enumerable and the corresponding Array.size() method, fixes #6710 [ZenCocoon] 
  • spinoffs/prototype/src/ajax.js

    r5574 r5741  
    101101     
    102102      this.transport.open(this.options.method.toUpperCase(), this.url,  
    103         this.options.asynchronous, this.options.username,  
    104         this.options.password); 
     103        this.options.asynchronous); 
    105104 
    106105      if (this.options.asynchronous)