rem
stringlengths
0
126k
add
stringlengths
0
441k
context
stringlengths
13
136k
meta
stringlengths
132
347
$.event.trigger( 'ajaxError' );
$.event.trigger( "ajaxError" );
$.ajax = function( type, url, data, ret ) { // If only a single argument was passed in, // assume that it is a object of key/value pairs if ( !url ) { ret = type.complete; var success = type.success; var error = type.error; data = type.data; url = type.url; type = type.type; } // Create the request object var xml...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/c3c706d3f24dbad0fdeb80fe9caf158bd9d6de66/ajax.js/clean/ajax/ajax.js
var modRes = xml.getResponseHeader("Last-Modified"); if ( ifModified && modRes ) jQuery.lastModified[url] = modRes;
var modRes; try { modRes = xml.getResponseHeader("Last-Modified"); } catch(e) {} if ( ifModified && modRes ) jQuery.lastModified[url] = modRes;
ajax: function( type, url, data, ret, ifModified ) { // If only a single argument was passed in, // assume that it is a object of key/value pairs if ( !url ) { ret = type.complete; var success = type.success; var error = type.error; var dataType = type.dataType; var global = typeof type.global == "boolean...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/08d865862a0d26f8ca616ff5a39d97203bda9614/ajax.js/clean/src/ajax/ajax.js
url: null
contentType: "application/x-www-form-urlencoded", processData: true
ajax: function( s ) { // TODO introduce global settings, allowing the client to modify them for all requests, not only timeout s = jQuery.extend({ global: true, ifModified: false, type: "GET", timeout: jQuery.timeout, complete: null, success: null, error: null, dataType: null, data: null, url: nu...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/1e620109d7bd3f77f770f5dbe22f3ef616fa0bb0/ajax.js/buggy/src/ajax/ajax.js
if (typeof s.data != 'string')
if (s.processData && typeof s.data != 'string')
ajax: function( s ) { // TODO introduce global settings, allowing the client to modify them for all requests, not only timeout s = jQuery.extend({ global: true, ifModified: false, type: "GET", timeout: jQuery.timeout, complete: null, success: null, error: null, dataType: null, data: null, url: nu...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/1e620109d7bd3f77f770f5dbe22f3ef616fa0bb0/ajax.js/buggy/src/ajax/ajax.js
xml.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xml.setRequestHeader("Content-Type", s.contentType);
ajax: function( s ) { // TODO introduce global settings, allowing the client to modify them for all requests, not only timeout s = jQuery.extend({ global: true, ifModified: false, type: "GET", timeout: jQuery.timeout, complete: null, success: null, error: null, dataType: null, data: null, url: nu...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/1e620109d7bd3f77f770f5dbe22f3ef616fa0bb0/ajax.js/buggy/src/ajax/ajax.js
ajax: function( type, url, data, ret ) {
ajax: function( type, url, data, ret, ifModified ) {
ajax: function( type, url, data, ret ) { // If only a single argument was passed in, // assume that it is a object of key/value pairs if ( !url ) { ret = type.complete; var success = type.success; var error = type.error; data = type.data; url = type.url; type = type.type; } // Watch for a new set of...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/5ec5de6953a22b33de46897c8e915eed300338e6/ajax.js/buggy/src/ajax/ajax.js
if ( ifModified ) xml.setRequestHeader("If-Modified-Since", jQuery.lastModified[url] || "Thu, 01 Jan 1970 00:00:00 GMT" );
ajax: function( type, url, data, ret ) { // If only a single argument was passed in, // assume that it is a object of key/value pairs if ( !url ) { ret = type.complete; var success = type.success; var error = type.error; data = type.data; url = type.url; type = type.type; } // Watch for a new set of...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/5ec5de6953a22b33de46897c8e915eed300338e6/ajax.js/buggy/src/ajax/ajax.js
ajax: function( type, url, data, ret ) { // If only a single argument was passed in, // assume that it is a object of key/value pairs if ( !url ) { ret = type.complete; var success = type.success; var error = type.error; data = type.data; url = type.url; type = type.type; } // Watch for a new set of...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/5ec5de6953a22b33de46897c8e915eed300338e6/ajax.js/buggy/src/ajax/ajax.js
xml.onreadystatechange = function(){ if ( xml.readyState == 4 ) { if ( jQuery.httpSuccess( xml ) ) {
var onreadystatechange = function(istimeout){ if ( xml && (xml.readyState == 4 || istimeout) ) { var status = jQuery.httpSuccess( xml ) && !istimeout ? ifModified && jQuery.httpNotModified( xml, url ) ? "notmodified" : "success" : "error";
ajax: function( type, url, data, ret ) { // If only a single argument was passed in, // assume that it is a object of key/value pairs if ( !url ) { ret = type.complete; var success = type.success; var error = type.error; data = type.data; url = type.url; type = type.type; } // Watch for a new set of...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/5ec5de6953a22b33de46897c8e915eed300338e6/ajax.js/buggy/src/ajax/ajax.js
if ( success ) success( xml );
if ( success ) success( xml, status );
ajax: function( type, url, data, ret ) { // If only a single argument was passed in, // assume that it is a object of key/value pairs if ( !url ) { ret = type.complete; var success = type.success; var error = type.error; data = type.data; url = type.url; type = type.type; } // Watch for a new set of...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/5ec5de6953a22b33de46897c8e915eed300338e6/ajax.js/buggy/src/ajax/ajax.js
if ( error ) error( xml );
if ( error ) error( xml, status );
ajax: function( type, url, data, ret ) { // If only a single argument was passed in, // assume that it is a object of key/value pairs if ( !url ) { ret = type.complete; var success = type.success; var error = type.error; data = type.data; url = type.url; type = type.type; } // Watch for a new set of...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/5ec5de6953a22b33de46897c8e915eed300338e6/ajax.js/buggy/src/ajax/ajax.js
if ( ret ) ret(xml);
if ( ret ) ret(xml, status);
ajax: function( type, url, data, ret ) { // If only a single argument was passed in, // assume that it is a object of key/value pairs if ( !url ) { ret = type.complete; var success = type.success; var error = type.error; data = type.data; url = type.url; type = type.type; } // Watch for a new set of...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/5ec5de6953a22b33de46897c8e915eed300338e6/ajax.js/buggy/src/ajax/ajax.js
xml.onreadystatechange = onreadystatechange; if(jQuery.timeout > 0) setTimeout(function(){ if (xml) { xml.abort(); if (xml) onreadystatechange(1); xml = null; } }, jQuery.timeout);
ajax: function( type, url, data, ret ) { // If only a single argument was passed in, // assume that it is a object of key/value pairs if ( !url ) { ret = type.complete; var success = type.success; var error = type.error; data = type.data; url = type.url; type = type.type; } // Watch for a new set of...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/5ec5de6953a22b33de46897c8e915eed300338e6/ajax.js/buggy/src/ajax/ajax.js
url: null,
url: null
ajax: function( s ) { // TODO introduce global settings, allowing the client to modify them for all requests, not only timeout s = jQuery.extend({ global: true, ifModified: false, type: "GET", timeout: jQuery.timeout, complete: null, success: null, error: null, dataType: null, data: null, url: nu...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/9261e7ee13d867b3434ea0d9617ca30844318966/ajax.js/buggy/src/ajax/ajax.js
s.data = jQuery.param(s.data)
s.data = jQuery.param(s.data);
ajax: function( s ) { // TODO introduce global settings, allowing the client to modify them for all requests, not only timeout s = jQuery.extend({ global: true, ifModified: false, type: "GET", timeout: jQuery.timeout, complete: null, success: null, error: null, dataType: null, data: null, url: nu...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/9261e7ee13d867b3434ea0d9617ca30844318966/ajax.js/buggy/src/ajax/ajax.js
var global = true; var timeout = jQuery.timeout;
ajax: function( type, url, data, ret, ifModified ) { // If only a single argument was passed in, // assume that it is a object of key/value pairs if ( !url ) { ret = type.complete; var success = type.success; var error = type.error; var dataType = type.dataType; var global = typeof type.global == "boolean...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/bfa8306633da9c2500e4f3e190c81a9827a8f95a/ajax.js/buggy/src/ajax/ajax.js
jQuery.event.trigger( "ajaxSuccess" );
jQuery.event.trigger( "ajaxSuccess", [xml, s] );
ajax: function( s ) { // TODO introduce global settings, allowing the client to modify them for all requests, not only timeout s = jQuery.extend({ global: true, ifModified: false, type: "GET", timeout: jQuery.timeout, complete: null, success: null, error: null, dataType: null, url: null, data: nu...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/010a112e048f932aff7feeb9987eec7a64e5328b/ajax.js/buggy/src/ajax/ajax.js
jQuery.event.trigger( "ajaxError" );
jQuery.event.trigger( "ajaxError", [xml, s] );
ajax: function( s ) { // TODO introduce global settings, allowing the client to modify them for all requests, not only timeout s = jQuery.extend({ global: true, ifModified: false, type: "GET", timeout: jQuery.timeout, complete: null, success: null, error: null, dataType: null, url: null, data: nu...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/010a112e048f932aff7feeb9987eec7a64e5328b/ajax.js/buggy/src/ajax/ajax.js
jQuery.event.trigger( "ajaxComplete" );
jQuery.event.trigger( "ajaxComplete", [xml, s] );
ajax: function( s ) { // TODO introduce global settings, allowing the client to modify them for all requests, not only timeout s = jQuery.extend({ global: true, ifModified: false, type: "GET", timeout: jQuery.timeout, complete: null, success: null, error: null, dataType: null, url: null, data: nu...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/010a112e048f932aff7feeb9987eec7a64e5328b/ajax.js/buggy/src/ajax/ajax.js
var ifModified = type.ifModified || false;
ifModified = type.ifModified || false;
ajax: function( type, url, data, ret, ifModified ) { // If only a single argument was passed in, // assume that it is a object of key/value pairs var global = true; var timeout = jQuery.timeout; if ( !url ) { ret = type.complete; var success = type.success; var error = type.error; var dataType = type.data...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/af961d58c244224c14f3bb519214485cb670c64d/ajax.js/clean/src/ajax/ajax.js
if (!xmlhttp) return false; bComplete = false; sMethod = sMethod.toUpperCase();
if (!xmlhttp) return false; bComplete = false; sMethod = sMethod.toUpperCase();
function ajax() { var xmlhttp, bComplete = false; try { xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { try { xmlhttp = new XMLHttpRequest(); } catch (e) { xmlhttp = false; }}} if (!xmlhttp) return null; this.connect = function(sU...
9569 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/9569/fff2f308282fe247393de3bb4ce3a016b2a3a28e/global.js/buggy/viscacha/templates/global.js
try { if (sMethod == "GET") { xmlhttp.open(sMethod, sURL+"?"+sVars, true); sVars = ""; } else { xmlhttp.open(sMethod, sURL, true); xmlhttp.setRequestHeader("Method", "POST "+sURL+" HTTP/1.1"); xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); } xmlhttp.onreadystatechange = function(){ if (x...
try { if (sMethod == "GET") { xmlhttp.open(sMethod, sURL+"?"+sVars, true); sVars = ""; } else { xmlhttp.open(sMethod, sURL, true); xmlhttp.setRequestHeader("Method", "POST "+sURL+" HTTP/1.1"); xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); } xmlhttp.onreadystatechange = function(){ if (x...
function ajax() { var xmlhttp, bComplete = false; try { xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { try { xmlhttp = new XMLHttpRequest(); } catch (e) { xmlhttp = false; }}} if (!xmlhttp) return null; this.connect = function(sU...
9569 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/9569/fff2f308282fe247393de3bb4ce3a016b2a3a28e/global.js/buggy/viscacha/templates/global.js
alert(lng[lngval]); } else {
alert(lng[lngval]); } else {
function ajax_doubleudata(name) { inline = FetchElement('udata_name'); if (name.length > 3) { var myConn = new ajax(); if (!myConn) {alert(lng['ajax0']);} var fnWhenDone = function (oXML) { if (oXML.responseText == '1') { lngval = 'ajax'+oXML.responseText; alert(lng[lngval]); } else { lngv...
9569 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/9569/fff2f308282fe247393de3bb4ce3a016b2a3a28e/global.js/buggy/viscacha/templates/global.js
inline.innerHTML = lng[lngval]; }
inline.innerHTML = lng[lngval]; }
function ajax_doubleudata(name) { inline = FetchElement('udata_name'); if (name.length > 3) { var myConn = new ajax(); if (!myConn) {alert(lng['ajax0']);} var fnWhenDone = function (oXML) { if (oXML.responseText == '1') { lngval = 'ajax'+oXML.responseText; alert(lng[lngval]); } else { lngv...
9569 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/9569/fff2f308282fe247393de3bb4ce3a016b2a3a28e/global.js/buggy/viscacha/templates/global.js
img.src = lng['ajax_markforumread']; }
img.src = lng['ajax_markforumread']; }
function ajax_markforumread(id, img, small) { var myConn = new ajax(); if (!myConn) {alert(lng['ajax0']);} var fnWhenDone = function (oXML) { if (oXML.responseText == '1') { if (small == 1) { img.src = lng['ajax_markforumread_small']; } else { img.src = lng['ajax_markforumread']; } } }; myConn.con...
9569 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/9569/fff2f308282fe247393de3bb4ce3a016b2a3a28e/global.js/buggy/viscacha/templates/global.js
alert(lng[lngval]); } else if (oXML.responseText == '3' || oXML.responseText == '4') { lngval = 'ajax'+oXML.responseText+'_'+isnew; img.src = lng[lngval]; }
alert(lng[lngval]); } else if (oXML.responseText == '3' || oXML.responseText == '4') { lngval = 'ajax'+oXML.responseText+'_'+isnew; img.src = lng[lngval]; }
function ajax_openclosethread(id, img, isnew) { var myConn = new ajax(); if (!myConn) {alert(lng['ajax0']);} var fnWhenDone = function (oXML) { if (oXML.responseText == '1' || oXML.responseText == '2') { lngval = 'ajax'+oXML.responseText; alert(lng[lngval]); } else if (oXML.responseText == '3' || oXM...
9569 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/9569/fff2f308282fe247393de3bb4ce3a016b2a3a28e/global.js/buggy/viscacha/templates/global.js
x = oXML.responseText;
x = oXML.responseText;
function ajax_search(words) { inline = FetchElement('searchsuggest'); inline.innerHTML = ''; if (words.length > 2) { var myConn = new ajax(); if (!myConn) {alert(lng['ajax0']);} var fnWhenDone = function (oXML) { x = oXML.responseText; if (x == '1') { inline.innerHTML = ''; } else { ignore = x.sp...
9569 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/9569/fff2f308282fe247393de3bb4ce3a016b2a3a28e/global.js/buggy/viscacha/templates/global.js
ignore = x.split(","); if (ignore.length > 0) { inline.innerHTML = lng['ajax9']+ignore.join(', '); } else { inline.innerHTML = ''; }
ignore = x.split(","); if (ignore.length > 0) { inline.innerHTML = lng['ajax9']+ignore.join(', '); } else { inline.innerHTML = ''; }
function ajax_search(words) { inline = FetchElement('searchsuggest'); inline.innerHTML = ''; if (words.length > 2) { var myConn = new ajax(); if (!myConn) {alert(lng['ajax0']);} var fnWhenDone = function (oXML) { x = oXML.responseText; if (x == '1') { inline.innerHTML = ''; } else { ignore = x.sp...
9569 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/9569/fff2f308282fe247393de3bb4ce3a016b2a3a28e/global.js/buggy/viscacha/templates/global.js
suggest = oXML.responseText; if (suggest.length > 3) { names = oXML.responseText.split(",");
suggest = oXML.responseText; if (suggest.length > 3) { names = oXML.responseText.split(",");
function ajax_searchmember(name) { inline = FetchElement('membersuggest'); if (name.length > 2) { var myConn = new ajax(); if (!myConn) {alert(lng['ajax0']);} var fnWhenDone = function (oXML) { suggest = oXML.responseText; if (suggest.length > 3) { names = oXML.responseText.split(","); for (var...
9569 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/9569/fff2f308282fe247393de3bb4ce3a016b2a3a28e/global.js/buggy/viscacha/templates/global.js
inline.innerHTML = lng['ajax7']+names.join(', '); } else { inline.innerHTML = ''; }
inline.innerHTML = lng['ajax7']+names.join(', '); } else { inline.innerHTML = ''; }
function ajax_searchmember(name) { inline = FetchElement('membersuggest'); if (name.length > 2) { var myConn = new ajax(); if (!myConn) {alert(lng['ajax0']);} var fnWhenDone = function (oXML) { suggest = oXML.responseText; if (suggest.length > 3) { names = oXML.responseText.split(","); for (var...
9569 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/9569/fff2f308282fe247393de3bb4ce3a016b2a3a28e/global.js/buggy/viscacha/templates/global.js
$.xml(mth, url, $.param(this.vars), target);
$.ajax(mth, url, $.param(this.vars), target);
$.fn.ajaxSubmit = function(target, post_cb, pre_cb, url, mth) { if ( !this.vars ) this.serialize(); if (pre_cb && pre_cb.constructor == Function) if (pre_cb(this.vars) === false) return; var f = this.get(0); var url = url || f.action || ''; var mth = mth || f.method || 'POST'; if (target && target.constructor == Func...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/c3c706d3f24dbad0fdeb80fe9caf158bd9d6de66/form.js/buggy/form/form.js
$.xml(mth, url, $.param(this.vars), function(r) {
$.ajax(mth, url, $.param(this.vars), function(r) {
$.fn.ajaxSubmit = function(target, post_cb, pre_cb, url, mth) { if ( !this.vars ) this.serialize(); if (pre_cb && pre_cb.constructor == Function) if (pre_cb(this.vars) === false) return; var f = this.get(0); var url = url || f.action || ''; var mth = mth || f.method || 'POST'; if (target && target.constructor == Func...
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/c3c706d3f24dbad0fdeb80fe9caf158bd9d6de66/form.js/buggy/form/form.js
if (!(result &= (iterator || Prototype.K)(value, index))) throw $break;
result = result && !!(iterator || Prototype.K)(value, index); if (!result) throw $break;
all: function(iterator) { var result = true; this.each(function(value, index) { if (!(result &= (iterator || Prototype.K)(value, index))) throw $break; }); return result; },
5150 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5150/44d85be227cc8496144d82df38b82dfcc1224861/prototype.js/clean/intermine/webapp/main/resources/main/js/prototype.js
throw _break;
throw $break;
all: function(iterator) { var result = true; this.each(function(value, index) { if (!(result &= (iterator || Prototype.K)(value, index))) throw _break; }); return result; },
3684 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/3684/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/clean/actionpack/lib/action_view/helpers/javascripts/prototype.js
throw _break;
throw $break;
all: function(iterator) { var result = true; this.each(function(value, index) { if (!(result &= (iterator || Prototype.K)(value, index))) throw _break; }); return result; },
3684 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/3684/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/buggy/railties/html/javascripts/prototype.js
name = document.images[i].name;
name = document.images[i].alt;
function All(job) { for(var i =0; i < document.images.length; i++) { name = document.images[i].name; if (name == 'collapse') { switchimg = document.images[i]; id = switchimg.id.replace("img_","") part = FetchElement("part_"+id) if(job == 1) { switchimg.src = box_img_plus part.style.display = 'none' ...
9569 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/9569/ad2d4c49d576e33eb5f75e6d027ba1fe85a04c59/menu.js/clean/viscacha/admin/html/menu.js
id = switchimg.id.replace("img_","") part = FetchElement("part_"+id)
id = switchimg.id.replace("img_",""); part = FetchElement("part_"+id);
function All(job) { for(var i =0; i < document.images.length; i++) { name = document.images[i].name; if (name == 'collapse') { switchimg = document.images[i]; id = switchimg.id.replace("img_","") part = FetchElement("part_"+id) if(job == 1) { switchimg.src = box_img_plus part.style.display = 'none' ...
9569 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/9569/ad2d4c49d576e33eb5f75e6d027ba1fe85a04c59/menu.js/clean/viscacha/admin/html/menu.js
switchimg.src = box_img_plus part.style.display = 'none' SetCookie(id)
switchimg.src = box_img_plus; part.style.display = 'none'; SetCookie(id);
function All(job) { for(var i =0; i < document.images.length; i++) { name = document.images[i].name; if (name == 'collapse') { switchimg = document.images[i]; id = switchimg.id.replace("img_","") part = FetchElement("part_"+id) if(job == 1) { switchimg.src = box_img_plus part.style.display = 'none' ...
9569 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/9569/ad2d4c49d576e33eb5f75e6d027ba1fe85a04c59/menu.js/clean/viscacha/admin/html/menu.js
switchimg.src = box_img_minus part.style.display = 'block' KillCookie(id)
switchimg.src = box_img_minus; part.style.display = 'block'; KillCookie(id);
function All(job) { for(var i =0; i < document.images.length; i++) { name = document.images[i].name; if (name == 'collapse') { switchimg = document.images[i]; id = switchimg.id.replace("img_","") part = FetchElement("part_"+id) if(job == 1) { switchimg.src = box_img_plus part.style.display = 'none' ...
9569 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/9569/ad2d4c49d576e33eb5f75e6d027ba1fe85a04c59/menu.js/clean/viscacha/admin/html/menu.js
Switch(switchimg)
Switch(switchimg);
function All(job) { for(var i =0; i < document.images.length; i++) { name = document.images[i].name; if (name == 'collapse') { switchimg = document.images[i]; id = switchimg.id.replace("img_","") part = FetchElement("part_"+id) if(job == 1) { switchimg.src = box_img_plus part.style.display = 'none' ...
9569 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/9569/ad2d4c49d576e33eb5f75e6d027ba1fe85a04c59/menu.js/clean/viscacha/admin/html/menu.js
var buttonNode = document.getElementById("PersonalToolbar").firstChild; while(buttonNode.tagName != "toolbarseparator") { if(!buttonNode.hasAttribute("hidden") || buttonNode.getAttribute("hidden") == "false")
var buttonNode = document.getElementById("home-bm-separator").previousSibling; while (buttonNode) { if (buttonNode.localName != "tooltip" && !buttonNode.hidden)
function allLeftButtonsAreHidden(){ var buttonNode = document.getElementById("PersonalToolbar").firstChild; while(buttonNode.tagName != "toolbarseparator") { if(!buttonNode.hasAttribute("hidden") || buttonNode.getAttribute("hidden") == "false") return false; buttonNode = buttonNode.nextSibling; } return ...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/6c77ea443669c47262da0fe22c2eac4ef86a54a2/navigator.js/clean/suite/browser/navigator.js
buttonNode = buttonNode.nextSibling;
buttonNode = buttonNode.previousSibling;
function allLeftButtonsAreHidden(){ var buttonNode = document.getElementById("PersonalToolbar").firstChild; while(buttonNode.tagName != "toolbarseparator") { if(!buttonNode.hasAttribute("hidden") || buttonNode.getAttribute("hidden") == "false") return false; buttonNode = buttonNode.nextSibling; } return ...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/6c77ea443669c47262da0fe22c2eac4ef86a54a2/navigator.js/clean/suite/browser/navigator.js
"", "chrome,resizable=no,titlebar,modal,centerscreen", {primaryEmail:authorEmailAddress, displayName:names.value[0], allowRemoteContent:'true'});
"", "chrome,resizable=no,titlebar,modal,centerscreen", args); allowRemoteContent = args.allowRemoteContent;
function allowRemoteContentForSender(){ // get the sender of the msg hdr var msgHdr = msgHdrForCurrentMessage(); if (!msgHdr) return; var headerParser = Components.classes["@mozilla.org/messenger/headerparser;1"] .getService(Components.interfaces.nsIMsgHeaderParser); var names = {}; var ...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/7b4b07a03f49fe71d501916010d500016c1ef828/mailWindowOverlay.js/clean/mail/base/content/mailWindowOverlay.js
MsgReload();
if (allowRemoteContent) MsgReload();
function allowRemoteContentForSender(){ // get the sender of the msg hdr var msgHdr = msgHdrForCurrentMessage(); if (!msgHdr) return; var headerParser = Components.classes["@mozilla.org/messenger/headerparser;1"] .getService(Components.interfaces.nsIMsgHeaderParser); var names = {}; var ...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/7b4b07a03f49fe71d501916010d500016c1ef828/mailWindowOverlay.js/clean/mail/base/content/mailWindowOverlay.js
function alternateRowColors()
DWRUtil.alternateRowColors = function()
function alternateRowColors(){ var tables = document.getElementsByTagName("table"); var rowCount = 0; for (var i = 0; i < tables.length; i++) { var table = tables.item(i); var rows = table.getElementsByTagName("tr"); for (var j = 0; j < rows.length; j++) { var row = ro...
266 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/266/1c2e43c84790bfe925e41713280232cd61fc9288/util.js/clean/java/uk/ltd/getahead/dwr/util.js
var i = 0;
this.curAnim = prop;
animate: function(prop,speed,callback) { return this.queue(function(){ var i = 0; for ( var p in prop ) { var e = new jQuery.fx( this, jQuery.speed(speed,callback,i++), p ); if ( prop[p].constructor == Number ) e.custom( e.cur(), prop[p] ); else e[ prop[p] ]( prop ); } }); },
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/48ec10044f011ccfe9bd232d629682b59cccbd97/fx.js/clean/src/fx/fx.js
var e = new jQuery.fx( this, jQuery.speed(speed,callback,i++), p );
var e = new jQuery.fx( this, jQuery.speed(speed,callback), p );
animate: function(prop,speed,callback) { return this.queue(function(){ var i = 0; for ( var p in prop ) { var e = new jQuery.fx( this, jQuery.speed(speed,callback,i++), p ); if ( prop[p].constructor == Number ) e.custom( e.cur(), prop[p] ); else e[ prop[p] ]( prop ); } }); },
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/48ec10044f011ccfe9bd232d629682b59cccbd97/fx.js/clean/src/fx/fx.js
animate: function(prop,speed,callback) { return this.queue(function(){ var i = 0; for ( var p in prop ) { var e = new jQuery.fx( this, jQuery.speed(speed,callback,i++), p ); if ( prop[p].constructor == Number ) e.custom( e.cur(), prop[p] ); else e[ prop[p] ]( prop ); } }); },
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/48ec10044f011ccfe9bd232d629682b59cccbd97/fx.js/clean/src/fx/fx.js
jQuery.prototype.animate = function(prop,speed,callback) { return this.queue(function(){ var i = 0; for ( var p in prop ) { var e = new jQuery.fx( this, jQuery.speed(speed,callback,i++), p ); if ( prop[p].constructor == Number ) e.custom( e.cur(), prop[p] ); else e[ prop[p] ](); } }); };
animate: function(prop,speed,callback) { return this.queue(function(){ var i = 0; for ( var p in prop ) { var e = new jQuery.fx( this, jQuery.speed(speed,callback,i++), p ); if ( prop[p].constructor == Number ) e.custom( e.cur(), prop[p] ); else e[ prop[p] ](); } }); },
jQuery.prototype.animate = function(prop,speed,callback) { return this.queue(function(){ var i = 0; for ( var p in prop ) { var e = new jQuery.fx( this, jQuery.speed(speed,callback,i++), p ); if ( prop[p].constructor == Number ) e.custom( e.cur(), prop[p] ); else e[ prop[p] ](); } });};
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/9477c418dbf50f2341dec7c02f60ab3d77da5378/fx.js/clean/fx/fx.js
e[ prop[p] ]();
e[ prop[p] ]( prop );
animate: function(prop,speed,callback) { return this.queue(function(){ var i = 0; for ( var p in prop ) { var e = new jQuery.fx( this, jQuery.speed(speed,callback,i++), p ); if ( prop[p].constructor == Number ) e.custom( e.cur(), prop[p] ); else e[ prop[p] ](); } }); },
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/aa5c4d8828bd8956218ccca47ee7a029fe26008e/fx.js/clean/fx/fx.js
this.curAnim = prop;
this.curAnim = jQuery.extend({}, prop);
animate: function(prop,speed,callback) { return this.queue(function(){ this.curAnim = prop; for ( var p in prop ) { var e = new jQuery.fx( this, jQuery.speed(speed,callback), p ); if ( prop[p].constructor == Number ) e.custom( e.cur(), prop[p] ); else e[ prop[p] ]( prop ); } }); },
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/692d676e993b198e30c8940ab61745d7578229bf/fx.js/buggy/src/fx/fx.js
any : function (aArray)
any: function (aArray)
any : function (aArray) { for (var i=0; i<aArray.length; ++i) if (aArray[i]) return true; return false; },
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/8bb227628ec548d1ea864fc51b8f162f55adaadf/bookmarks.js/clean/browser/components/bookmarks/content/bookmarks.js
if (result &= (iterator || Prototype.K)(value, index))
if (result = !!(iterator || Prototype.K)(value, index))
any: function(iterator) { var result = true; this.each(function(value, index) { if (result &= (iterator || Prototype.K)(value, index)) throw $break; }); return result; },
5150 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5150/44d85be227cc8496144d82df38b82dfcc1224861/prototype.js/clean/intermine/webapp/main/resources/main/js/prototype.js
throw _break;
throw $break;
any: function(iterator) { var result = true; this.each(function(value, index) { if (result &= (iterator || Prototype.K)(value, index)) throw _break; }); return result; },
3684 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/3684/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/clean/actionpack/lib/action_view/helpers/javascripts/prototype.js
throw _break;
throw $break;
any: function(iterator) { var result = true; this.each(function(value, index) { if (result &= (iterator || Prototype.K)(value, index)) throw _break; }); return result; },
3684 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/3684/7d101d58400acaff232091485c8e140f0a37cbaf/prototype.js/buggy/railties/html/javascripts/prototype.js
afterFinishInternal: function(effect) { Element.forceRerendering(effect.element); },
Effect.Appear = function(element) { var options = Object.extend({ from: (Element.getStyle(element, 'display') == 'none' ? 0.0 : Element.getOpacity(element) || 0.0), to: 1.0, beforeSetup: function(effect) { with(Element) { setOpacity(effect.element, effect.options.from); show(effect.element); }} }, argument...
3684 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/3684/e3bfd08cbcbffddf53de4f0f6030a794402cf532/effects.js/clean/actionpack/lib/action_view/helpers/javascripts/effects.js
options = Object.extend({ from: 0.0,
var options = Object.extend({ from: (Element.getStyle(element, "display") == "none" ? 0.0 : Element.getOpacity(element) || 0.0),
Effect.Appear = function(element) { options = Object.extend({ from: 0.0, to: 1.0, beforeStart: function(effect) { effect.setOpacity(0); Element.show(effect.element); }, afterUpdate: function(effect) { Element.show(effect.element); } }, arguments[1] || {}); new Effect.Opacity(element,options);}
2930 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2930/9867ca01ad65827d23c0bf6cc14d8a64137e927d/effects.js/buggy/tracks/public/javascripts/effects.js
beforeStart: function(effect) { effect.setOpacity(0); Element.show(effect.element); }, afterUpdate: function(effect) { Element.show(effect.element); }
beforeSetup: function(effect) { Element.setOpacity(effect.element, effect.options.from); Element.show(effect.element); }
Effect.Appear = function(element) { options = Object.extend({ from: 0.0, to: 1.0, beforeStart: function(effect) { effect.setOpacity(0); Element.show(effect.element); }, afterUpdate: function(effect) { Element.show(effect.element); } }, arguments[1] || {}); new Effect.Opacity(element,options);}
2930 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2930/9867ca01ad65827d23c0bf6cc14d8a64137e927d/effects.js/buggy/tracks/public/javascripts/effects.js
new Effect.Opacity(element,options);
return new Effect.Opacity(element,options);
Effect.Appear = function(element) { options = Object.extend({ from: 0.0, to: 1.0, beforeStart: function(effect) { effect.setOpacity(0); Element.show(effect.element); }, afterUpdate: function(effect) { Element.show(effect.element); } }, arguments[1] || {}); new Effect.Opacity(element,options);}
2930 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/2930/9867ca01ad65827d23c0bf6cc14d8a64137e927d/effects.js/buggy/tracks/public/javascripts/effects.js
options = {
options = Object.extend({
Effect.Appear = function(element) { options = { from: 0.0, to: 1.0, beforeStart: function(effect) { effect.setOpacity(0); Element.show(effect.element); }, afterUpdate: function(effect) { Element.show(effect.element); } }.extend(arguments[1] || {}); new Effect.Opacity(element,options);}
3684 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/3684/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/buggy/actionpack/lib/action_view/helpers/javascripts/effects.js
}.extend(arguments[1] || {});
}, arguments[1] || {});
Effect.Appear = function(element) { options = { from: 0.0, to: 1.0, beforeStart: function(effect) { effect.setOpacity(0); Element.show(effect.element); }, afterUpdate: function(effect) { Element.show(effect.element); } }.extend(arguments[1] || {}); new Effect.Opacity(element,options);}
3684 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/3684/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/buggy/actionpack/lib/action_view/helpers/javascripts/effects.js
afterFinishInternal: function(effect) { Element.forceRerendering(effect.element); },
Effect.Appear = function(element) { var options = Object.extend({ from: (Element.getStyle(element, 'display') == 'none' ? 0.0 : Element.getOpacity(element) || 0.0), to: 1.0, beforeSetup: function(effect) { with(Element) { setOpacity(effect.element, effect.options.from); show(effect.element); }} }, argument...
3684 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/3684/e3bfd08cbcbffddf53de4f0f6030a794402cf532/effects.js/buggy/railties/html/javascripts/effects.js
options = Object.extend({ from: 0.0,
var options = Object.extend({ from: (Element.getStyle(element, "display") == "none" ? 0.0 : Element.getOpacity(element) || 0.0),
Effect.Appear = function(element) { options = Object.extend({ from: 0.0, to: 1.0, beforeStart: function(effect) { effect.setOpacity(0); Element.show(effect.element); }, afterUpdate: function(effect) { Element.show(effect.element); } }, arguments[1] || {}); new Effect.Opacity(element,options);}
708 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/708/3f913f897829fb026ef98df2d57f8da94ee5339d/effects.js/buggy/public/javascripts/effects.js
beforeStart: function(effect) { effect.setOpacity(0); Element.show(effect.element); }, afterUpdate: function(effect) { Element.show(effect.element); }
beforeSetup: function(effect) { Element.setOpacity(effect.element, effect.options.from); Element.show(effect.element); }
Effect.Appear = function(element) { options = Object.extend({ from: 0.0, to: 1.0, beforeStart: function(effect) { effect.setOpacity(0); Element.show(effect.element); }, afterUpdate: function(effect) { Element.show(effect.element); } }, arguments[1] || {}); new Effect.Opacity(element,options);}
708 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/708/3f913f897829fb026ef98df2d57f8da94ee5339d/effects.js/buggy/public/javascripts/effects.js
new Effect.Opacity(element,options);
return new Effect.Opacity(element,options);
Effect.Appear = function(element) { options = Object.extend({ from: 0.0, to: 1.0, beforeStart: function(effect) { effect.setOpacity(0); Element.show(effect.element); }, afterUpdate: function(effect) { Element.show(effect.element); } }, arguments[1] || {}); new Effect.Opacity(element,options);}
708 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/708/3f913f897829fb026ef98df2d57f8da94ee5339d/effects.js/buggy/public/javascripts/effects.js
options = {
options = Object.extend({
Effect.Appear = function(element) { options = { from: 0.0, to: 1.0, beforeStart: function(effect) { effect.setOpacity(0); Element.show(effect.element); }, afterUpdate: function(effect) { Element.show(effect.element); } }.extend(arguments[1] || {}); new Effect.Opacity(element,options);}
3684 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/3684/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/clean/railties/html/javascripts/effects.js
}.extend(arguments[1] || {});
}, arguments[1] || {});
Effect.Appear = function(element) { options = { from: 0.0, to: 1.0, beforeStart: function(effect) { effect.setOpacity(0); Element.show(effect.element); }, afterUpdate: function(effect) { Element.show(effect.element); } }.extend(arguments[1] || {}); new Effect.Opacity(element,options);}
3684 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/3684/16669774903dd7bfaaf1bf8f0c72e49ebaeffeeb/effects.js/clean/railties/html/javascripts/effects.js
if(!aDirPath || !aFileName) {
if (!aDirPath || !aFileName) {
append : function (aDirPath, aFileName) { if(!aDirPath || !aFileName) { jslibError(null, "(no path defined)", "NS_ERROR_INVALID_ARG", JS_FILEUTILS_FILE+":append"); return null; } if(!this.exists(aDirPath)) { jslibError(null, "(file doesn't exist)", "NS_ERROR_UNEXPECTED", JS_FILEUTILS_FILE+":append"); ret...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/ad31f8ed11639845cff55b2a989a1a6243a89a9b/fileUtils.js/clean/calendar/resources/content/jslib/io/fileUtils.js
if(!this.exists(aDirPath)) {
if (!this.exists(aDirPath)) {
append : function (aDirPath, aFileName) { if(!aDirPath || !aFileName) { jslibError(null, "(no path defined)", "NS_ERROR_INVALID_ARG", JS_FILEUTILS_FILE+":append"); return null; } if(!this.exists(aDirPath)) { jslibError(null, "(file doesn't exist)", "NS_ERROR_UNEXPECTED", JS_FILEUTILS_FILE+":append"); ret...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/ad31f8ed11639845cff55b2a989a1a6243a89a9b/fileUtils.js/clean/calendar/resources/content/jslib/io/fileUtils.js
if(fileInst.exists() && !fileInst.isDirectory()) {
if (fileInst.exists() && !fileInst.isDirectory()) {
append : function (aDirPath, aFileName) { if(!aDirPath || !aFileName) { jslibError(null, "(no path defined)", "NS_ERROR_INVALID_ARG", JS_FILEUTILS_FILE+":append"); return null; } if(!this.exists(aDirPath)) { jslibError(null, "(file doesn't exist)", "NS_ERROR_UNEXPECTED", JS_FILEUTILS_FILE+":append"); ret...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/ad31f8ed11639845cff55b2a989a1a6243a89a9b/fileUtils.js/clean/calendar/resources/content/jslib/io/fileUtils.js
var clone = this.size() > 1;
var clone = this.size() > 1;
append: function() { var clone = this.size() > 1; var a = $.clean(arguments); return this.each(function(){ for ( var i in a ) this.appendChild( clone ? a[i].cloneNode(true) : a[i] ); }); },
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/130b8a1c030ae7888934fcd8dee6695eac271fcb/jquery.js/clean/jquery/jquery.js
for ( var i in a )
for ( var i = 0; i < a.length; i++ )
append: function() { var clone = this.size() > 1; var a = $.clean(arguments); return this.each(function(){ for ( var i in a ) this.appendChild( clone ? a[i].cloneNode(true) : a[i] ); }); },
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/c206df28db1d8e6ff7d276ea3d92cde35e0cc640/jquery.js/clean/jquery/jquery.js
var clone = this.size() > 1; var a = $.clean(arguments); return this.domManip(function(){ for ( var i = 0; i < a.length; i++ ) this.appendChild( clone ? a[i].cloneNode(true) : a[i] ); }); },
var clone = this.size() > 1; var a = $.clean(arguments); return this.domManip(function(){ for ( var i = 0; i < a.length; i++ ) this.appendChild( clone ? a[i].cloneNode(true) : a[i] ); }); },
append: function() { var clone = this.size() > 1; var a = $.clean(arguments); return this.domManip(function(){ for ( var i = 0; i < a.length; i++ ) this.appendChild( clone ? a[i].cloneNode(true) : a[i] ); }); },
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/c3c706d3f24dbad0fdeb80fe9caf158bd9d6de66/jquery.js/buggy/jquery/jquery.js
/* Note: we always want a zero-length textfield so the user
/* Note: we always want a zero-length textbox so the user
function Append(thisMenuList) { /* Note: we always want a zero-length textfield so the user * can start typing in a new value. So we need to determine * if user has started typing into the zero-length textfield * in which case it's time to create yet another zero-length * one. We also need to det...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/1e7ee6f0f96dbc0326edd55283ca67952efda4df/WalletViewer.js/clean/extensions/wallet/editor/resources/content/WalletViewer.js
* if user has started typing into the zero-length textfield
* if user has started typing into the zero-length textbox
function Append(thisMenuList) { /* Note: we always want a zero-length textfield so the user * can start typing in a new value. So we need to determine * if user has started typing into the zero-length textfield * in which case it's time to create yet another zero-length * one. We also need to det...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/1e7ee6f0f96dbc0326edd55283ca67952efda4df/WalletViewer.js/clean/extensions/wallet/editor/resources/content/WalletViewer.js
* text in a textfield in which case that textfield needs to
* text in a textbox in which case that textbox needs to
function Append(thisMenuList) { /* Note: we always want a zero-length textfield so the user * can start typing in a new value. So we need to determine * if user has started typing into the zero-length textfield * in which case it's time to create yet another zero-length * one. We also need to det...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/1e7ee6f0f96dbc0326edd55283ca67952efda4df/WalletViewer.js/clean/extensions/wallet/editor/resources/content/WalletViewer.js
/* determine previous size of textfield */
/* determine previous size of textbox */
function Append(thisMenuList) { /* Note: we always want a zero-length textfield so the user * can start typing in a new value. So we need to determine * if user has started typing into the zero-length textfield * in which case it's time to create yet another zero-length * one. We also need to det...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/1e7ee6f0f96dbc0326edd55283ca67952efda4df/WalletViewer.js/clean/extensions/wallet/editor/resources/content/WalletViewer.js
/* Note: we always want a zero-length textfield so the user
/* Note: we always want a zero-length textbox so the user
function Append(thisMenuList) { /* Note: we always want a zero-length textfield so the user * can start typing in a new value. So we need to determine * if user has started typing into the zero-length textfield * in which case it's time to create yet another zero-length * one. We also need to det...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/1e7ee6f0f96dbc0326edd55283ca67952efda4df/WalletViewer.js/buggy/extensions/wallet/editor/WalletViewer.js
* if user has started typing into the zero-length textfield
* if user has started typing into the zero-length textbox
function Append(thisMenuList) { /* Note: we always want a zero-length textfield so the user * can start typing in a new value. So we need to determine * if user has started typing into the zero-length textfield * in which case it's time to create yet another zero-length * one. We also need to det...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/1e7ee6f0f96dbc0326edd55283ca67952efda4df/WalletViewer.js/buggy/extensions/wallet/editor/WalletViewer.js
* text in a textfield in which case that textfield needs to
* text in a textbox in which case that textbox needs to
function Append(thisMenuList) { /* Note: we always want a zero-length textfield so the user * can start typing in a new value. So we need to determine * if user has started typing into the zero-length textfield * in which case it's time to create yet another zero-length * one. We also need to det...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/1e7ee6f0f96dbc0326edd55283ca67952efda4df/WalletViewer.js/buggy/extensions/wallet/editor/WalletViewer.js
/* determine previous size of textfield */
/* determine previous size of textbox */
function Append(thisMenuList) { /* Note: we always want a zero-length textfield so the user * can start typing in a new value. So we need to determine * if user has started typing into the zero-length textfield * in which case it's time to create yet another zero-length * one. We also need to det...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/1e7ee6f0f96dbc0326edd55283ca67952efda4df/WalletViewer.js/buggy/extensions/wallet/editor/WalletViewer.js
classes.push(className);elmt.className=classes.join(" ");};SimileAjax.DOM.createInputElement=function(type){var div=document.createElement("div");div.innerHTML="<input type='"+type+"' />";return div.firstChild;};SimileAjax.DOM.createDOMFromTemplate=function(doc,template){var result={};result.elmt=SimileAjax.DOM._create...
classes.push(className);elmt.className=classes.join(" ");};SimileAjax.DOM.createInputElement=function(type){var div=document.createElement("div");div.innerHTML="<input type='"+type+"' />";return div.firstChild;};SimileAjax.DOM.createDOMFromTemplate=function(doc,template){var result={};result.elmt=SimileAjax.DOM._create...
return{left:left,top:top};};SimileAjax.DOM.getEventRelativeCoordinates=function(evt,elmt){if(SimileAjax.Platform.browser.isIE){return{x:evt.offsetX,y:evt.offsetY};}else{var coords=SimileAjax.DOM.getPageCoordinates(elmt);return{x:evt.pageX-coords.left,y:evt.pageY-coords.top};}};SimileAjax.DOM.cancelEvent=function(evt){e...
6194 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6194/f949444e4ba4f7b7942b137ca332db7a5ec772e8/bundle.js/clean/src/webapp/api/bundle.js
function appendFiltersForContentType(aFilePicker, aContentType, aFileExtension, aSaveMode){ var bundle = getStringBundle(); // The bundle name for saving only a specific content type. var bundleName; // The corresponding filter string for a specific content type. var filterString; // XXX all the cases that are ha...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/55a5e5ddbf4a7e9103b995d808c4466085d2123f/contentAreaUtils.js/buggy/xpfe/communicator/resources/content/contentAreaUtils.js
function appendFiltersForContentType(aFilePicker, aContentType, aFileExtension, aSaveMode){ var bundle = getStringBundle(); // The bundle name for saving only a specific content type. var bundleName; // The corresponding filter string for a specific content type. var filterString; // XXX all the cases that are ha...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/55a5e5ddbf4a7e9103b995d808c4466085d2123f/contentAreaUtils.js/buggy/xpfe/communicator/resources/content/contentAreaUtils.js
var extCount = { }; var extList = { }; mimeInfo.GetFileExtensions(extCount, extList);
var extEnumerator = mimeInfo.getFileExtensions();
function appendFiltersForContentType(aFilePicker, aContentType, aSaveMode){ var bundle = getStringBundle(); switch (aContentType) { case "text/html": if (aSaveMode == MODE_COMPLETE) aFilePicker.appendFilter(bundle.GetStringFromName("WebPageCompleteFilter"), "*.htm; *.html"); aFilePicker.appendFilter(b...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/705c9c0bda5f75b111f7faa3191a21edc332eb88/contentAreaUtils.js/clean/browser/base/content/contentAreaUtils.js
for (var i = 0; i < extCount.value; ++i) { if (i > 0) extString += "; "; extString += "*." + extList.value[i];
while (extEnumerator.hasMore()) { var extension = extEnumerator.getNext(); if (extString) extString += "; "; extString += "*." + extension;
function appendFiltersForContentType(aFilePicker, aContentType, aSaveMode){ var bundle = getStringBundle(); switch (aContentType) { case "text/html": if (aSaveMode == MODE_COMPLETE) aFilePicker.appendFilter(bundle.GetStringFromName("WebPageCompleteFilter"), "*.htm; *.html"); aFilePicker.appendFilter(b...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/705c9c0bda5f75b111f7faa3191a21edc332eb88/contentAreaUtils.js/clean/browser/base/content/contentAreaUtils.js
if (extCount.value > 0) {
if (extString) {
function appendFiltersForContentType(aFilePicker, aContentType, aSaveMode){ var bundle = getStringBundle(); switch (aContentType) { case "text/html": if (aSaveMode == MODE_COMPLETE) aFilePicker.appendFilter(bundle.GetStringFromName("WebPageCompleteFilter"), "*.htm; *.html"); aFilePicker.appendFilter(b...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/705c9c0bda5f75b111f7faa3191a21edc332eb88/contentAreaUtils.js/clean/browser/base/content/contentAreaUtils.js
aFilePicker.appendFilter(bundle.GetStringFromName("TextOnlyFilter"), "*.txt");
function appendFiltersForContentType(aFilePicker, aContentType, aSaveMode){ var bundle = getStringBundle(); switch (aContentType) { case "text/html": if (aSaveMode == MODE_COMPLETE) aFilePicker.appendFilter(bundle.GetStringFromName("WebPageCompleteFilter"), "*.htm; *.html"); aFilePicker.appendFilter(b...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/f237517280a4bebfdf7fd2563dcea2be92ec22b2/contentAreaUtils.js/buggy/suite/common/contentAreaUtils.js
function appendForwardDeclarations(list, info){ list.push(info.name); if(info.parent) appendForwardDeclarations(list, info.parent); var i, k, m, p; for(i = 0; i < info.methodCount; i++) { m = info.getMethodInfo(i); for(k = 0; k < m.paramCount; k++) { p = m.g...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/55a5e5ddbf4a7e9103b995d808c4466085d2123f/nsInterfaceInfoToIDL.js/buggy/extensions/webservices/interfaceinfo/src/nsInterfaceInfoToIDL.js
function appendForwardDeclarations(list, info){ list.push(info.name); if(info.parent) appendForwardDeclarations(list, info.parent); var i, k, m, p; for(i = 0; i < info.methodCount; i++) { m = info.getMethodInfo(i); for(k = 0; k < m.paramCount; k++) { p = m.g...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/55a5e5ddbf4a7e9103b995d808c4466085d2123f/nsInterfaceInfoToIDL.js/buggy/extensions/webservices/interfaceinfo/src/nsInterfaceInfoToIDL.js
name = MISSING_INTERFACE;
name = MISSING_INTERFACE;
function appendForwardDeclarations(list, info){ list.push(info.name); if(info.parent) appendForwardDeclarations(list, info.parent); var i, k, m, p; for(i = 0; i < info.methodCount; i++) { m = info.getMethodInfo(i); for(k = 0; k < m.paramCount; k++) { p = m.g...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/55a5e5ddbf4a7e9103b995d808c4466085d2123f/nsInterfaceInfoToIDL.js/buggy/extensions/webservices/interfaceinfo/src/nsInterfaceInfoToIDL.js
text += "Source line: " + scriptError.sourceLine;
text += " Source line: " + scriptError.sourceLine;
function appendMessage(messageObject){ var c = document.getElementById("console"); var el = document.createElement("message"); var msgContent; var text; try { // Try to QI it to a script error to get more info. var nsIScriptError = Components.interfaces.nsIScriptError; var scriptErro...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/1d9c2ddad4ad26be20d9da47614ffe8b5ef49e99/console.js/clean/xpfe/components/console/resources/content/console.js
optgroupObject.prototype.appendOption = function appendOption(child, parent) { var index = gDialog.nextChild(parent); var primaryCol = treeBoxObject.getPrimaryColumn(); treeBoxObject.invalidateCell(index - 1, primaryCol); itemArray.splice(index, 0, new optionObject(child, 2)); treeBoxObject.rowCountChanged(index, 1);...
appendOption: function appendOption(child, parent) { var index = itemArray.length; treeBoxObject.invalidateRange(this.lastChild(), index); itemArray.push(new optionObject(child, 1)); treeBoxObject.rowCountChanged(index, 1); selectTreeIndex(index, false); },
optgroupObject.prototype.appendOption = function appendOption(child, parent){ var index = gDialog.nextChild(parent); // XXX need to repaint the lines, tree won't do this var primaryCol = treeBoxObject.getPrimaryColumn(); treeBoxObject.invalidateCell(index - 1, primaryCol); // insert the wrapped object as the last ...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/e5158d88eff369883b9fa994276d0b06cfe7ca8f/EdSelectProps.js/clean/editor/ui/dialogs/content/EdSelectProps.js
var popupNode = document.createElement("menupopup");
var list = document.getElementById("printerList");
appendPrinterNames: function (aDataObject) { var popupNode = document.createElement("menupopup"); var strDefaultPrinterName = ""; var printerName; // build popup menu from printer names while (aDataObject.hasMoreElements()) { printerName = aDat...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/0d5875e3b79dfb82f238bdc2e9b560ce1b505012/printdialog.js/buggy/toolkit/components/printing/content/printdialog.js
var itemNode = document.createElement("menuitem"); itemNode.setAttribute("value", printerNameStr); itemNode.setAttribute("label", printerNameStr); popupNode.appendChild(itemNode);
list.appendItem(printerNameStr, printerNameStr, getPrinterDescription(printerNameStr));
appendPrinterNames: function (aDataObject) { var popupNode = document.createElement("menupopup"); var strDefaultPrinterName = ""; var printerName; // build popup menu from printer names while (aDataObject.hasMoreElements()) { printerName = aDat...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/0d5875e3b79dfb82f238bdc2e9b560ce1b505012/printdialog.js/buggy/toolkit/components/printing/content/printdialog.js
this.listElement.appendChild(popupNode);
appendPrinterNames: function (aDataObject) { var popupNode = document.createElement("menupopup"); var strDefaultPrinterName = ""; var printerName; // build popup menu from printer names while (aDataObject.hasMoreElements()) { printerName = aDat...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/0d5875e3b79dfb82f238bdc2e9b560ce1b505012/printdialog.js/buggy/toolkit/components/printing/content/printdialog.js
gNoFontsForThisLang = true;
appendStrings: function ( aDataObject ) { var popupNode = document.createElement( "menupopup" ); faces = aDataObject.toString().split(","); faces.sort(); for( var i = 0; i < faces.length; i++ ) { if( faces[i] == "" ) { ...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/7f318f258b5abf7ec1855d6d866c9d8bf2b94871/pref-fonts.js/clean/xpfe/components/prefwindow/resources/content/pref-fonts.js
gNoFontsForThisLang = false;
appendStrings: function ( aDataObject ) { var popupNode = document.createElement( "menupopup" ); faces = aDataObject.toString().split(","); faces.sort(); for( var i = 0; i < faces.length; i++ ) { if( faces[i] == "" ) { ...
5872 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/5872/7f318f258b5abf7ec1855d6d866c9d8bf2b94871/pref-fonts.js/clean/xpfe/components/prefwindow/resources/content/pref-fonts.js
var a = arguments; return this.each(function(){ for ( var i = 0; i < a.length; i++ ) $(a[i]).append( this ); }); },
var a = arguments; return this.each(function(){ for ( var i = 0; i < a.length; i++ ) $(a[i]).append( this ); }); },
appendTo: function() { var a = arguments; return this.each(function(){ for ( var i = 0; i < a.length; i++ ) $(a[i]).append( this ); }); },
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/c3c706d3f24dbad0fdeb80fe9caf158bd9d6de66/jquery.js/buggy/jquery/jquery.js
else {
else {
$.apply = function(o,f,a) { a = a || []; if ( f.apply ) return f.apply( o, a ); else { var p = []; for (var i = 0; i < a.length; i++) p[i] = 'a['+i+']'; o.$$exec = this; var r = eval('o.$$exec(' + p.join(',') + ')'); o.$$exec = null; return r; }};
6056 /local1/tlutelli/issta_data/temp/all_js/javascript/2006_temp/2006/6056/130b8a1c030ae7888934fcd8dee6695eac271fcb/jquery.js/clean/jquery/jquery.js