diff --git a/misc/ahah.js b/misc/ahah.js index 91906c771faa..70199f35a26f 100644 --- a/misc/ahah.js +++ b/misc/ahah.js @@ -17,10 +17,10 @@ * Attaches the ahah behavior to each ahah form element. */ Drupal.behaviors.ahah = { - attach: function(context) { - for (var base in Drupal.settings.ahah) { + attach: function(context, settings) { + for (var base in settings.ahah) { if (!$('#'+ base + '.ahah-processed').size()) { - var element_settings = Drupal.settings.ahah[base]; + var element_settings = settings.ahah[base]; $(element_settings.selector).each(function() { element_settings.element = this; diff --git a/misc/autocomplete.js b/misc/autocomplete.js index 48253c70fec6..920865b4bdba 100644 --- a/misc/autocomplete.js +++ b/misc/autocomplete.js @@ -5,7 +5,7 @@ * Attaches the autocomplete behavior to all required fields. */ Drupal.behaviors.autocomplete = { - attach: function(context) { + attach: function(context, settings) { var acdb = []; $('input.autocomplete:not(.autocomplete-processed)', context).each(function () { var uri = this.value; diff --git a/misc/batch.js b/misc/batch.js index 17c4caae986d..b603a2ffcf18 100644 --- a/misc/batch.js +++ b/misc/batch.js @@ -5,16 +5,16 @@ * Attaches the batch behavior to progress bars. */ Drupal.behaviors.batch = { - attach: function(context) { + attach: function(context, settings) { // This behavior attaches by ID, so is only valid once on a page. if ($('#progress.batch-processed').size()) { return; } $('#progress', context).addClass('batch-processed').each(function () { var holder = this; - var uri = Drupal.settings.batch.uri; - var initMessage = Drupal.settings.batch.initMessage; - var errorMessage = Drupal.settings.batch.errorMessage; + var uri = settings.batch.uri; + var initMessage = settings.batch.initMessage; + var errorMessage = settings.batch.errorMessage; // Success: redirect to the summary. var updateCallback = function (progress, status, pb) { diff --git a/misc/collapse.js b/misc/collapse.js index 7da7e16b1aaf..35ebe5287b66 100644 --- a/misc/collapse.js +++ b/misc/collapse.js @@ -52,7 +52,7 @@ Drupal.collapseScrollIntoView = function (node) { }; Drupal.behaviors.collapse = { - attach: function(context) { + attach: function(context, settings) { $('fieldset.collapsible > legend:not(.collapse-processed)', context).each(function() { var fieldset = $(this.parentNode); // Expand if there are errors inside diff --git a/misc/drupal.js b/misc/drupal.js index 9b99a1d2eff6..9e6d9c40614d 100644 --- a/misc/drupal.js +++ b/misc/drupal.js @@ -51,13 +51,17 @@ Drupal.jsEnabled = document.getElementsByTagName && document.createElement && do * @param context * An element to attach behaviors to. If none is given, the document element * is used. + * @param settings + * An object containing settings for the current context. If none given, the + * global Drupal.settings object is used. */ -Drupal.attachBehaviors = function(context) { +Drupal.attachBehaviors = function(context, settings) { context = context || document; + settings = settings || Drupal.settings; // Execute all of them. $.each(Drupal.behaviors, function() { if ($.isFunction(this.attach)) { - this.attach(context); + this.attach(context, settings); } }); }; @@ -81,12 +85,13 @@ Drupal.attachBehaviors = function(context) { * * @see Drupal.attachBehaviors */ -Drupal.detachBehaviors = function(context) { +Drupal.detachBehaviors = function(context, settings) { context = context || document; + settings = settings || Drupal.settings; // Execute all of them. $.each(Drupal.behaviors, function() { if ($.isFunction(this.detach)) { - this.detach(context); + this.detach(context, settings); } }); }; @@ -320,7 +325,7 @@ if (Drupal.jsEnabled) { document.cookie = 'has_js=1; path=/'; // Attach all behaviors. $(document).ready(function() { - Drupal.attachBehaviors(this); + Drupal.attachBehaviors(this, Drupal.settings); }); } diff --git a/misc/form.js b/misc/form.js index fd34cd103340..2a2e02dad8ee 100644 --- a/misc/form.js +++ b/misc/form.js @@ -2,7 +2,7 @@ (function($) { Drupal.behaviors.multiselectSelector = { - attach: function(context) { + attach: function(context, settings) { // Automatically selects the right radio button in a multiselect control. $('.multiselect select:not(.multiselectSelector-processed)', context) .addClass('multiselectSelector-processed').change(function() { diff --git a/misc/tabledrag.js b/misc/tabledrag.js index 78854406d6d6..d07b3c780b1b 100644 --- a/misc/tabledrag.js +++ b/misc/tabledrag.js @@ -13,10 +13,10 @@ * See blocks.js for an example of adding additional functionality to tableDrag. */ Drupal.behaviors.tableDrag = { - attach: function(context) { - for (var base in Drupal.settings.tableDrag) { + attach: function(context, settings) { + for (var base in settings.tableDrag) { if (!$('#' + base + '.tabledrag-processed', context).size()) { - var tableSettings = Drupal.settings.tableDrag[base]; + var tableSettings = settings.tableDrag[base]; $('#' + base).filter(':not(.tabledrag-processed)').each(function() { // Create the new tableDrag instance. Save in the Drupal variable diff --git a/misc/tableheader.js b/misc/tableheader.js index 1c8c9bf1c9a6..fbc317583c54 100644 --- a/misc/tableheader.js +++ b/misc/tableheader.js @@ -8,7 +8,7 @@ Drupal.tableHeaderDoScroll = function() { }; Drupal.behaviors.tableHeader = { - attach: function(context) { + attach: function(context, settings) { // This breaks in anything less than IE 7. Prevent it from running. if ($.browser.msie && parseInt($.browser.version, 10) < 7) { return; diff --git a/misc/tableselect.js b/misc/tableselect.js index 152e93fb4d7b..43a5c2aa67b3 100644 --- a/misc/tableselect.js +++ b/misc/tableselect.js @@ -2,7 +2,7 @@ (function($) { Drupal.behaviors.tableSelect = { - attach: function(context) { + attach: function(context, settings) { $('form table:has(th.select-all):not(.tableSelect-processed)', context).each(Drupal.tableSelect); } }; diff --git a/misc/teaser.js b/misc/teaser.js index c7cdf56549ae..abb008bc70ea 100644 --- a/misc/teaser.js +++ b/misc/teaser.js @@ -7,13 +7,13 @@ * Note: depends on resizable textareas. */ Drupal.behaviors.teaser = { - attach: function(context) { + attach: function(context, settings) { $('textarea.teaser:not(.teaser-processed)', context).each(function() { var teaser = $(this).addClass('teaser-processed'); // Move teaser textarea before body, and remove its form-item wrapper. - var body = $('#'+ Drupal.settings.teaser[this.id]); - var checkbox = $('#'+ Drupal.settings.teaserCheckbox[this.id]).parent(); + var body = $('#'+ settings.teaser[this.id]); + var checkbox = $('#'+ settings.teaserCheckbox[this.id]).parent(); var checked = $(checkbox).children('input').attr('checked') ? true : false; var parent = teaser[0].parentNode; $(body).before(teaser); diff --git a/misc/textarea.js b/misc/textarea.js index 68e696b2dff1..2f7ee8d3ce2c 100644 --- a/misc/textarea.js +++ b/misc/textarea.js @@ -2,7 +2,7 @@ (function($) { Drupal.behaviors.textarea = { - attach: function(context) { + attach: function(context, settings) { $('textarea.resizable:not(.textarea-processed)', context).each(function() { // Avoid non-processed teasers. if ($(this).is(('textarea.teaser:not(.teaser-processed)'))) { diff --git a/misc/timezone.js b/misc/timezone.js index db7c4560af8b..c877353af439 100644 --- a/misc/timezone.js +++ b/misc/timezone.js @@ -5,7 +5,7 @@ * Set the client's system time zone as default values of form fields. */ Drupal.behaviors.setTimezone = { - attach: function(context) { + attach: function(context, settings) { $('select.timezone-detect:not(.timezone-processed)', context).addClass('timezone-processed').each(function() { var dateString = Date(); // In some client environments, date strings include a time zone @@ -51,7 +51,7 @@ Drupal.behaviors.setTimezone = { var element = this; $.ajax({ async: false, - url: Drupal.settings.basePath, + url: settings.basePath, data: { q: path, date: dateString }, dataType: 'json', success: function (data) { diff --git a/modules/block/block.js b/modules/block/block.js index c9c00fab2330..f095c3dbcb2c 100644 --- a/modules/block/block.js +++ b/modules/block/block.js @@ -8,7 +8,7 @@ * objects initialized in that behavior to update the row. */ Drupal.behaviors.blockDrag = { - attach: function(context) { + attach: function(context, settings) { var table = $('table#blocks'); var tableDrag = Drupal.tableDrag.blocks; // Get the blocks tableDrag object. diff --git a/modules/color/color.js b/modules/color/color.js index ff2e5195231f..8ab30fa90cca 100644 --- a/modules/color/color.js +++ b/modules/color/color.js @@ -2,7 +2,7 @@ (function($) { Drupal.behaviors.color = { - attach: function(context) { + attach: function(context, settings) { // This behavior attaches by ID, so is only valid once on a page. if ($('#color_scheme_form .color-form.color-processed').size()) { return; @@ -18,7 +18,7 @@ Drupal.behaviors.color = { var farb = $.farbtastic('#placeholder'); // Decode reference colors to HSL. - var reference = Drupal.settings.color.reference; + var reference = settings.color.reference; for (i in reference) { reference[i] = farb.RGBToHSL(farb.unpack(reference[i])); } diff --git a/modules/comment/comment.js b/modules/comment/comment.js index acd4502005d3..38a026b7276a 100644 --- a/modules/comment/comment.js +++ b/modules/comment/comment.js @@ -2,7 +2,7 @@ (function($) { Drupal.behaviors.comment = { - attach: function(context) { + attach: function(context, settings) { var parts = new Array("name", "homepage", "mail"); var cookie = ''; for (i=0;i<3;i++) { diff --git a/modules/profile/profile.js b/modules/profile/profile.js index 7668e0ac55b6..f1d53378bcec 100644 --- a/modules/profile/profile.js +++ b/modules/profile/profile.js @@ -9,7 +9,7 @@ * a warning message when removing the last field from a profile category. */ Drupal.behaviors.profileDrag = { - attach: function(context) { + attach: function(context, settings) { var table = $('#profile-fields'); var tableDrag = Drupal.tableDrag['profile-fields']; // Get the profile tableDrag object. diff --git a/modules/simpletest/simpletest.js b/modules/simpletest/simpletest.js index 9026de11b002..06fb70f3095d 100644 --- a/modules/simpletest/simpletest.js +++ b/modules/simpletest/simpletest.js @@ -5,18 +5,18 @@ * Add the cool table collapsing on the testing overview page. */ Drupal.behaviors.simpleTestMenuCollapse = { - attach: function() { + attach: function(context, settings) { var timeout = null; // Adds expand-collapse functionality. $('div.simpletest-image').each(function() { - direction = Drupal.settings.simpleTest[$(this).attr('id')].imageDirection; - $(this).html(Drupal.settings.simpleTest.images[direction]); + direction = settings.simpleTest[$(this).attr('id')].imageDirection; + $(this).html(settings.simpleTest.images[direction]); }); // Adds group toggling functionality to arrow images. $('div.simpletest-image').click(function() { - var trs = $(this).parents('tbody').children('.' + Drupal.settings.simpleTest[this.id].testClass); - var direction = Drupal.settings.simpleTest[this.id].imageDirection; + var trs = $(this).parents('tbody').children('.' + settings.simpleTest[this.id].testClass); + var direction = settings.simpleTest[this.id].imageDirection; var row = direction ? trs.size() - 1 : 0; // If clicked in the middle of expanding a group, stop so we can switch directions. @@ -48,8 +48,8 @@ Drupal.behaviors.simpleTestMenuCollapse = { rowToggle(); // Toggle the arrow image next to the test group title. - $(this).html(Drupal.settings.simpleTest.images[(direction ? 0 : 1)]); - Drupal.settings.simpleTest[this.id].imageDirection = !direction; + $(this).html(settings.simpleTest.images[(direction ? 0 : 1)]); + settings.simpleTest[this.id].imageDirection = !direction; }); } @@ -60,9 +60,9 @@ Drupal.behaviors.simpleTestMenuCollapse = { * selected/deselected. */ Drupal.behaviors.simpleTestSelectAll = { - attach: function() { + attach: function(context, settings) { $('td.simpletest-select-all').each(function() { - var testCheckboxes = Drupal.settings.simpleTest['simpletest-test-group-' + $(this).attr('id')].testNames; + var testCheckboxes = settings.simpleTest['simpletest-test-group-' + $(this).attr('id')].testNames; var groupCheckbox = $(''); // Each time a single-test checkbox is checked or unchecked, make sure diff --git a/modules/system/system.js b/modules/system/system.js index 8a47c3d10f26..221b03b23638 100644 --- a/modules/system/system.js +++ b/modules/system/system.js @@ -9,14 +9,14 @@ * are currently enabled. */ Drupal.behaviors.cleanURLsSettingsCheck = { - attach: function(context) { + attach: function(context, settings) { // This behavior attaches by ID, so is only valid once on a page. // Also skip if we are on an install page, as Drupal.cleanURLsInstallCheck will handle // the processing. if ($("#clean-url.clean-url-processed, #clean-url.install").size()) { return; } - var url = Drupal.settings.basePath +"admin/settings/clean-urls/check"; + var url = settings.basePath +"admin/settings/clean-urls/check"; $("#clean-url .description span").html('