Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorentTorregrosa committed Jan 21, 2017
2 parents 3743903 + ea0b939 commit 5518508
Show file tree
Hide file tree
Showing 464 changed files with 25,490 additions and 9,903 deletions.
2 changes: 1 addition & 1 deletion www7/includes/bootstrap.inc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* The current system version.
*/
define('VERSION', '7.51');
define('VERSION', '7.53');

/**
* Core API compatibility.
Expand Down
15 changes: 15 additions & 0 deletions www7/includes/database/select.inc
Original file line number Diff line number Diff line change
Expand Up @@ -1231,6 +1231,21 @@ class SelectQuery extends Query implements SelectQueryInterface {

// Modules may alter all queries or only those having a particular tag.
if (isset($this->alterTags)) {
// Many contrib modules assume that query tags used for access-checking
// purposes follow the pattern $entity_type . '_access'. But this is
// not the case for taxonomy terms, since core used to add term_access
// instead of taxonomy_term_access to its queries. Provide backwards
// compatibility by adding both tags here instead of attempting to fix
// all contrib modules in a coordinated effort.
// TODO:
// - Extract this mechanism into a hook as part of a public (non-security)
// issue.
// - Emit E_USER_DEPRECATED if term_access is used.
// https://www.drupal.org/node/2575081
$term_access_tags = array('term_access' => 1, 'taxonomy_term_access' => 1);
if (array_intersect_key($this->alterTags, $term_access_tags)) {
$this->alterTags += $term_access_tags;
}
$hooks = array('query');
foreach ($this->alterTags as $tag => $value) {
$hooks[] = 'query_' . $tag;
Expand Down
12 changes: 10 additions & 2 deletions www7/misc/tabledrag.js
Original file line number Diff line number Diff line change
Expand Up @@ -580,12 +580,20 @@ Drupal.tableDrag.prototype.dropRow = function (event, self) {
* Get the mouse coordinates from the event (allowing for browser differences).
*/
Drupal.tableDrag.prototype.mouseCoords = function (event) {
// Complete support for pointer events was only introduced to jQuery in
// version 1.11.1; between versions 1.7 and 1.11.0 pointer events have the
// clientX and clientY properties undefined. In those cases, the properties
// must be retrieved from the event.originalEvent object instead.
var clientX = event.clientX || event.originalEvent.clientX;
var clientY = event.clientY || event.originalEvent.clientY;

if (event.pageX || event.pageY) {
return { x: event.pageX, y: event.pageY };
}

return {
x: event.clientX + document.body.scrollLeft - document.body.clientLeft,
y: event.clientY + document.body.scrollTop - document.body.clientTop
x: clientX + document.body.scrollLeft - document.body.clientLeft,
y: clientY + document.body.scrollTop - document.body.clientTop
};
};

Expand Down
6 changes: 3 additions & 3 deletions www7/modules/aggregator/aggregator.info
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ files[] = aggregator.test
configure = admin/config/services/aggregator/settings
stylesheets[all][] = aggregator.css

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/aggregator/tests/aggregator_test.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/block/block.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ core = 7.x
files[] = block.test
configure = admin/structure/block

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/block/tests/block_test.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ regions[footer] = Footer
regions[highlighted] = Highlighted
regions[help] = Help

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/blog/blog.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ version = VERSION
core = 7.x
files[] = blog.test

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/book/book.info
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ files[] = book.test
configure = admin/content/book/settings
stylesheets[all][] = book.css

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/color/color.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ version = VERSION
core = 7.x
files[] = color.test

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/comment/comment.info
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ files[] = comment.test
configure = admin/content/comment
stylesheets[all][] = comment.css

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/contact/contact.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ core = 7.x
files[] = contact.test
configure = admin/structure/contact

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/contextual/contextual.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ version = VERSION
core = 7.x
files[] = contextual.test

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/dashboard/dashboard.info
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ files[] = dashboard.test
dependencies[] = block
configure = admin/dashboard/customize

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/dblog/dblog.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ version = VERSION
core = 7.x
files[] = dblog.test

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/field/field.info
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ dependencies[] = field_sql_storage
required = TRUE
stylesheets[all][] = theme/field.css

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ dependencies[] = field
files[] = field_sql_storage.test
required = TRUE

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/field/modules/list/list.info
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ dependencies[] = field
dependencies[] = options
files[] = tests/list.test

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/field/modules/list/tests/list_test.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ package = Testing
version = VERSION
hidden = TRUE

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/field/modules/number/number.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ core = 7.x
dependencies[] = field
files[] = number.test

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/field/modules/options/options.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ core = 7.x
dependencies[] = field
files[] = options.test

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/field/modules/text/text.info
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ dependencies[] = field
files[] = text.test
required = TRUE

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/field/tests/field_test.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ files[] = field_test.entity.inc
version = VERSION
hidden = TRUE

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/field_ui/field_ui.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ core = 7.x
dependencies[] = field
files[] = field_ui.test

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/file/file.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ core = 7.x
dependencies[] = field
files[] = tests/file.test

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/file/tests/file_module_test.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ version = VERSION
core = 7.x
hidden = TRUE

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/filter/filter.info
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ files[] = filter.test
required = TRUE
configure = admin/config/content/formats

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/forum/forum.info
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ files[] = forum.test
configure = admin/structure/forum
stylesheets[all][] = forum.css

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/help/help.info
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ version = VERSION
core = 7.x
files[] = help.test

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

6 changes: 3 additions & 3 deletions www7/modules/image/image.info
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ dependencies[] = file
files[] = image.test
configure = admin/config/media/image-styles

; Information added by Drupal.org packaging script on 2016-10-05
version = "7.51"
; Information added by Drupal.org packaging script on 2016-12-07
version = "7.53"
project = "drupal"
datestamp = "1475694174"
datestamp = "1481152423"

Loading

0 comments on commit 5518508

Please sign in to comment.