Install

Works with Drupal: 7.x

Using Composer to manage Drupal site dependencies

Downloads

Download views-7.x-3.0-rc1.tar.gztar.gz 1.41 MB
MD5: e158db78ae2f8cc615edb910a09384b0
SHA-1: 79f093398744645e769203a6c4604bf4bcb3b3bc
SHA-256: 0da4c90fc1d9a4547ba6ddd78197b99ac0bcbf3cbb679eb23cb465cf59152f02
Download views-7.x-3.0-rc1.zipzip 1.6 MB
MD5: 941111b41371084230bc82374ebcae19
SHA-1: 83c4945d26ca30ed7959119aaf7b8cbac27afade
SHA-256: 748c0641a49d2ae13728bc872422fc0366ae030259031378893427c06038412a

Release notes

This release of Views includes many improvements over beta3. Please note that you must update to the latest release of CTools. Also note that Drupal 7.2 contains a bug that will cause update.php to break your system. Please update to the latest Drupal 7.x-dev before running update.php.

If you got your system broken by update.php a solution is here: http://drupal.org/node/1170312#comment-4547662

Hilites

  • Major improvements to Field API integration. Fields now group properly, use multiple properly, and show up in the list using all entities they are attached to and labels they could have. Note that on some occasions, this may cause really old field API fields to fail to work. You may have to adjust these manually, though incidents of this seem to be few.
  • Rename the "group by" setting to "Aggregation" so as to not confuse it with the "Grouping" setting inside the style (now called format).
  • Argument validation (contextual filter) can now "reverse transform". This is an API thing but could be handy for validators that transform their arguments.
  • Implicit relationships to users, comments and taxonomy have been removed. For Views that were using these implicit relationships, it will attempt to fix your views for you. These fixes are pretty good but you should verify that they are correct. If you are wondering why you no longer have access to "User: Name" when using a node view, it is because you now must add the "Node: Author" relationship. Likewise with taxonomy terms. While this seems more difficult at first glance, in the end it will be much better because it reduces user confusion about where fields are getting their data from.
  • Major improvements to the field HTML element wrapper code.
  • Added ::get_value() method to all fields to make it easier for systems like services that need to access raw field data. It should now be much more consistent.
  • Added representative relationships. These allow relationships that ordinarily would result in multiple rows because they are one-to-many to pick just one item from the relationship (hence 'representative'). Example: a view of users with a representative
    relationship to nodes can show the most recently posted node by each user.
  • Integration with forms is now much better, allowing VBO to ship a whole lot of its code back to Views. See advanced help for API documentation.

Complete log of changes since 7.x-3.0-beta3:

  • #1172714 by mstrelan: Allow to embed another display from the same view
  • Prevent notice when a module is still putting the display in for views_set_page_view().
  • #1191082: Prevent warning when fields are on tables that do not exist.
  • #1168168 follow up: Create view: allow sorted by none
  • #1182808 by tim.plunkett: Add "raw argument" default argument.
  • #1189926 by dereine: Allow string filters exposed required setting to be configurable and default to FALSE
  • #1190510: Something is already using the aliases keyword and it is not an array.
  • #1187728: Relationships on entities not validated before trying to use data from it.
  • #1187878 by manu manu: Don't add format to the query, because it doesn't longer exist
  • #1136746: Bad entry in views.info file
  • #470258 by joachim after more than a year of work: Groupwise representative relationships. Or subquery relationships.
  • #1190420 by joachim: Better ordering on node type filter.
  • #1189624: Bad return causes error in fields.
  • #1189504: Setting page to a negative number causes mysql error.
  • #1186016 by redndahead: Restore js on caching
  • #1181816 by dereine: Remember last value don't work with reset if the filters are defaulted
  • #1140770 by dereine: Display items per page/items to display depending on the current display plugin
  • document override_path on the view object
  • Add a recommendation for query backends to return objects so general entity_row plugins can expect this
  • #1157890 by dereine: Rebuild the rendering of node rows to use comments in node templates directly
  • #1188500: Provide a reverse relationship on term reference fields and a generic entity reverse relationship handler so anyone can use it.
  • #1169092: Required setting was being ignored on some exposed filters.
  • #1179346: Rename "group by setting" to "Aggregation"
  • #1135918: Add aliasing to fields, filters, et al and implement with field api so that content can appear using all of its labels for all of its entities, making it easier to find the content.
  • #1147326 by becw, dereine: Add a way to reverse transforming of argument values back to the original value, so you can use it for the summary. For example you can have now user: uid as argument but still have nice username urls.
  • #1145770 by tim.plunkett, dereine: Provide a helper function for getting raw data
  • by dereine: only show access op on node validator if access in general is checked
  • #1175286 by dereine: Fix a wsod when a display can't get initializedd but display an error message
  • #1175846: Automatic relationship updating code was breaking views that had tables move.
  • #1138884: Exposed filters were not working in previews.
  • by dereine: rename user to author on the comment.uid relations
  • #1187444 by dereine: Make comments an explicit relationship.
  • test basic user integration into views
  • #1187528: Make node author relationship now explicit.
  • reported by swentel: Provide a view::user_pager method similar to other pager functions like get_items_per_page
  • #1188248 by dereine: Add row_index for style_rss
  • #996922 by dereine: Allow to directly access comment.nid, comment.uid without a relationship for filters/arguments/fields
  • by dereine: Remove workaround for wysiwyg text format because the wysiwyg editor isn't displayed anymore in area text
  • #1184648 by neoglez: Add missing var declaration
  • #1187498 by dereine: Allow to override and change the value.
  • #1184576 by dereine: Remove leftover files from .info file
  • #1153370 by dereine: Fix the case when you have commas but words with spaces in views_break_phrase_string
  • #1156822 by merlinofchaos: Distinct multiple relationships in views_many_to_one_helper
  • small comment fix
  • #1153360: Do not print empty class tags in table style if classes are not in use for th, table and td.
  • #1122130: Update UI text slightly to improve understanding of the field and label wrapper.
  • #1180566 by dereine: Display human readable name in the clone form textfield instead of the machine readable name
  • #1182762 by tim.plunkett: Remove periods in sentences on checkbox titles, as they are counter to UX standard.
  • Retain form wrapper IDs so CTools dependencies work better on views exposed forms.
  • #1180560 by dereine: Don't allow to input longer as 32chars machine names on the views clone page
  • #1094712 by dereine: Replace locale_language_list with views version of the function to not rely on the locale module
  • #1182782 by dereine: Use core theme callback for ajax requests
  • #1182800: check plain on multi field separator should be filter xss admin instead.
  • #1078594 by ayalon: Add a general views-label class to field labels
  • Some more doc improvements for returned classes
  • Small doc improvment for views_get_view so ide's show that it is an instance of view
  • #1168168 by dereine: Allow to sort by nothing when create an view via the wizard
  • #1023792 by jcarlson34: Improve description for custom date format
  • #1134074 by dereine: Sanitize the prefix only with xss not check_plain
  • #1138092 by DamienMcKenna: Add a bunch of additional css classes to exposed forms
  • fix an actually invalid code
  • #1176062 by mstrelan: Show argument values instead of placeholders in preview query.
  • #1123300 by rvilar: Allow exposed forms ajax to work with imagebuttons.
  • #1147054: Fix delta "all" with an offset to respect the offset.
  • #1112500 by dereine: Provide a sane default value for the localization plugin
  • #1179198 by dereine: Use human readable name when display a message when a view was saved. Additional don't use the view title for the human readable name of a view
  • #1020540 by das-peter: Add a "Hide Rewriting if field is empty" option
  • #1116062 by dereine: Add visual dependency on "read more" checkbox for "read more text".
  • #1181248 by neoglez: Remove unused variable
  • #1181382 by aspilicious: strict warning due to wrong class name in views_handler_argument_node_uid_revision.inc
  • #1144740 by merlinofchaos, dereine: Cleanup views_plugin_display::option_definition to be sure that pager/access/cache options/exposed_form can be overridden as expected
  • #1167562 by dereine: Fix index for the format key and take sure that there is always an format given to check_markup
  • #769322 by bojanz, follow up: Allow area handlers to be used to display the form buttons.
  • #1181382 by aspilicious: Fix warning
  • #1179708 by chx: Add a view specific dbtng-tag, so people can alter the query per view
  • #1070744 by derhasi, dagmar, bojanz, kdebaas, jamsilver, dereine ...: Fallback to a existant language when render a fieldapi field
  • by dereine: Correct spelling mistake for filter_string::option_definition
  • Add the relationship options to the join object, so advanced join handlers can use it more easy
  • #1178128 by dereine: Don't use the private validation _element_validate_integer_positive but copy the function from field.module.
  • reported by pwolanin: Remove left over debug code
  • add a short comment about the override dropdown
  • Revert "Fix default value for dropdown"
  • Fix default value for dropdown
  • #1131312 by eosrei: Wrong function signature on views_pre_render to the theme.
  • #1139442 by good_man: improve RTL stylesheet.
  • #1165120 by bojanz: Too narrow dependency on parent menu title selection.
  • #1165124: AJAX operations break stack of multiple fields added.
  • #1174224 by klausi: Groupby handler should be exported instead of the field
  • #627378 by mstrelan: views template overrides in module directory
  • #1089694: Fix group by on field api with multiple field values by allowing group by on entity id for these fields.
  • #1175252 by troky: Fix link to comments on page > 0
  • #1175166: Fix notice on update_6011
  • #1160628 by dereine: Call init_query where needed
  • #1118100 by joachim: JOIN extra fails with single values. '
  • #1150652 by dereine: Prefer rearrange to sort, merge rearrange/delete actions.
  • #1109564 by dereine: Fix notice on empty feeds.
  • #769322 by bojanz: Allow views to be rendered as forms.
  • #1170572 by neoglez: Document ->current_display
  • #1171278 by dereine: Allow to alter the links at the top from other modules.
  • #1169292 by Amitaibu: Fix base_path in summary options due to changed argument settings on the new ui
  • #1140770 by dmakalsky: Change wording for count of items on the wizard at the block display
  • #1143866 follow up by bojanz: Don't define trim twice in field::option_definition
  • #806150 by cafuego: Add sql query comments
  • #1165104 by Everett Zufelt, dereine: Make the advanced toggle link accessible via jaws/keyboard.
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • by dereine: don't display the summary asc by count, sumamry desc by count on the termi depth handler
  • #1034532 by damz, dereine: Always export filter formats for text area and exposed input required plugin
  • documented variable seems to break things in the ui
  • Document on the view object
  • #1096650 djebbz, Manual Garcia: Add a drush views list commando
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • #1096650 by dereine: Don't use dt on "command description, arguments, options, examples"
  • #1164594 by Axel Rutz: Views not showing fields revisions.
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • by dereine: Add a tests which checks that the validation don't change the current active display
  • #780768 by aspedia: Don't change the display on validation
  • by dereine: Add a tests which checks that the validation don't change the current active display
  • #780768 by aspedia: Don't change the display on validation
  • #1162558 by swentel: Do not show hidden themes in theme information
  • #1124098 by bojanz: Fix notice for render_fields
  • #1113732 by tim.plunkett: Make links to the possible paths on a view more prominent.
  • #1069256 by joachim: Don't allow to input an empty display title
  • by dereine: Add a test for views_break_phrase
  • #1124098 by dereine: Return rendered fields when first time run style_plugin->render_fields
  • #1156450 by joachim: Improve Comments for views_many_to_one_helper::ensure_my_table
  • Add a test for the different kind of export keys
  • Fix small notices when export a source without a formatter.
  • #1157366 by dereine: use format_key to load the format of area handlers
  • by dereine: Add format as additional parameter for plugin_localization::translate_string/save_string
  • #765364 by dereine: Port at least part of the views.instal file to dbtng
  • #1156198 by dereine: Fix strict error in views_handler_field_comment_username when no stdClass() was created
  • #1156142 by chx: Don't assume in the wizard that an entity has always a base table
  • #1148688 by dereine: Search filter sometimes produced a fatal error
  • by dereine: Provide more helpful argumen texts: which changes per display type
  • #1014082 by brenk28, dereine: Don't call t() for exposed_sorts_label.
  • #1155844 by dereine: Allow search terms to work when it's unexposed.
  • #1025518 by faris: Fix strict warnings for views_plugin_argument_default_taxonomy_tid
  • #1124298 by rob loach: use the right base table to check the access
  • #1024924 follow up by david_rothstein: Don't add contextual links to attachment displays
  • #1056994 by dereine: Anonymous doesn't have name set, so user validation fails
  • by dereine: Fix strict error for views_plugin_argument_validate_node::options_submit
  • #1155668 by dereine: Support Vocabulary Machine Name in Arguments
  • by dereine: Small doc fix in views_handler_argument_vocabulary_vid
  • by dereine: Resync views_object::unpack_options to d6 to make it working like in d6 again
  • by dereine: Fix some inline documentation for the break_phase functions
  • by dereine: Fix some inline documentation for the break_phase functions
  • Issue: #681468 by dereine: Add pluggable display extenders.
  • #1079178 by Manuel Garcia: Improve the help for the views revert drush commando
  • #1152880 by dereine: Fix doclock for use_groupby
  • #1147234 by tim.plunkett: Allow alphanumeric dom id's
  • #679740 by Djebbz: Node Revision: Created Date field label should reflect the fact that it's updated regulary
  • #1149712 by bojanz: Bring additional informations into field formatters: row_id, view, and the field itself
  • #1107672 by dereine: Initialize the query object on export to fix the export
  • #933716 by bojanz: Expose use_operator setting to code by remove old compability code
  • #1024124: add note to style.html wrt naming for templates and special char
  • #1138248 by firebus: adding info for styling groups
  • #1013868: Added basic documentation for semantic views
  • #465982: added some details about row template & unformatted styles
  • #1119056: Fix position issues with the dropdown buttons.
  • #1118650: Adding initial page for drush commands
  • #696538 by dereine: fixing defgroup typos
  • #1132566 by yskel: Updated contextual filters from arguments for d7
  • #1117794 by joachim: adding extra info for join-extra-array
  • #1143866 : Follow up of #1039944 by nevets: Add missing option_definition fro trim_whitespace
  • #1141410 by tim.plunkett: Fixed Drupal.ajax expects element_settings.url.
  • #1140748: Fix a copy mistake from filter_search to argument_search: use 0 for the add_where group
  • #1140256 by dereine: Set the error when the validation fails for display_id's.
  • #1136746 by dereine: Add missing files to the views.info files
  • #1118318 adding more info to field help page. Still could use more tho
  • Forgot to add the ini file to previous commit before it was pushed.
  • #1129636 by dereine: Allow to enable ctools autosubmit on exposed forms and hide the submit button
  • #1121474 by quartsize: updates for include path info
  • #1024924 by david_rothstein: Fix issues caused my a unwanted commit of dereine, provide sane defaults for contextual filters.
  • Remove invalid dependency from description field.
  • Set up schema to let CTools cache default objects.
  • #1125276 by thekevinday: Don't operate on _SESSION if it does not exist
  • #1130760 by neoglez: Don't call get_render_tokens for a row if you don't have the row context, but the style context
  • #1129292 by drunken monkey: Fix summary style initialization, so export isn't broken anymore
  • #1134784 by damz: Set pager_limits for the pager, so themers can do some more advanced stuff, see #514914
  • #1118570 by dereine: Remove extra id for the replacement pattern so global custom field/global math field are shown always
  • #1134902 by dereine: Fix title callback for file_fid argument handler
  • #495658: Added comment about more link for blocks needing a path
  • #495658: cherry pick; page needs a going over for 7.x-3.x
  • #495658: Add example for taxonomy page override with taxonomy_term view
  • #1132672 by ksenzee: Fix tests due to changed display of block titles
  • #1131928 by dereine: Adapt signatures of field::element_type and use correctly
  • Prevent Views from destroying menu items from other export ui things.
  • #1034282 by design_dolphin and esmerel: ex using multiple items as context filters
  • Add values as parameter of pre_render in the documentation
  • If a field api field has only 1 column, or that column is the basic "value", do not show the column name in filter/sort/etc.
  • Improve consistency with the labelling of Field API fields from fields to filter/sort/argument etc.
  • Standardize truncating strings in the UI.
  • Paths should have "/" prefixed so they are more visibly obviously paths.
  • #1129102 by ksenzee:Fix notice when running tests.
  • Convert some javascript into options_submit() code for consistency.
  • Fix throbber on list page.
  • #1128180 by rvilar: Fix typo error in aggregator.views.inc
  • Enable/disable view needs to menu_rebuild
  • Trying to enable a view with cached changes fails because cache enabled state is out of sync with real enabled state.
  • by dereine: Remove all views1 to views2 conversion code. People have to use d6 to do it
  • Use actual human readable permission names.
  • Make the "Details" handle click area smaller to prevent accidentally closing the fieldset so often.
  • Strip tags in permissions in select.
  • Fix the code to hide the contextual filters input textfield after preview got rejiggered
  • Preview losing contextual links after paging.
  • ONE MORE TIME
  • Typo in last commit
  • Fix AJAX paging of previews if site has clean URLs off and/or is not top level.
  • Accidentally enabled all default views.
  • Fix notice with exposed sorts.
  • Fix minor issues with default sort by state in input.
  • upload.module is gone from core, removing outdated support.
  • #1128668: Remove remaining references to node_revisions
  • #1104204 by dereine and merlinofchaos: Separate preview from main UI, remove preview from pre_render so that messages will appear properly.
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • #1113896 by esmerel: add taxonomy info to filter and relationship pages
  • #1073350 by boombatower: Improvements to group by handling.
  • #1127804 by katbailey: Handle raw tokens even if they are not scalar.
  • by dereine: Remove views_ui_reorder_displays_button because the button does not appear in the new ui
  • #1112552 by dereine, bojanz: Allow to use filter_search together with and/or. Additional sync argument_search
  • #1102162 by dereine: Report if a view has the same paths as a path alias
  • #1127414: The changing of the text on the button caused the button to not submit right. Need to change the text back on click.
  • Default label for exposed filter and exposed sort should not include the group, just like fields
  • Remove no longer necessary block descriptions.
  • by dereine: Make analyse a modal window and remove some old code.
  • #1125102: Improve block naming of views.
  • #1127686 by dereine: Allow to use tokens for the arguments again. Additional fix a bunch of tokens for taxonomy/term view
  • by dereine: Fix strict error for views_plugin_argument_validate_taxonomy_term::options_submit
  • #1127410: Breadcrumb for Views admin could be messed up under some circumstances.
  • for field access totally broke fields. Again.
  • #1063418: Refactor how field data gets back into $view->result
  • #1124298: Field handlers should call field_access()
  • #1126756: Base table protection was failing to actually get a full list of base tables possible for a field, causing it to overly aggressively remove fields.
  • #1112400: Re-export all views to ensure latest code.
  • #1108040 by dereine: Fix rare notices with access op argument.
  • Better handling for export-ui updates.
  • #1122420: Automatic correction for Views that have older taxonomy relationships.
  • Fix double tokenization in last commit.
  • #995646: Allow token substitutions in area texts and the title.
  • #937350 by pcambra: adding info for get_total_rows
  • #853176 by EvanDonovan: changing h_f_a to change default exp filter val
  • Set "apply" button text based upon current override state in modal.
  • #1124044 by ksenzee, dereine: Catch expections not only in the preview, but still throw out messanges in the preview
  • #1107482 by dereine: Enable/disable displays with a simple link instead of a checkbox
  • #801868: Tablesort and pager was losing "Remembered" values.
  • #1077632: Prevent node full_mode from being disrupted if a non-page view on the node page.
  • by dereine: Use human readable name for block descriptions instaed of machine readable name
  • #246662: documenting white screens and JSON
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • #1102374 follow up: Use predefined variable and add some documentation
  • Label and wrapper classes were not using right row index.
  • Auto preview got broke when I switched preview to a click event.
  • More improvements to semantic views.
  • Element type could improperly provide empty class if no classes available.
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • Label HTML element None could cause label to disappear.
  • #1118244: Reword "Wrap field in HTML" checkbox to do what it says it does.
  • by dereine: Move comment body field to the right table
  • #1112788 by jbeach, dereine: Replace the override icon with an italic font style
  • #1114772 by drew reece: Remove no longer valid help file for Views Bulk Export.
  • #1102374 by David_Rothstein: Fix changing operator in many_to_one helper.
  • Use label class for admin edit links, so they float right again
  • by dereine: remove views-ajax-link class from spans
  • trigger click even when changing auto preview checkbox
  • by dereine: Trigger preview click event when using exposed form instead of mousedown
  • #1056694 by nicholasThompson: Update comment rss handler to use created field and use field_get_items method
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • Allow fields to return render arrays as well as strings.
  • by dereine: Fix strict notice in views_handler_filter_term_node_tid_depth:operation_options
  • #1112352 by dereine: Update translation field handler to d7 table: node_revision
  • #1110212 by dereine: Validate arguments in hook_menu again
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • #1116346 by dereine: Fix field_markup handler when the format is loaded via the db query
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • Fix update 6014 to not fail if it was run during D6.
  • #1121040 by dereine: Make input required text save again.
  • #1119622 by webflo: add range condition to user autocomplete widget.
  • #1111258 by Pisco, dereine: Fix generating of classes and bring back a special css function for views
  • #1119612 by bojanz: Fix click sort, when the field handler is not safed.
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • fix user autocomplete widget.
  • by dereine: Fix notice for filter_user_name
  • Minor change to list major new features, page needs a complete revamp
  • #1117684: Make the preview button always show.
  • #1114772: Remove bulk export module.
  • #1113624: Allow export to export unsaved changes just like it used to.
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • Restore "real field" which is needed for group by aggregation.
  • #1116358: Update the README.txt
  • #1118344 by dereine: Display the master display, if it's the only display
  • #1117374 by joachim: Add default local task to basic setting task.
  • by dereine: Fix strict warning by removing unneeded detection to 'real field'
  • by dereine: Fix strict error for views_handler_field_group_by_numeric
  • #1113732 by dereine: Provide a link to view a page in the interface
  • by dereine: create a views-dev drush script
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • rename functions
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • by dereine: Remove unused views-ui-edit-tab.tpl.php
  • #336338 by esmerel: adding note on creating displays
  • #943536 by esmerel and sreher: exposed sorts and overriding sorts
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • #490008 by MGParisi and esmerel: how to add a pager to the top of view
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • by dereine: Don't hide the live preview content if you uncheck automatic preview
  • Remove some dead, commented out code that will never be restored.
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • #1080934 by dereine: Provide a default image gallery. Yeah the first view template
  • #1113052: drupal_not_found() creates bad AJAX.
  • Make Taxonomy term: content relationship only show up if there is a term relationship.
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • #1091698 by Qajrat: Convert views_date_sql_field to php 5.2 date handling
  • #1113188: Arguments could abort viewbuild and pager initialization causing more link to fail trying to read an unitialized pager.
  • #1039944 by alex_b and dereine: Add option for trim spaces on field rewrite.
  • #1113052 by dereine: Allow to rearraenge items again, sigh
  • Revert "#1111258 by pisco: Allow to use _ as css class"
  • #415990 by iamjon: adds details to correct problems using imageassist
  • #1111258 by pisco: Allow to use _ as css class
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • #1026436 by duellj: Taxonomy exposed filters not inheriting.
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • #1102374 by dereine: Don't add empty conditions to the query.
  • #1104426 by dereine: Move some more parts into defaulatable options, so they are easier to override
  • Use the term_tid filter handler on field term filters, modified slightly to restrict vocabulary correctly.
  • by dereine: Don't add the real_field by default to groupby on fieldapi fields
  • #1112198 by dereine: Restore the empty Fields bucket reminder
  • follow up: small typo in the title of a taxonomy field
  • Reduce the complexity of taxonomy fields, filters, arguments and relationships.
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • by dereine: Reexport the taxonomy view and remove the views1 feed compability display
  • Remove case sensitivity from item sort.
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • #1025518 by pivica, amitaibu: Fix strict warnings for many_to_one handlers
  • Some filter form improvements
  • Add a message clarifying how Inline may not always work right.
  • drupal clean css identifier followup.
  • #1100052: Really fix the get_value() strict warnings.
  • Fix broken element_classes() missing explode
  • #1106558 by jessebeach: Scoped the .form-actions float right to the view edit form.
  • #1110988 by fubhy, hydra: Move files.uid to file_managed.ui
  • Remove old views2.doxy file. There is already a views3.doxy in it
  • #1111214 by fubhy, dereine: Rename all instances of files to file_managed
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • #1102974: Change default value of use more always, and invert the checkbox in the UI.
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • #1032380 by Jerome F: Allow various class identifiers to handle spaces properly so there can be multiple classes.
  • by dereine: Enable shouldn't be a defaulatable value.
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • by dereine: Make clone/delete/undelete display text easier to translate
  • #1109998 by dereine and me: Restore "reorder displays" as a command. Add ability to update list of tabs so that renames and reorders of displays will update.
  • #1110982 by amateescu: Fix spelling mistake in settings form for preview setting
  • Merge branch '7.x-3.x' of git.drupal.org:project/views into 7.x-3.x
  • rename comments to comment in a comment ;)
  • #1110144 by jessebeach: Small updates to the spacing of links and inputs inside of ctools-button in response to #1102980
  • Add count distinct as an aggregation type.
  • Fix group by handler values not saving properly.
  • #1029732: An attempt at getting group by support working for fields.
  • When optional was changed to required, a test was not inverted properly.
  • Comment: Updated date had wrong label.
  • Filters were not picking up correct groups like fields and others.
  • #1099418: Long display names could be problematic. Also prevent the master display from having its title edited.
  • #1101150: Exposed forms in blocks too aggressive about showing up.
  • Remove dsm
  • array_map tokens to floats in math expression to prevent errors when using non-numeric
  • #1051428: Add theme callback to ajax menu items to prevent theme switching across ajax requests.
  • Better handling of math expression
  • Restore text letting users know they can use substitutions in classes.
  • #1109510: Class token replacement using only last row, not correct row.
  • #1032246: Replace bad debug code triggered on some contrib query plugins.
  • #1090270 by ygerasimov: URI decode on query variables to ensure query variables with non-standard characters work.
  • #1109532 by BTMash: Correct scalar testing of additional field api tokens.
  • #1107386 followup by fubhy: Move action links by 2px.
  • #1103004 by dereine: Fix wildcard handling in exposed filter paths.
  • by fubhy: Display the display id correctly for more than 10 displays of the same type.
  • The dropbutton must be position absolutely so that it doesn't expand its container when it's options are revealed.
  • #1108214 by dereine: Move fieldapi_classes checkbox into the style_settings fieldset
  • #1108064 by thekevinday: Problem with case insentive naming of the SearchQuery Class
  • by dereine: Fix typo in comment
  • by dereine: Fix base table and load it like before in field_field.inc
  • by dereine: Remove unneeded entity_info from field.views.inc. This fixes the notices only, the field's are already loaded since the previous commit.
Created by: merlinofchaos
Created on: 17 Jun 2011 at 20:04 UTC
Last updated: 2 Aug 2018 at 04:56 UTC
New features
Bug fixes
Insecure

Other releases