diff options
Diffstat (limited to 'misc')
73 files changed, 61 insertions, 108 deletions
diff --git a/misc/ajax.js b/misc/ajax.js index b17e64a9f..fb03e2b30 100644 --- a/misc/ajax.js +++ b/misc/ajax.js @@ -1,26 +1,25 @@ -// $Id$ (function ($) { /** - * Provides AJAX page updating via jQuery $.ajax (Asynchronous JavaScript and XML). + * Provides Ajax page updating via jQuery $.ajax (Asynchronous JavaScript and XML). * - * AJAX is a method of making a request via Javascript while viewing an HTML + * Ajax is a method of making a request via JavaScript while viewing an HTML * page. The request returns an array of commands encoded in JSON, which is * then executed to make any changes that are necessary to the page. * * Drupal uses this file to enhance form elements with #ajax['path'] and * #ajax['wrapper'] properties. If set, this file will automatically be included - * to provide AJAX capabilities. + * to provide Ajax capabilities. */ Drupal.ajax = Drupal.ajax || {}; /** - * Attaches the AJAX behavior to each AJAX form element. + * Attaches the Ajax behavior to each Ajax form element. */ Drupal.behaviors.AJAX = { attach: function (context, settings) { - // Load all AJAX behaviors specified in the settings. + // Load all Ajax behaviors specified in the settings. for (var base in settings.ajax) { if (!$('#' + base + '.ajax-processed').length) { var element_settings = settings.ajax[base]; @@ -37,7 +36,7 @@ Drupal.behaviors.AJAX = { } } - // Bind AJAX behaviors to all items showing the class. + // Bind Ajax behaviors to all items showing the class. $('.use-ajax:not(.ajax-processed)').addClass('ajax-processed').each(function () { var element_settings = {}; // Clicked links look better with the throbber than the progress bar. @@ -53,11 +52,11 @@ Drupal.behaviors.AJAX = { Drupal.ajax[base] = new Drupal.ajax(base, this, element_settings); }); - // This class means to submit the form to the action using AJAX. + // This class means to submit the form to the action using Ajax. $('.use-ajax-submit:not(.ajax-processed)').addClass('ajax-processed').each(function () { var element_settings = {}; - // AJAX submits specified in this manner automatically submit to the + // Ajax submits specified in this manner automatically submit to the // normal form action. element_settings.url = $(this.form).attr('action'); // Form submit button clicks need to tell the form what was clicked so @@ -75,13 +74,13 @@ Drupal.behaviors.AJAX = { }; /** - * AJAX object. + * Ajax object. * - * All AJAX objects on a page are accessible through the global Drupal.ajax + * All Ajax objects on a page are accessible through the global Drupal.ajax * object and are keyed by the submit button's ID. You can access them from * your module's JavaScript file to override properties or functions. * - * For example, if your AJAX enabled button has the ID 'edit-submit', you can + * For example, if your Ajax enabled button has the ID 'edit-submit', you can * redefine the function that is called to insert the new content like this * (inside a Drupal.behaviors attach block): * @code @@ -134,7 +133,7 @@ Drupal.ajax = function (base, element, element_settings) { this.wrapper = '#' + element_settings.wrapper; // If there isn't a form, jQuery.ajax() will be used instead, allowing us to - // bind AJAX to links as well. + // bind Ajax to links as well. if (this.element.form) { this.form = $(this.element.form); } @@ -179,7 +178,7 @@ Drupal.ajax = function (base, element, element_settings) { return ajax.eventResponse(this, event); }); - // If necessary, enable keyboard submission so that AJAX behaviors + // If necessary, enable keyboard submission so that Ajax behaviors // can be triggered through keyboard input as well as e.g. a mousedown // action. if (element_settings.keypress) { @@ -192,7 +191,7 @@ Drupal.ajax = function (base, element, element_settings) { /** * Handle a key press. * - * The AJAX object will, if instructed, bind to a key press response. This + * The Ajax object will, if instructed, bind to a key press response. This * will test to see if the key press is valid to trigger this event and * if it is, trigger it for us and prevent other keypresses from triggering. * In this case we're handling RETURN and SPACEBAR keypresses (event codes 13 @@ -214,10 +213,10 @@ Drupal.ajax.prototype.keypressResponse = function (element, event) { }; /** - * Handle an event that triggers an AJAX response. + * Handle an event that triggers an Ajax response. * - * When an event that triggers an AJAX response happens, this method will - * perform the actual AJAX call. It is bound to the event using + * When an event that triggers an Ajax response happens, this method will + * perform the actual Ajax call. It is bound to the event using * bind() in the constructor, and it uses the options specified on the * ajax object. */ @@ -315,23 +314,41 @@ Drupal.ajax.prototype.beforeSubmit = function (form_values, element, options) { } /** - * Prepare the AJAX request before it is sent. + * Prepare the Ajax request before it is sent. */ Drupal.ajax.prototype.beforeSend = function (xmlhttprequest, options) { + // For forms without file inputs, the jQuery Form plugin serializes the form + // values, and then calls jQuery's $.ajax() function, which invokes this + // handler. In this circumstance, options.extraData is never used. For forms + // with file inputs, the jQuery Form plugin uses the browser's normal form + // submission mechanism, but captures the response in a hidden IFRAME. In this + // circumstance, it calls this handler first, and then appends hidden fields + // to the form to submit the values in options.extraData. There is no simple + // way to know which submission mechanism will be used, so we add to extraData + // regardless, and allow it to be ignored in the former case. + if (this.form) { + options.extraData = options.extraData || {}; + + // Let the server know when the IFRAME submission mechanism is used. The + // server can use this information to wrap the JSON response in a TEXTAREA, + // as per http://jquery.malsup.com/form/#file-upload. + options.extraData.ajax_iframe_upload = '1'; + + // The triggering element is about to be disabled (see below), but if it + // contains a value (e.g., a checkbox, textfield, select, etc.), ensure that + // value is included in the submission. As per above, submissions that use + // $.ajax() are already serialized prior to the element being disabled, so + // this is only needed for IFRAME submissions. + var v = $.fieldValue(this.element); + if (v !== null) { + options.extraData[this.element.name] = v; + } + } + // Disable the element that received the change to prevent user interface - // interaction while the AJAX request is in progress. ajax.ajaxing prevents + // interaction while the Ajax request is in progress. ajax.ajaxing prevents // the element from triggering a new request, but does not prevent the user // from changing its value. - // Forms without file inputs are already serialized before this function is - // called. Forms with file inputs use an IFRAME to perform a POST request - // similar to a browser, so disabled elements are not contained in the - // submitted values. Therefore, we manually add the element's value to - // options.extraData. - var v = $.fieldValue(this.element); - if (v !== null) { - options.extraData = options.extraData || {}; - options.extraData[this.element.name] = v; - } $(this.element).addClass('progress-disabled').attr('disabled', true); // Insert progressbar or throbber. @@ -470,7 +487,7 @@ Drupal.ajax.prototype.commands = { // sufficiently tested whether attachBehaviors() can be successfully called // with a context object that includes top-level text nodes. However, to // give developers full control of the HTML appearing in the page, and to - // enable AJAX content to be inserted in places where DIV elements are not + // enable Ajax content to be inserted in places where DIV elements are not // allowed (e.g., within TABLE, TR, and SPAN parents), we check if the new // content satisfies the requirement of a single top-level element, and // only use the container DIV created above when it doesn't. For more diff --git a/misc/authorize.js b/misc/authorize.js index 3445d599a..66b789791 100644 --- a/misc/authorize.js +++ b/misc/authorize.js @@ -1,4 +1,3 @@ -// $Id$ /** * @file diff --git a/misc/autocomplete.js b/misc/autocomplete.js index d66054bbc..5e85be44f 100644 --- a/misc/autocomplete.js +++ b/misc/autocomplete.js @@ -1,4 +1,3 @@ -// $Id$ (function ($) { /** diff --git a/misc/batch.js b/misc/batch.js index d0a32f2a1..fee71a52f 100644 --- a/misc/batch.js +++ b/misc/batch.js @@ -1,4 +1,3 @@ -// $Id$ (function ($) { /** diff --git a/misc/collapse.js b/misc/collapse.js index 28b3090ee..1a98dc0e0 100644 --- a/misc/collapse.js +++ b/misc/collapse.js @@ -1,4 +1,3 @@ -// $Id$ (function ($) { /** diff --git a/misc/drupal.js b/misc/drupal.js index 598cec32d..3cebbd284 100644 --- a/misc/drupal.js +++ b/misc/drupal.js @@ -1,4 +1,3 @@ -// $Id$ var Drupal = Drupal || { 'settings': {}, 'behaviors': {}, 'locale': {} }; @@ -11,7 +10,7 @@ jQuery.noConflict(); * Attach all registered behaviors to a page element. * * Behaviors are event-triggered actions that attach to page elements, enhancing - * default non-Javascript UIs. Behaviors are registered in the Drupal.behaviors + * default non-JavaScript UIs. Behaviors are registered in the Drupal.behaviors * object using the method 'attach' and optionally also 'detach' as follows: * @code * Drupal.behaviors.behaviorName = { @@ -25,7 +24,7 @@ jQuery.noConflict(); * @endcode * * Drupal.attachBehaviors is added below to the jQuery ready event and so - * runs on initial page load. Developers implementing AHAH/AJAX in their + * runs on initial page load. Developers implementing AHAH/Ajax in their * solutions should also call this function after new page content has been * loaded, feeding in an element to be processed, in order to attach all * behaviors to the new content. @@ -61,7 +60,7 @@ Drupal.attachBehaviors = function (context, settings) { /** * Detach registered behaviors from a page element. * - * Developers implementing AHAH/AJAX in their solutions should call this + * Developers implementing AHAH/Ajax in their solutions should call this * function before page content is about to be removed, feeding in an element * to be processed, in order to allow special behaviors to detach from the * content. @@ -89,7 +88,7 @@ Drupal.attachBehaviors = function (context, settings) { * IFRAME elements reload their "src" when being moved within the DOM, * behaviors bound to IFRAME elements (like WYSIWYG editors) may need to * take some action. - * - serialize: When an AJAX form is submitted, this is called with the + * - serialize: When an Ajax form is submitted, this is called with the * form as the context. This provides every behavior within the form an * opportunity to ensure that the field elements have correct content * in them before the form is serialized. The canonical use-case is so @@ -302,7 +301,7 @@ Drupal.getSelection = function (element) { }; /** - * Build an error message from an AJAX response. + * Build an error message from an Ajax response. */ Drupal.ajaxError = function (xmlhttp, uri) { var statusCode, statusText, pathText, responseText, readyStateText, message; diff --git a/misc/farbtastic/farbtastic.css b/misc/farbtastic/farbtastic.css index e4c512cef..25a68ebf7 100644 --- a/misc/farbtastic/farbtastic.css +++ b/misc/farbtastic/farbtastic.css @@ -1,4 +1,3 @@ -/* $Id$ */ .farbtastic { position: relative; diff --git a/misc/farbtastic/farbtastic.js b/misc/farbtastic/farbtastic.js index 8c04078f9..10c9e7635 100644 --- a/misc/farbtastic/farbtastic.js +++ b/misc/farbtastic/farbtastic.js @@ -1,4 +1,3 @@ -// $Id$ (function(e){e.fn.farbtastic=function(f){e.farbtastic(this,f);return this};e.farbtastic=function(f,l){f=e(f).get(0);return f.farbtastic||(f.farbtastic=new e._farbtastic(f,l))};e._farbtastic=function(f,l){var a=this;e(f).html('<div class="farbtastic"><div class="color"></div><div class="wheel"></div><div class="overlay"></div><div class="h-marker marker"></div><div class="sl-marker marker"></div></div>');var k=e(".farbtastic",f);a.wheel=e(".wheel",f).get(0);a.radius=84;a.square=100;a.width=194;navigator.appVersion.match(/MSIE [0-6]\./)&& e("*",k).each(function(){if(this.currentStyle.backgroundImage!="none"){var b=this.currentStyle.backgroundImage;b=this.currentStyle.backgroundImage.substring(5,b.length-2);e(this).css({backgroundImage:"none",filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop, src='"+b+"')"})}});a.linkTo=function(b){typeof a.callback=="object"&&e(a.callback).unbind("keyup",a.updateValue);a.color=null;if(typeof b=="function")a.callback=b;else if(typeof b=="object"||typeof b=="string"){a.callback= e(b);a.callback.bind("keyup",a.updateValue);a.callback.get(0).value&&a.setColor(a.callback.get(0).value)}return this};a.updateValue=function(){this.value&&this.value!=a.color&&a.setColor(this.value)};a.setColor=function(b){var c=a.unpack(b);if(a.color!=b&&c){a.color=b;a.rgb=c;a.hsl=a.RGBToHSL(a.rgb);a.updateDisplay()}return this};a.setHSL=function(b){a.hsl=b;a.rgb=a.HSLToRGB(b);a.color=a.pack(a.rgb);a.updateDisplay();return this};a.widgetCoords=function(b){var c=e(a.wheel).offset();return{x:b.pageX- diff --git a/misc/form.js b/misc/form.js index 919037729..259b84eb3 100644 --- a/misc/form.js +++ b/misc/form.js @@ -1,4 +1,3 @@ -// $Id$ (function ($) { /** diff --git a/misc/jquery.ba-bbq.js b/misc/jquery.ba-bbq.js index b84a23272..deb9a2fa4 100644 --- a/misc/jquery.ba-bbq.js +++ b/misc/jquery.ba-bbq.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery BBQ: Back Button & Query Library - v1.2.1 - 2/17/2010 diff --git a/misc/jquery.cookie.js b/misc/jquery.cookie.js index 401f356dc..79f514c20 100644 --- a/misc/jquery.cookie.js +++ b/misc/jquery.cookie.js @@ -1,4 +1,3 @@ -// $Id$ /** * Cookie plugin 1.0 diff --git a/misc/jquery.form.js b/misc/jquery.form.js index b0089b67f..7a6f1b29f 100644 --- a/misc/jquery.form.js +++ b/misc/jquery.form.js @@ -1,4 +1,3 @@ -// $Id$ /*! * jQuery Form Plugin diff --git a/misc/jquery.js b/misc/jquery.js index 0701b719b..e900c19a3 100644 --- a/misc/jquery.js +++ b/misc/jquery.js @@ -1,4 +1,3 @@ -// $Id$ /*! * jQuery JavaScript Library v1.4.4 diff --git a/misc/jquery.once.js b/misc/jquery.once.js index 00e811a49..506fb4867 100644 --- a/misc/jquery.once.js +++ b/misc/jquery.once.js @@ -1,4 +1,3 @@ -// $Id$ /** * jQuery Once Plugin v1.2 diff --git a/misc/machine-name.js b/misc/machine-name.js index 4c1ad8309..00a648a1b 100644 --- a/misc/machine-name.js +++ b/misc/machine-name.js @@ -1,4 +1,3 @@ -// $Id$ (function ($) { /** diff --git a/misc/print-rtl.css b/misc/print-rtl.css index ee496e4a9..f99287a57 100644 --- a/misc/print-rtl.css +++ b/misc/print-rtl.css @@ -1,4 +1,3 @@ -/* $Id$ */ body { direction: rtl; diff --git a/misc/print.css b/misc/print.css index 894f6e44b..0a56ef13b 100644 --- a/misc/print.css +++ b/misc/print.css @@ -1,4 +1,3 @@ -/* $Id$ */ body { margin: 1em; diff --git a/misc/progress.js b/misc/progress.js index b871b8d86..822666af4 100644 --- a/misc/progress.js +++ b/misc/progress.js @@ -1,4 +1,3 @@ -// $Id$ (function ($) { /** diff --git a/misc/states.js b/misc/states.js index 55c1efe60..ec070c9a6 100644 --- a/misc/states.js +++ b/misc/states.js @@ -1,4 +1,3 @@ -// $Id$ (function ($) { /** @@ -363,7 +362,12 @@ states.State.prototype = { $(document).bind('state:required', function(e) { if (e.trigger) { - $(e.target).closest('.form-item, .form-submit, .form-wrapper')[e.value ? 'addClass' : 'removeClass']('form-required'); + if (e.value) { + $(e.target).closest('.form-item, .form-wrapper').find('label').append('<span class="form-required">*</span>'); + } + else { + $(e.target).closest('.form-item, .form-wrapper').find('label .form-required').remove(); + } } }); diff --git a/misc/tabledrag.js b/misc/tabledrag.js index 867f9c344..b566168c3 100644 --- a/misc/tabledrag.js +++ b/misc/tabledrag.js @@ -1,4 +1,3 @@ -// $Id$ (function ($) { /** @@ -1080,7 +1079,7 @@ Drupal.tableDrag.prototype.row.prototype.indent = function (indentDiff) { /** * Find all siblings for a row, either according to its subgroup or indentation. - * Note that the passed in row is included in the list of siblings. + * Note that the passed-in row is included in the list of siblings. * * @param settings * The field settings we're using to identify what constitutes a sibling. diff --git a/misc/tableheader.js b/misc/tableheader.js index c3e2e3a9d..949ef5212 100644 --- a/misc/tableheader.js +++ b/misc/tableheader.js @@ -1,4 +1,3 @@ -// $Id$ (function ($) { /** diff --git a/misc/tableselect.js b/misc/tableselect.js index cba0c57a5..a50110e94 100644 --- a/misc/tableselect.js +++ b/misc/tableselect.js @@ -1,9 +1,8 @@ -// $Id$ (function ($) { Drupal.behaviors.tableSelect = { attach: function (context, settings) { - $('form table:has(th.select-all)', context).once('table-select', Drupal.tableSelect); + $('table:has(th.select-all)', context).once('table-select', Drupal.tableSelect); } }; diff --git a/misc/textarea.js b/misc/textarea.js index 022d9784e..0ab5e7120 100644 --- a/misc/textarea.js +++ b/misc/textarea.js @@ -1,4 +1,3 @@ -// $Id$ (function ($) { Drupal.behaviors.textarea = { diff --git a/misc/timezone.js b/misc/timezone.js index b708875f5..544973040 100644 --- a/misc/timezone.js +++ b/misc/timezone.js @@ -1,4 +1,3 @@ -// $Id$ (function ($) { /** diff --git a/misc/ui/jquery.effects.blind.min.js b/misc/ui/jquery.effects.blind.min.js index 7b6da1526..ed7c74f10 100644 --- a/misc/ui/jquery.effects.blind.min.js +++ b/misc/ui/jquery.effects.blind.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Effects Blind 1.8.7 diff --git a/misc/ui/jquery.effects.bounce.min.js b/misc/ui/jquery.effects.bounce.min.js index 065847823..ca63813f7 100644 --- a/misc/ui/jquery.effects.bounce.min.js +++ b/misc/ui/jquery.effects.bounce.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Effects Bounce 1.8.7 diff --git a/misc/ui/jquery.effects.clip.min.js b/misc/ui/jquery.effects.clip.min.js index 594baf589..75966ec4d 100644 --- a/misc/ui/jquery.effects.clip.min.js +++ b/misc/ui/jquery.effects.clip.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Effects Clip 1.8.7 diff --git a/misc/ui/jquery.effects.core.min.js b/misc/ui/jquery.effects.core.min.js index dca8c32b7..40c15504a 100644 --- a/misc/ui/jquery.effects.core.min.js +++ b/misc/ui/jquery.effects.core.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Effects 1.8.7 diff --git a/misc/ui/jquery.effects.drop.min.js b/misc/ui/jquery.effects.drop.min.js index 0e4e33de1..37a034d35 100644 --- a/misc/ui/jquery.effects.drop.min.js +++ b/misc/ui/jquery.effects.drop.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Effects Drop 1.8.7 diff --git a/misc/ui/jquery.effects.explode.min.js b/misc/ui/jquery.effects.explode.min.js index 0352f72be..726f3d5b8 100644 --- a/misc/ui/jquery.effects.explode.min.js +++ b/misc/ui/jquery.effects.explode.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Effects Explode 1.8.7 diff --git a/misc/ui/jquery.effects.fade.min.js b/misc/ui/jquery.effects.fade.min.js index c5da783b4..71127f9ad 100644 --- a/misc/ui/jquery.effects.fade.min.js +++ b/misc/ui/jquery.effects.fade.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Effects Fade 1.8.7 diff --git a/misc/ui/jquery.effects.fold.min.js b/misc/ui/jquery.effects.fold.min.js index 53372a962..ccc6b2949 100644 --- a/misc/ui/jquery.effects.fold.min.js +++ b/misc/ui/jquery.effects.fold.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Effects Fold 1.8.7 diff --git a/misc/ui/jquery.effects.highlight.min.js b/misc/ui/jquery.effects.highlight.min.js index 0daa25498..0ed3d8985 100644 --- a/misc/ui/jquery.effects.highlight.min.js +++ b/misc/ui/jquery.effects.highlight.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Effects Highlight 1.8.7 diff --git a/misc/ui/jquery.effects.pulsate.min.js b/misc/ui/jquery.effects.pulsate.min.js index 2ff338d87..658d8d03f 100644 --- a/misc/ui/jquery.effects.pulsate.min.js +++ b/misc/ui/jquery.effects.pulsate.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Effects Pulsate 1.8.7 diff --git a/misc/ui/jquery.effects.scale.min.js b/misc/ui/jquery.effects.scale.min.js index 3ed44ef46..206ef12f4 100644 --- a/misc/ui/jquery.effects.scale.min.js +++ b/misc/ui/jquery.effects.scale.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Effects Scale 1.8.7 diff --git a/misc/ui/jquery.effects.shake.min.js b/misc/ui/jquery.effects.shake.min.js index 555d0f3e8..44542f326 100644 --- a/misc/ui/jquery.effects.shake.min.js +++ b/misc/ui/jquery.effects.shake.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Effects Shake 1.8.7 diff --git a/misc/ui/jquery.effects.slide.min.js b/misc/ui/jquery.effects.slide.min.js index 8a153bf1d..94f5906f3 100644 --- a/misc/ui/jquery.effects.slide.min.js +++ b/misc/ui/jquery.effects.slide.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Effects Slide 1.8.7 diff --git a/misc/ui/jquery.effects.transfer.min.js b/misc/ui/jquery.effects.transfer.min.js index ad681c1df..0addaa8bb 100644 --- a/misc/ui/jquery.effects.transfer.min.js +++ b/misc/ui/jquery.effects.transfer.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Effects Transfer 1.8.7 diff --git a/misc/ui/jquery.ui.accordion.css b/misc/ui/jquery.ui.accordion.css index a015d7f61..fcd7c55da 100644 --- a/misc/ui/jquery.ui.accordion.css +++ b/misc/ui/jquery.ui.accordion.css @@ -1,4 +1,3 @@ -/* $Id$ */ /* * jQuery UI Accordion 1.8.7 diff --git a/misc/ui/jquery.ui.accordion.min.js b/misc/ui/jquery.ui.accordion.min.js index ba08df075..0e0ee39af 100644 --- a/misc/ui/jquery.ui.accordion.min.js +++ b/misc/ui/jquery.ui.accordion.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Accordion 1.8.7 diff --git a/misc/ui/jquery.ui.autocomplete.css b/misc/ui/jquery.ui.autocomplete.css index c949cab95..80a5789eb 100644 --- a/misc/ui/jquery.ui.autocomplete.css +++ b/misc/ui/jquery.ui.autocomplete.css @@ -1,4 +1,3 @@ -/* $Id$ */ /* * jQuery UI Autocomplete 1.8.7 diff --git a/misc/ui/jquery.ui.autocomplete.min.js b/misc/ui/jquery.ui.autocomplete.min.js index 8bbcaafd1..9983ec770 100644 --- a/misc/ui/jquery.ui.autocomplete.min.js +++ b/misc/ui/jquery.ui.autocomplete.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Autocomplete 1.8.7 diff --git a/misc/ui/jquery.ui.button.css b/misc/ui/jquery.ui.button.css index 775bb599e..973c31453 100644 --- a/misc/ui/jquery.ui.button.css +++ b/misc/ui/jquery.ui.button.css @@ -1,4 +1,3 @@ -/* $Id$ */ /* * jQuery UI Button 1.8.7 diff --git a/misc/ui/jquery.ui.button.min.js b/misc/ui/jquery.ui.button.min.js index 696d8dc69..26366aa4b 100644 --- a/misc/ui/jquery.ui.button.min.js +++ b/misc/ui/jquery.ui.button.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Button 1.8.7 diff --git a/misc/ui/jquery.ui.core.css b/misc/ui/jquery.ui.core.css index 8f2c9b7dc..d436225e4 100644 --- a/misc/ui/jquery.ui.core.css +++ b/misc/ui/jquery.ui.core.css @@ -1,4 +1,3 @@ -/* $Id$ */ /* * jQuery UI CSS Framework 1.8.7 diff --git a/misc/ui/jquery.ui.core.min.js b/misc/ui/jquery.ui.core.min.js index de22e92ab..976e056ff 100644 --- a/misc/ui/jquery.ui.core.min.js +++ b/misc/ui/jquery.ui.core.min.js @@ -1,4 +1,3 @@ -// $Id$ /*! * jQuery UI 1.8.7 diff --git a/misc/ui/jquery.ui.datepicker.css b/misc/ui/jquery.ui.datepicker.css index 1a118fbda..a90488405 100644 --- a/misc/ui/jquery.ui.datepicker.css +++ b/misc/ui/jquery.ui.datepicker.css @@ -1,4 +1,3 @@ -/* $Id$ */ /* * jQuery UI Datepicker 1.8.7 diff --git a/misc/ui/jquery.ui.datepicker.min.js b/misc/ui/jquery.ui.datepicker.min.js index 941b33a96..11af48115 100644 --- a/misc/ui/jquery.ui.datepicker.min.js +++ b/misc/ui/jquery.ui.datepicker.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Datepicker 1.8.7 diff --git a/misc/ui/jquery.ui.dialog.css b/misc/ui/jquery.ui.dialog.css index e66293c5a..156e03acf 100644 --- a/misc/ui/jquery.ui.dialog.css +++ b/misc/ui/jquery.ui.dialog.css @@ -1,4 +1,3 @@ -/* $Id$ */ /* * jQuery UI Dialog 1.8.7 diff --git a/misc/ui/jquery.ui.dialog.min.js b/misc/ui/jquery.ui.dialog.min.js index 656022b7d..d60151c20 100644 --- a/misc/ui/jquery.ui.dialog.min.js +++ b/misc/ui/jquery.ui.dialog.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Dialog 1.8.7 diff --git a/misc/ui/jquery.ui.draggable.min.js b/misc/ui/jquery.ui.draggable.min.js index 6915ba939..59a741825 100644 --- a/misc/ui/jquery.ui.draggable.min.js +++ b/misc/ui/jquery.ui.draggable.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Draggable 1.8.7 diff --git a/misc/ui/jquery.ui.droppable.min.js b/misc/ui/jquery.ui.droppable.min.js index 698b28cc3..12efd10bc 100644 --- a/misc/ui/jquery.ui.droppable.min.js +++ b/misc/ui/jquery.ui.droppable.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Droppable 1.8.7 diff --git a/misc/ui/jquery.ui.mouse.min.js b/misc/ui/jquery.ui.mouse.min.js index 1cd60880a..18057ebd0 100644 --- a/misc/ui/jquery.ui.mouse.min.js +++ b/misc/ui/jquery.ui.mouse.min.js @@ -1,4 +1,3 @@ -// $Id$ /*! * jQuery UI Mouse 1.8.7 diff --git a/misc/ui/jquery.ui.position.min.js b/misc/ui/jquery.ui.position.min.js index c45f08577..2e1451efc 100644 --- a/misc/ui/jquery.ui.position.min.js +++ b/misc/ui/jquery.ui.position.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Position 1.8.7 diff --git a/misc/ui/jquery.ui.progressbar.css b/misc/ui/jquery.ui.progressbar.css index 8f193a16d..75610308b 100644 --- a/misc/ui/jquery.ui.progressbar.css +++ b/misc/ui/jquery.ui.progressbar.css @@ -1,4 +1,3 @@ -/* $Id$ */ /* * jQuery UI Progressbar 1.8.7 diff --git a/misc/ui/jquery.ui.progressbar.min.js b/misc/ui/jquery.ui.progressbar.min.js index 03c6bbd90..7a8f0b790 100644 --- a/misc/ui/jquery.ui.progressbar.min.js +++ b/misc/ui/jquery.ui.progressbar.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Progressbar 1.8.7 diff --git a/misc/ui/jquery.ui.resizable.css b/misc/ui/jquery.ui.resizable.css index 6aa1e140e..e0f15cc61 100644 --- a/misc/ui/jquery.ui.resizable.css +++ b/misc/ui/jquery.ui.resizable.css @@ -1,4 +1,3 @@ -/* $Id$ */ /* * jQuery UI Resizable 1.8.7 diff --git a/misc/ui/jquery.ui.resizable.min.js b/misc/ui/jquery.ui.resizable.min.js index 33fb618db..4df6eb770 100644 --- a/misc/ui/jquery.ui.resizable.min.js +++ b/misc/ui/jquery.ui.resizable.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Resizable 1.8.7 diff --git a/misc/ui/jquery.ui.selectable.css b/misc/ui/jquery.ui.selectable.css index d06dfbc3c..1489dcf36 100644 --- a/misc/ui/jquery.ui.selectable.css +++ b/misc/ui/jquery.ui.selectable.css @@ -1,4 +1,3 @@ -/* $Id$ */ /* * jQuery UI Selectable 1.8.7 diff --git a/misc/ui/jquery.ui.selectable.min.js b/misc/ui/jquery.ui.selectable.min.js index 64fe9f90e..e2ec516e0 100644 --- a/misc/ui/jquery.ui.selectable.min.js +++ b/misc/ui/jquery.ui.selectable.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Selectable 1.8.7 diff --git a/misc/ui/jquery.ui.slider.css b/misc/ui/jquery.ui.slider.css index 861bb49c3..a56a51384 100644 --- a/misc/ui/jquery.ui.slider.css +++ b/misc/ui/jquery.ui.slider.css @@ -1,4 +1,3 @@ -/* $Id$ */ /* * jQuery UI Slider 1.8.7 diff --git a/misc/ui/jquery.ui.slider.min.js b/misc/ui/jquery.ui.slider.min.js index 35b36a85f..dc36f15fe 100644 --- a/misc/ui/jquery.ui.slider.min.js +++ b/misc/ui/jquery.ui.slider.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Slider 1.8.7 diff --git a/misc/ui/jquery.ui.sortable.min.js b/misc/ui/jquery.ui.sortable.min.js index 4e856560d..2cb1eaa54 100644 --- a/misc/ui/jquery.ui.sortable.min.js +++ b/misc/ui/jquery.ui.sortable.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Sortable 1.8.7 diff --git a/misc/ui/jquery.ui.tabs.css b/misc/ui/jquery.ui.tabs.css index 5a22a03d6..94420e185 100644 --- a/misc/ui/jquery.ui.tabs.css +++ b/misc/ui/jquery.ui.tabs.css @@ -1,4 +1,3 @@ -/* $Id$ */ /* * jQuery UI Tabs 1.8.7 diff --git a/misc/ui/jquery.ui.tabs.min.js b/misc/ui/jquery.ui.tabs.min.js index e6fb04287..aeb42bb4b 100644 --- a/misc/ui/jquery.ui.tabs.min.js +++ b/misc/ui/jquery.ui.tabs.min.js @@ -1,4 +1,3 @@ -// $Id$ /* * jQuery UI Tabs 1.8.7 diff --git a/misc/ui/jquery.ui.theme.css b/misc/ui/jquery.ui.theme.css index 205c9cf93..1e622b46a 100644 --- a/misc/ui/jquery.ui.theme.css +++ b/misc/ui/jquery.ui.theme.css @@ -1,4 +1,3 @@ -/* $Id$ */ /* * jQuery UI CSS Framework 1.8.7 diff --git a/misc/ui/jquery.ui.widget.min.js b/misc/ui/jquery.ui.widget.min.js index fd7efcb13..165a272b7 100644 --- a/misc/ui/jquery.ui.widget.min.js +++ b/misc/ui/jquery.ui.widget.min.js @@ -1,4 +1,3 @@ -// $Id$ /*! * jQuery UI Widget 1.8.7 diff --git a/misc/vertical-tabs-rtl.css b/misc/vertical-tabs-rtl.css index 4598c90fd..7fb0347d4 100644 --- a/misc/vertical-tabs-rtl.css +++ b/misc/vertical-tabs-rtl.css @@ -1,4 +1,3 @@ -/* $Id$ */ div.vertical-tabs { margin-left: 0; diff --git a/misc/vertical-tabs.css b/misc/vertical-tabs.css index ba5db772d..10e815391 100644 --- a/misc/vertical-tabs.css +++ b/misc/vertical-tabs.css @@ -1,4 +1,3 @@ -/* $Id$ */ div.vertical-tabs { margin: 1em 0 1em 15em; /* LTR */ diff --git a/misc/vertical-tabs.js b/misc/vertical-tabs.js index 0c66ec6c1..82dcd2c62 100644 --- a/misc/vertical-tabs.js +++ b/misc/vertical-tabs.js @@ -1,4 +1,3 @@ -// $Id$ (function ($) { diff --git a/misc/watchdog-error.png b/misc/watchdog-error.png Binary files differindex f7e60e523..db05365aa 100644 --- a/misc/watchdog-error.png +++ b/misc/watchdog-error.png diff --git a/misc/watchdog-ok.png b/misc/watchdog-ok.png Binary files differindex 6ebea3e53..1d7baa06e 100644 --- a/misc/watchdog-ok.png +++ b/misc/watchdog-ok.png diff --git a/misc/watchdog-warning.png b/misc/watchdog-warning.png Binary files differindex 5d33a512e..d8dced889 100644 --- a/misc/watchdog-warning.png +++ b/misc/watchdog-warning.png |