update to 7.21
Signed-off-by: bachy <git@g-u-i.net>
This commit is contained in:
parent
49fb38b169
commit
8763bf01dd
@ -1,4 +1,9 @@
|
|||||||
|
|
||||||
|
Drupal 7.21, 2013-03-06
|
||||||
|
-----------------------
|
||||||
|
- Allowed sites using the 'image_allow_insecure_derivatives' variable to still
|
||||||
|
have partial protection from the security issues fixed in Drupal 7.20.
|
||||||
|
|
||||||
Drupal 7.20, 2013-02-20
|
Drupal 7.20, 2013-02-20
|
||||||
-----------------------
|
-----------------------
|
||||||
- Fixed security issues (denial of service). See SA-CORE-2013-002.
|
- Fixed security issues (denial of service). See SA-CORE-2013-002.
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
/**
|
/**
|
||||||
* The current system version.
|
* The current system version.
|
||||||
*/
|
*/
|
||||||
define('VERSION', '7.20');
|
define('VERSION', '7.21');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Core API compatibility.
|
* Core API compatibility.
|
||||||
|
@ -159,19 +159,7 @@ class DrupalDefaultEntityController implements DrupalEntityControllerInterface {
|
|||||||
*/
|
*/
|
||||||
public function load($ids = array(), $conditions = array()) {
|
public function load($ids = array(), $conditions = array()) {
|
||||||
$entities = array();
|
$entities = array();
|
||||||
|
|
||||||
# PATCH http://drupal.org/node/1003788#comment-5195682
|
|
||||||
// Clean the $ids array to remove non-integer values that can be passed
|
|
||||||
// in from various sources, including menu callbacks.
|
|
||||||
if (is_array($ids)) {
|
|
||||||
foreach ($ids as $key => $id) {
|
|
||||||
if (empty($id) || ((string) $id !== (string) (int) $id)) {
|
|
||||||
unset($ids[$key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
# endpatch
|
|
||||||
|
|
||||||
// Revisions are not statically cached, and require a different query to
|
// Revisions are not statically cached, and require a different query to
|
||||||
// other conditions, so separate the revision id into its own variable.
|
// other conditions, so separate the revision id into its own variable.
|
||||||
if ($this->revisionKey && isset($conditions[$this->revisionKey])) {
|
if ($this->revisionKey && isset($conditions[$this->revisionKey])) {
|
||||||
|
@ -114,7 +114,6 @@ Drupal.jsAC.prototype.onkeyup = function (input, e) {
|
|||||||
*/
|
*/
|
||||||
Drupal.jsAC.prototype.select = function (node) {
|
Drupal.jsAC.prototype.select = function (node) {
|
||||||
this.input.value = $(node).data('autocompleteValue');
|
this.input.value = $(node).data('autocompleteValue');
|
||||||
$(this.input).trigger('autocompleteSelect', [node]);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -168,7 +167,7 @@ Drupal.jsAC.prototype.unhighlight = function (node) {
|
|||||||
Drupal.jsAC.prototype.hidePopup = function (keycode) {
|
Drupal.jsAC.prototype.hidePopup = function (keycode) {
|
||||||
// Select item if the right key or mousebutton was pressed.
|
// Select item if the right key or mousebutton was pressed.
|
||||||
if (this.selected && ((keycode && keycode != 46 && keycode != 8 && keycode != 27) || !keycode)) {
|
if (this.selected && ((keycode && keycode != 46 && keycode != 8 && keycode != 27) || !keycode)) {
|
||||||
this.select(this.selected);
|
this.input.value = $(this.selected).data('autocompleteValue');
|
||||||
}
|
}
|
||||||
// Hide popup.
|
// Hide popup.
|
||||||
var popup = this.popup;
|
var popup = this.popup;
|
||||||
@ -221,7 +220,7 @@ Drupal.jsAC.prototype.found = function (matches) {
|
|||||||
for (key in matches) {
|
for (key in matches) {
|
||||||
$('<li></li>')
|
$('<li></li>')
|
||||||
.html($('<div></div>').html(matches[key]))
|
.html($('<div></div>').html(matches[key]))
|
||||||
.mousedown(function () { ac.hidePopup(this); })
|
.mousedown(function () { ac.select(this); })
|
||||||
.mouseover(function () { ac.highlight(this); })
|
.mouseover(function () { ac.highlight(this); })
|
||||||
.mouseout(function () { ac.unhighlight(this); })
|
.mouseout(function () { ac.unhighlight(this); })
|
||||||
.data('autocompleteValue', key)
|
.data('autocompleteValue', key)
|
||||||
|
@ -7,8 +7,8 @@ files[] = aggregator.test
|
|||||||
configure = admin/config/services/aggregator/settings
|
configure = admin/config/services/aggregator/settings
|
||||||
stylesheets[all][] = aggregator.css
|
stylesheets[all][] = aggregator.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = block.test
|
files[] = block.test
|
||||||
configure = admin/structure/block
|
configure = admin/structure/block
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -13,8 +13,8 @@ regions[footer] = Footer
|
|||||||
regions[highlighted] = Highlighted
|
regions[highlighted] = Highlighted
|
||||||
regions[help] = Help
|
regions[help] = Help
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = blog.test
|
files[] = blog.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ files[] = book.test
|
|||||||
configure = admin/content/book/settings
|
configure = admin/content/book/settings
|
||||||
stylesheets[all][] = book.css
|
stylesheets[all][] = book.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = color.test
|
files[] = color.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -9,8 +9,8 @@ files[] = comment.test
|
|||||||
configure = admin/content/comment
|
configure = admin/content/comment
|
||||||
stylesheets[all][] = comment.css
|
stylesheets[all][] = comment.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = contact.test
|
files[] = contact.test
|
||||||
configure = admin/structure/contact
|
configure = admin/structure/contact
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = contextual.test
|
files[] = contextual.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ files[] = dashboard.test
|
|||||||
dependencies[] = block
|
dependencies[] = block
|
||||||
configure = admin/dashboard/customize
|
configure = admin/dashboard/customize
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = dblog.test
|
files[] = dblog.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -10,8 +10,8 @@ dependencies[] = field_sql_storage
|
|||||||
required = TRUE
|
required = TRUE
|
||||||
stylesheets[all][] = theme/field.css
|
stylesheets[all][] = theme/field.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ dependencies[] = field
|
|||||||
files[] = field_sql_storage.test
|
files[] = field_sql_storage.test
|
||||||
required = TRUE
|
required = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ dependencies[] = field
|
|||||||
dependencies[] = options
|
dependencies[] = options
|
||||||
files[] = tests/list.test
|
files[] = tests/list.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
dependencies[] = field
|
dependencies[] = field
|
||||||
files[] = number.test
|
files[] = number.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
dependencies[] = field
|
dependencies[] = field
|
||||||
files[] = options.test
|
files[] = options.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ dependencies[] = field
|
|||||||
files[] = text.test
|
files[] = text.test
|
||||||
required = TRUE
|
required = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ files[] = field_test.entity.inc
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
dependencies[] = field
|
dependencies[] = field
|
||||||
files[] = field_ui.test
|
files[] = field_ui.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
dependencies[] = field
|
dependencies[] = field
|
||||||
files[] = tests/file.test
|
files[] = tests/file.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ files[] = filter.test
|
|||||||
required = TRUE
|
required = TRUE
|
||||||
configure = admin/config/content/formats
|
configure = admin/config/content/formats
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -9,8 +9,8 @@ files[] = forum.test
|
|||||||
configure = admin/structure/forum
|
configure = admin/structure/forum
|
||||||
stylesheets[all][] = forum.css
|
stylesheets[all][] = forum.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = help.test
|
files[] = help.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ dependencies[] = file
|
|||||||
files[] = image.test
|
files[] = image.test
|
||||||
configure = admin/config/media/image-styles
|
configure = admin/config/media/image-styles
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -780,9 +780,11 @@ function image_style_deliver($style, $scheme) {
|
|||||||
// derivative token is valid. (Sites which require image derivatives to be
|
// derivative token is valid. (Sites which require image derivatives to be
|
||||||
// generated without a token can set the 'image_allow_insecure_derivatives'
|
// generated without a token can set the 'image_allow_insecure_derivatives'
|
||||||
// variable to TRUE to bypass the latter check, but this will increase the
|
// variable to TRUE to bypass the latter check, but this will increase the
|
||||||
// site's vulnerability to denial-of-service attacks.)
|
// site's vulnerability to denial-of-service attacks. To prevent this
|
||||||
|
// variable from leaving the site vulnerable to the most serious attacks, a
|
||||||
|
// token is always required when a derivative of a derivative is requested.)
|
||||||
$valid = !empty($style) && file_stream_wrapper_valid_scheme($scheme);
|
$valid = !empty($style) && file_stream_wrapper_valid_scheme($scheme);
|
||||||
if (!variable_get('image_allow_insecure_derivatives', FALSE)) {
|
if (!variable_get('image_allow_insecure_derivatives', FALSE) || strpos(ltrim($target, '\/'), 'styles/') === 0) {
|
||||||
$valid = $valid && isset($_GET[IMAGE_DERIVATIVE_TOKEN]) && $_GET[IMAGE_DERIVATIVE_TOKEN] === image_style_path_token($style['name'], $scheme . '://' . $target);
|
$valid = $valid && isset($_GET[IMAGE_DERIVATIVE_TOKEN]) && $_GET[IMAGE_DERIVATIVE_TOKEN] === image_style_path_token($style['name'], $scheme . '://' . $target);
|
||||||
}
|
}
|
||||||
if (!$valid) {
|
if (!$valid) {
|
||||||
@ -867,6 +869,11 @@ function image_style_deliver($style, $scheme) {
|
|||||||
* @see image_style_load()
|
* @see image_style_load()
|
||||||
*/
|
*/
|
||||||
function image_style_create_derivative($style, $source, $destination) {
|
function image_style_create_derivative($style, $source, $destination) {
|
||||||
|
// If the source file doesn't exist, return FALSE without creating folders.
|
||||||
|
if (!$image = image_load($source)) {
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
// Get the folder for the final location of this style.
|
// Get the folder for the final location of this style.
|
||||||
$directory = drupal_dirname($destination);
|
$directory = drupal_dirname($destination);
|
||||||
|
|
||||||
@ -876,10 +883,6 @@ function image_style_create_derivative($style, $source, $destination) {
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$image = image_load($source)) {
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ($style['effects'] as $effect) {
|
foreach ($style['effects'] as $effect) {
|
||||||
image_effect_apply($image, $effect);
|
image_effect_apply($image, $effect);
|
||||||
}
|
}
|
||||||
|
@ -249,6 +249,51 @@ class ImageStylesPathAndUrlTestCase extends DrupalWebTestCase {
|
|||||||
$this->drupalGet(str_replace(IMAGE_DERIVATIVE_TOKEN . '=', IMAGE_DERIVATIVE_TOKEN . '=Zo', $generate_url));
|
$this->drupalGet(str_replace(IMAGE_DERIVATIVE_TOKEN . '=', IMAGE_DERIVATIVE_TOKEN . '=Zo', $generate_url));
|
||||||
$this->assertResponse(200, 'Existing image was accessible at the URL wih an invalid token.');
|
$this->assertResponse(200, 'Existing image was accessible at the URL wih an invalid token.');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Allow insecure image derivatives to be created for the remainder of this
|
||||||
|
// test.
|
||||||
|
variable_set('image_allow_insecure_derivatives', TRUE);
|
||||||
|
|
||||||
|
// Create another working copy of the file.
|
||||||
|
$files = $this->drupalGetTestFiles('image');
|
||||||
|
$file = array_shift($files);
|
||||||
|
$image_info = image_get_info($file->uri);
|
||||||
|
$original_uri = file_unmanaged_copy($file->uri, $scheme . '://', FILE_EXISTS_RENAME);
|
||||||
|
// Let the image_module_test module know about this file, so it can claim
|
||||||
|
// ownership in hook_file_download().
|
||||||
|
variable_set('image_module_test_file_download', $original_uri);
|
||||||
|
|
||||||
|
// Get the URL of a file that has not been generated and try to create it.
|
||||||
|
$generated_uri = image_style_path($this->style_name, $original_uri);
|
||||||
|
$this->assertFalse(file_exists($generated_uri), 'Generated file does not exist.');
|
||||||
|
$generate_url = image_style_url($this->style_name, $original_uri);
|
||||||
|
|
||||||
|
// Check that the image is accessible even without the security token.
|
||||||
|
$this->drupalGet(str_replace(IMAGE_DERIVATIVE_TOKEN . '=', 'wrongparam=', $generate_url));
|
||||||
|
$this->assertResponse(200, 'Image was accessible at the URL with a missing token.');
|
||||||
|
|
||||||
|
// Check that a security token is still required when generating a second
|
||||||
|
// image derivative using the first one as a source.
|
||||||
|
$nested_uri = image_style_path($this->style_name, $generated_uri);
|
||||||
|
$nested_url = image_style_url($this->style_name, $generated_uri);
|
||||||
|
$nested_url_with_wrong_token = str_replace(IMAGE_DERIVATIVE_TOKEN . '=', 'wrongparam=', $nested_url);
|
||||||
|
$this->drupalGet($nested_url_with_wrong_token);
|
||||||
|
$this->assertResponse(403, 'Image generated from an earlier derivative was inaccessible at the URL with a missing token.');
|
||||||
|
// Check that this restriction cannot be bypassed by adding extra slashes
|
||||||
|
// to the URL.
|
||||||
|
$this->drupalGet(substr_replace($nested_url_with_wrong_token, '//styles/', strrpos($nested_url_with_wrong_token, '/styles/'), strlen('/styles/')));
|
||||||
|
$this->assertResponse(403, 'Image generated from an earlier derivative was inaccessible at the URL with a missing token, even with an extra forward slash in the URL.');
|
||||||
|
$this->drupalGet(substr_replace($nested_url_with_wrong_token, '/\styles/', strrpos($nested_url_with_wrong_token, '/styles/'), strlen('/styles/')));
|
||||||
|
$this->assertResponse(403, 'Image generated from an earlier derivative was inaccessible at the URL with a missing token, even with an extra backslash in the URL.');
|
||||||
|
// Make sure the image can still be generated if a correct token is used.
|
||||||
|
$this->drupalGet($nested_url);
|
||||||
|
$this->assertResponse(200, 'Image was accessible when a correct token was provided in the URL.');
|
||||||
|
|
||||||
|
// Check that requesting a nonexistent image does not create any new
|
||||||
|
// directories in the file system.
|
||||||
|
$directory = $scheme . '://styles/' . $this->style_name . '/' . $scheme . '/' . $this->randomName();
|
||||||
|
$this->drupalGet(file_create_url($directory . '/' . $this->randomName()));
|
||||||
|
$this->assertFalse(file_exists($directory), 'New directory was not created in the filesystem when requesting an unauthorized image.');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = image_module_test.module
|
files[] = image_module_test.module
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = locale.test
|
files[] = locale.test
|
||||||
configure = admin/config/regional/language
|
configure = admin/config/regional/language
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = menu.test
|
files[] = menu.test
|
||||||
configure = admin/structure/menu
|
configure = admin/structure/menu
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -9,8 +9,8 @@ required = TRUE
|
|||||||
configure = admin/structure/types
|
configure = admin/structure/types
|
||||||
stylesheets[all][] = node.css
|
stylesheets[all][] = node.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ package = Core
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = openid.test
|
files[] = openid.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
dependencies[] = openid
|
dependencies[] = openid
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -4,8 +4,8 @@ package = Core
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
core = 7.x
|
core = 7.x
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = path.test
|
files[] = path.test
|
||||||
configure = admin/config/search/path
|
configure = admin/config/search/path
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = php.test
|
files[] = php.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = poll.test
|
files[] = poll.test
|
||||||
stylesheets[all][] = poll.css
|
stylesheets[all][] = poll.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -11,8 +11,8 @@ configure = admin/config/people/profile
|
|||||||
; See user_system_info_alter().
|
; See user_system_info_alter().
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = rdf.test
|
files[] = rdf.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -8,8 +8,8 @@ files[] = search.test
|
|||||||
configure = admin/config/search/settings
|
configure = admin/config/search/settings
|
||||||
stylesheets[all][] = search.css
|
stylesheets[all][] = search.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = shortcut.test
|
files[] = shortcut.test
|
||||||
configure = admin/config/user-interface/shortcut
|
configure = admin/config/user-interface/shortcut
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -55,8 +55,8 @@ files[] = tests/upgrade/update.trigger.test
|
|||||||
files[] = tests/upgrade/update.field.test
|
files[] = tests/upgrade/update.field.test
|
||||||
files[] = tests/upgrade/update.user.test
|
files[] = tests/upgrade/update.user.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ stylesheets[all][] = common_test.css
|
|||||||
stylesheets[print][] = common_test.print.css
|
stylesheets[print][] = common_test.print.css
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
dependencies[] = entity_cache_test_dependency
|
dependencies[] = entity_cache_test_dependency
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = file_test.module
|
files[] = file_test.module
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
dependencies[] = _missing_dependency
|
dependencies[] = _missing_dependency
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
dependencies[] = system_incompatible_core_version_test
|
dependencies[] = system_incompatible_core_version_test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 5.x
|
core = 5.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ hidden = TRUE
|
|||||||
; system_incompatible_module_version_test declares version 1.0
|
; system_incompatible_module_version_test declares version 1.0
|
||||||
dependencies[] = system_incompatible_module_version_test (>2.0)
|
dependencies[] = system_incompatible_module_version_test (>2.0)
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = 1.0
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = system_test.module
|
files[] = system_test.module
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
dependencies[] = taxonomy
|
dependencies[] = taxonomy
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ hidden = TRUE
|
|||||||
settings[basetheme_only] = base theme value
|
settings[basetheme_only] = base theme value
|
||||||
settings[subtheme_override] = base theme value
|
settings[subtheme_override] = base theme value
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ hidden = TRUE
|
|||||||
|
|
||||||
settings[subtheme_override] = subtheme value
|
settings[subtheme_override] = subtheme value
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -17,8 +17,8 @@ stylesheets[all][] = system.base.css
|
|||||||
|
|
||||||
settings[theme_test_setting] = default value
|
settings[theme_test_setting] = default value
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = statistics.test
|
files[] = statistics.test
|
||||||
configure = admin/config/system/statistics
|
configure = admin/config/system/statistics
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = syslog.test
|
files[] = syslog.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
@ -12,8 +12,8 @@ files[] = system.test
|
|||||||
required = TRUE
|
required = TRUE
|
||||||
configure = admin/config/system
|
configure = admin/config/system
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2013-02-20
|
; Information added by drupal.org packaging script on 2013-03-07
|
||||||
version = "7.20"
|
version = "7.21"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1361393684"
|
datestamp = "1362616996"
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user