? 0001-Fixed-description-value-of-access-and-cache.patch
? 0001-no-style-settings-for-unformatted.patch
? 330956-fix-theme-information
? 370651-mod-security-hates-me.patch
? 411566-taxonomy-menu-weirdness.patch
? 450346-exposed-filters-sometimes-hide.patch
? 452384-fix-php-5.3.patch
? 494490-user-picture-block-element.patch
? 511908-19.views_exposed_filter_double_escape.patch
? 515564-increase-field-delta.patch
? 535206-attachments-repeat-exposed-filters.patch
? 539498-comment-link-in-wrong-place.patch
? 550560-views-help-ini.patch
? 581616-views-admin-css-colors.patch
? 592476-redundant-css.patch
? 593910-off-by-one.patch
? 607952-check-plain-queries.patch
? 619884-grouping-incorrectly.patch
? 620046-date-validate-fallback.patch
? 622602-fix-missing-order-by.patch
? 622608-attachment-inherit-pager.patch
? 622608-attachment-inherit-pager_0_0.patch
? TODO.txt
? Views 3 TODO.txt
? ajax_pager_settings.patch
? alternatively-just-fix-the-help-text.patch
? api.txt
? book.txt
? clean-views-1-tables.patch
? contact-form.patch
? contact_link_access_2.patch
? doc
? fix-grouping-index-bug.patch
? grid-fix_3.patch
? jump-menu-styles.patch
? move-renders.patch
? netbeans
? node_language_handler.patch
? notice-fix.patch
? options[id]
? redundant-css.patch
? reorder-displays_5.patch
? sdboyer-relationship.patch
? test.php
? token
? views-363516-unique-identifiers.patch
? views-376284.patch
? views-408894.patch
? views-420850.patch
? views-535424.patch
? views-561892.patch
? views-580320.patch
? views-620046-1.patch
? views-638916.patch
? views-HEAD-table_preprocess_row_store.patch
? views-HEAD-table_preprocess_row_store.patch.1
? views-admin.css_.patch
? views-any.patch
? views-counter_row_index.patch
? views-field-markup.patch
? views-get-total-rows.patch
? views-get-view-result.patch
? views-hidden-options_0.patch
? views-labels-for.patch
? views-language.patch
? views-remove_user_search.patch
? views-trim-fix.patch
? views-typofix.patch
? views-user-picture-sort.patch
? views-validate-term-cache.patch
? views-views-embed-view-access-554016-2.patch
? views.help_.ini_.patch
? views2-bug-623580.patch
? views2-export-should-be-ltr.patch
? views_494490_6.patch
? views_HEAD_defaulted_handler_validation.patch
? views_arg_taxo_depth.patch
? views_argument_empty_text_attachment.patch
? views_base_field.patch
? views_feed_preview.patch
? views_handler_filter_in_operator-fix.patch
? views_handler_filter_node_access.patch
? views_help_topic-589484-2.patch
? views_table_first_last_classes_0.patch
? views_tabledrag-366250-22.patch
? handlers/views-489888.patch
? modules/search/views-view-row-search.tpl.php
? modules/user/views_handler_field_is_online.inc
Index: js/ajax.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/js/ajax.js,v
retrieving revision 1.26.2.1
diff -u -p -r1.26.2.1 ajax.js
--- js/ajax.js	18 Nov 2009 20:17:12 -0000	1.26.2.1
+++ js/ajax.js	30 Nov 2009 22:37:31 -0000
@@ -25,7 +25,7 @@ Drupal.Views.Ajax.setForm = function(tit
  *   the id to append via $(key).append(value)
  * - 'replace': This is a keyed array of HTML output to add via replace. The key is
  *   the id to append via $(key).html(value)
- * 
+ *
  */
 Drupal.Views.Ajax.ajaxResponse = function(data) {
   $('a.views-throbbing').removeClass('views-throbbing');
@@ -53,11 +53,11 @@ Drupal.Views.Ajax.ajaxResponse = functio
     if (data.url) {
       var ajax_area = Drupal.settings.views.ajax.id;
       var ajax_title = Drupal.settings.views.ajax.title;
-    
+
       // Bind a click to the button to set the value for the button.
       $('input[type=submit], button', ajax_area).unbind('click');
       $('input[type=submit], button', ajax_area).click(function() {
-        $('form', ajax_area).append('<input type="hidden" name="' 
+        $('form', ajax_area).append('<input type="hidden" name="'
           + $(this).attr('name') + '" value="' + $(this).val() + '">');
         $(this).after('<span class="views-throbbing">&nbsp</span>');
       });
@@ -67,7 +67,7 @@ Drupal.Views.Ajax.ajaxResponse = functio
       $('form', ajax_area).submit(function(arg) {
         $(this).ajaxSubmit({
           url: data.url,
-          data: '',
+          data: { 'js': 1 },
           type: 'POST',
           success: Drupal.Views.Ajax.ajaxResponse,
           error: function() { $('span.views-throbbing').remove(); alert(Drupal.t("An error occurred at @path.", {'@path': data.url})); },
@@ -86,7 +86,7 @@ Drupal.Views.Ajax.ajaxResponse = functio
     $('#edit-save').removeAttr('disabled');
     // Trigger an update for the live preview when we reach this state:
     $('#views-ui-preview-form').trigger('submit');
-  } 
+  }
 
   // Go through the 'add' array and add any new content we're instructed to add.
   if (data.add) {
@@ -118,7 +118,7 @@ Drupal.Views.Ajax.ajaxResponse = functio
       $('#views-tabset').clickTab(instance.$tabs.length);
     }
   }
-  
+
   if (data.hilite) {
     $('.hilited').removeClass('hilited');
     $(data.hilite).addClass('hilited');
@@ -161,11 +161,11 @@ Drupal.Views.Ajax.previewResponse = func
     var url = $(ajax_area, 'form').attr('action');
 
     // if a URL was supplied, bind the form to it.
-    if (url) {   
+    if (url) {
       // Bind a click to the button to set the value for the button.
       $('input[type=submit], button', ajax_area).unbind('click');
       $('input[type=submit], button', ajax_area).click(function() {
-        $('form', ajax_area).append('<input type="hidden" name="' 
+        $('form', ajax_area).append('<input type="hidden" name="'
           + $(this).attr('name') + '" value="' + $(this).val() + '">');
         $(this).after('<span class="views-throbbing">&nbsp</span>');
       });
@@ -175,7 +175,7 @@ Drupal.Views.Ajax.previewResponse = func
       $('form', ajax_area).submit(function() {
         $(this).ajaxSubmit({
           url: url,
-          data: '',
+          data: { 'js': 1 },
           type: 'POST',
           success: Drupal.Views.Ajax.previewResponse,
           error: function() { $('span.views-throbbing').remove(); alert(Drupal.t("An error occurred at @path.", {'@path': url})); },
@@ -196,7 +196,7 @@ Drupal.Views.updatePreviewForm = functio
   $('input[type=submit], button', this).after('<span class="views-throbbing">&nbsp</span>');
   $(this).ajaxSubmit({
     url: url,
-    data: '',
+    data: { 'js': 1 },
     type: 'POST',
     success: Drupal.Views.Ajax.previewResponse,
     error: function() { $('span.views-throbbing').remove(); alert(Drupal.t("An error occurred at @path.", {'@path': url})); },
@@ -214,7 +214,7 @@ Drupal.Views.updatePreviewFilterForm = f
   $('input[name=q]', this).remove(); // remove 'q' for live preview.
   $(this).ajaxSubmit({
     url: url,
-    data: '',
+    data: { 'js': 1 },
     type: 'GET',
     success: Drupal.Views.Ajax.previewResponse,
     error: function() { $('span.views-throbbing').remove(); alert(Drupal.t("An error occurred at @path.", {'@path': url})); },
@@ -234,14 +234,14 @@ Drupal.Views.updatePreviewLink = functio
   $(this).addClass('views-throbbing');
   $.ajax({
     url: url,
-    data: '',
+    data: 'js=1',
     type: 'POST',
     success: Drupal.Views.Ajax.previewResponse,
     error: function() { $(this).removeClass('views-throbbing'); alert(Drupal.t("An error occurred at @path.", {'@path': url})); },
     dataType: 'json'
   });
 
-  return false;   
+  return false;
 }
 
 Drupal.behaviors.ViewsAjaxLinks = function() {
@@ -257,19 +257,19 @@ Drupal.behaviors.ViewsAjaxLinks = functi
 
     // Disable the save button.
     $('#edit-save').attr('disabled', 'true');
-    
+
     $(this).addClass('views-throbbing');
     $.ajax({
       type: "POST",
       url: url,
-      data: '',
+      data: 'js=1',
       success: Drupal.Views.Ajax.ajaxResponse,
       error: function() { $(this).removeClass('views-throbbing'); alert(Drupal.t("An error occurred at @path.", {'@path': url})); },
       dataType: 'json'
     });
-    
+
     return false;
-  });  
+  });
 
   $('form.views-ajax-form:not(.views-processed)').addClass('views-processed').submit(function(arg) {
     // Translate the href on the link to the ajax href. That way this degrades
@@ -280,14 +280,14 @@ Drupal.behaviors.ViewsAjaxLinks = functi
 //    $('input[@type=submit]', this).after('<span class="views-throbbing">&nbsp</span>');
     $(this).ajaxSubmit({
       url: url,
-      data: '',
+      data: { 'js': 1 },
       type: 'POST',
       success: Drupal.Views.Ajax.ajaxResponse,
       error: function() { $('span.views-throbbing').remove(); alert(Drupal.t("An error occurred at @path.", {'@path': url})); },
       dataType: 'json'
     });
 
-    return false;   
+    return false;
   });
 
   // Bind the live preview to where it's supposed to go.
@@ -308,6 +308,6 @@ Drupal.behaviors.ViewsAjaxLinks = functi
 /**
  * Get rid of irritating tabledrag messages
  */
-Drupal.theme.tableDragChangedWarning = function () { 
+Drupal.theme.tableDragChangedWarning = function () {
   return '<div></div>';
 }
Index: js/ajax_view.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/js/ajax_view.js,v
retrieving revision 1.19.2.1
diff -u -p -r1.19.2.1 ajax_view.js
--- js/ajax_view.js	30 Nov 2009 19:38:58 -0000	1.19.2.1
+++ js/ajax_view.js	30 Nov 2009 22:37:31 -0000
@@ -29,7 +29,7 @@ Drupal.Views.Ajax.ajaxViewResponse = fun
     $view = $newView;
     Drupal.attachBehaviors($view.parent());
   }
- 
+
   if (response.messages) {
     // Show any messages (but first remove old ones, if there are any).
     $view.find('.views-messages').remove().end().prepend(response.messages);
@@ -37,7 +37,7 @@ Drupal.Views.Ajax.ajaxViewResponse = fun
 };
 
 /**
- * Ajax behavior for views. 
+ * Ajax behavior for views.
  */
 Drupal.behaviors.ViewsAjaxView = function() {
   if (Drupal.settings && Drupal.settings.views && Drupal.settings.views.ajaxViews) {
@@ -110,7 +110,7 @@ Drupal.behaviors.ViewsAjaxView = functio
             // Process pager, tablesort, and attachment summary links.
             .find('ul.pager > li > a, th.views-field a, .attachment .views-summary a')
             .each(function () {
-              var viewData = {};
+              var viewData = { 'js': 1 };
               // Construct an object using the settings defaults and then overriding
               // with data specific to the link.
               $.extend(
